 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
    }

    body {
      background: #fff;
      color: #111;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

   /* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Topbar */
.topbar {
  background-color: #f5f5f5;
  font-size: 13px;
  color: #444;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar-links a {
  margin-left: 20px;
  color: #333;
  text-decoration: none;
}

.topbar-links a:hover {
  text-decoration: underline;
}

/* Navbar */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  flex-wrap: wrap;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #111;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #c2172e;
}

/* Mobile toggle button */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #111;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-top: 10px;
  }

  .nav-menu a {
    padding: 10px 0;
    border-top: 1px solid #eee;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu.active {
    display: flex;
  }
}

    .banner {
      background: linear-gradient(to right, #ffffff, #f8f8f8);
      padding: 60px 0;
    }

    .banner .container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }

    .banner-text {
      flex: 1 1 500px;
      max-width: 600px;
    }

    .banner-text h1 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .banner-text h1 span {
      color: #c2172e;
    }

    .banner-text p {
      font-size: 17px;
      margin-bottom: 30px;
      color: #555;
    }

    .banner-text .cta {
      background-color: #c2172e;
      color: white;
      padding: 12px 24px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
    }

    .banner-text .cta:hover {
      background-color: #a10e1d;
    }

    .banner-image {
      flex: 1 1 400px;
      text-align: center;
    }

    .banner-image img {
      max-width: 70%;
      height: auto;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .topbar .container,
      .nav-container,
      .banner .container {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 15px;
      }

      .banner-text h1 {
        font-size: 28px;
      }
    }

    .trusted-section {
  background-color: #2b2b2b;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.trusted-section .container {
  max-width: 1100px;
  margin: auto;
}

.trusted-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.trusted-section p {
  font-size: 18px;
  margin-bottom: 40px;
}

.trust-icons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-item {
  flex: 1 1 250px;
  max-width: 300px;
  margin: auto;
}

.trust-item i {
  font-size: 40px;
  color: #00ffc3;
  margin-bottom: 15px;
}

.trust-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.trust-item p {
  font-size: 15px;
  color: #ccc;
}

.pricing-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.plan-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1 1 240px;
  max-width: 260px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card.highlight {
  border: 2px solid #ff3c3c;
}

.badge {
  background: #ff3c3c;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}

.plan-card h3 {
  font-size: 20px;
  margin: 10px 0;
}

.plan-card h3 span {
  font-weight: normal;
  font-size: 18px;
}

.devices, .platforms {
  font-size: 14px;
  color: #666;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: #d00000;
  margin: 15px 0;
}

.plan-card .price {
  margin: 20px 0 10px;
}

.plan-card .price strong {
  font-size: 24px;
  color: #b00000;
}

.plan-card .price p {
  font-size: 14px;
  color: #888;
}

.btn-outline {
  border: 2px solid #cc0000;
  border-radius: 24px;
  padding: 10px 25px;
  color: #cc0000;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-outline:hover {
  background: #cc0000;
  color: #fff;
}

.scan-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.scan-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.scan-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.scan-content {
  flex: 1 1 450px;
  text-align: left;
}

.scan-content h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 20px;
}

.scan-content .desc {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.scan-btn {
  display: inline-block;
  background-color: #cc0000;
  color: #fff;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.scan-btn:hover {
  background-color: #a80000;
}

/* Responsive */
@media (max-width: 768px) {
  .scan-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .scan-content h2 {
    font-size: 28px;
  }

  .scan-content .desc {
    font-size: 16px;
  }
}

.ai-risk-section {
  background-color: #fff;
  padding: 60px 20px;
}

.ai-risk-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.ai-risk-content {
  flex: 1 1 500px;
}

.ai-risk-content h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 20px;
}

.ai-risk-content .desc {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.btn-learn {
  display: inline-block;
  background-color: #cc0000;
  color: #fff;
  padding: 12px 32px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-learn:hover {
  background-color: #a80000;
}

.ai-risk-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .ai-risk-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .ai-risk-content h2 {
    font-size: 28px;
  }

  .ai-risk-content .desc {
    font-size: 16px;
  }
}

.safety-banner {
  background-color: #f4f4f4;
  padding: 40px 20px;
}

.safety-banner-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  border-radius: 8px;
  overflow: hidden;
}

.safety-banner-image {
  flex: 1 1 50%;
  position: relative;
}

.safety-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.play-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.safety-banner-content {
  flex: 1 1 50%;
  background-color: #cc0000;
  color: white;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.safety-banner-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.btn-call-now {
  display: inline-block;
  background-color: #fff;
  color: #cc0000;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-call-now:hover {
  background-color: #ffe6e6;
  color: #b00000;
}

/* Responsive */
@media (max-width: 768px) {
  .safety-banner-wrapper {
    flex-direction: column;
  }

  .safety-banner-content {
    padding: 40px 20px;
  }

  .safety-banner-content h2 {
    font-size: 24px;
  }
}
.about-section {
  padding: 60px 20px;
  background-color: #fff;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1 1 50%;
}

.about-image img {
  width: 27%;
  border-radius: 16px;
  object-fit: cover;
}

.about-content {
  flex: 1 1 50%;
  text-align: left;
}

.about-content h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-red {
  display: inline-block;
  background-color: #c90000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-red:hover {
  background-color: #a00000;
}

/* Responsive */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 16px;
  }
}


.cta-section {
  background: #e1e1e1;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.cta-container {
  max-width: 900px;
  margin: auto;
}

.cta-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #cc0000;
}

.cta-container p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #000;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #cc0000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #00d6a4;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 24px;
  }

  .cta-container p {
    font-size: 16px;
  }
}

.contact-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-container h2 {
  font-size: 32px;
  color: #003636;
  margin-bottom: 10px;
}

.contact-container p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-btn {
  background-color: #cc0000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #005a5a;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container h2 {
    font-size: 24px;
  }

  .contact-container p {
    font-size: 14px;
  }
}

/* Disclaimer Section */
.disclaimer-section {
  background-color: #f7e6e6;
  padding: 40px 20px;
  text-align: center;
}

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  color: #003636;
}

.disclaimer-container h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
}

.disclaimer-container p {
  font-size: 14px;
  line-height: 1.6;
}

/* Footer Section */
.footer-section {
  background-color: #000;
  color: #ffffff;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}

.footer-container a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.footer-container a:hover {
  text-decoration: underline;
}
