* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f4f6f8;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: black;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #38bdf8;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #38bdf8;
  left: 0;
  bottom: -6px;
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #0f172a;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

.hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  padding: 80px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* Text */
.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #38bdf8;
}

.hero-content p {
  font-size: 1.05rem;
  color: #cbd5f5;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn-primary {
  background: #38bdf8;
  color: #020617;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0ea5e9;
}

.btn-secondary {
  border: 1px solid #38bdf8;
  color: #38bdf8;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(56, 189, 248, 0.15);
}

/* Trust points */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Image */
.hero-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin-left: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image img {
    margin: 30px auto 0;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

.why-us {
  padding: 80px 20px;
  background: #f8fafc;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.why-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: #020617;
}

.why-header h2 span {
  color: #38bdf8;
}

.why-header p {
  color: #475569;
  font-size: 1.05rem;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.why-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #020617;
}

.why-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-header h2 {
    font-size: 2rem;
  }
}

.reviews {
  padding: 80px 20px;
  background: #020617;
  color: #fff;
}

.reviews-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.reviews-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.reviews-header h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.reviews-header p {
  color: #94a3b8;
  font-size: 1.05rem;
}

/* Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.review-card {
  background: #0f172a;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
}

.review-card img {
  max-width: 140px;
  height: auto;
  margin-bottom: 15px;
}

/* Rating */
.rating {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #facc15;
}

.rating span {
  color: #cbd5f5;
  font-size: 0.9rem;
}

/* List */
.review-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.review-card ul li {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-bottom: 8px;
}

/* Button */
.review-btn {
  display: inline-block;
  background: #38bdf8;
  color: #020617;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.review-btn:hover {
  background: #0ea5e9;
}

.faq {
  padding: 80px 20px;
  background: #f8fafc;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #020617;
}

.faq-header p {
  color: #475569;
  font-size: 1.05rem;
}

/* FAQ Items */
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #020617;
}

.faq-question span {
  font-size: 1.4rem;
  color: #38bdf8;
  transition: transform 0.3s;
}

/* Answer */
.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 25px 20px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
}

.testimonials-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.testimonials-header {
  text-align: center;
  max-width: 650px;
  margin: auto;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.testimonials-header p {
  color: #94a3b8;
  font-size: 1.05rem;
}

/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #0f172a;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
}

/* Text */
.testimonial-text {
  font-size: 0.95rem;
  color: #cbd5f5;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #38bdf8;
  color: #020617;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-user h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-user span {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-header h2 {
    font-size: 2rem;
  }
}

.footer {
  background: black;
  color: #cbd5f5;
  padding: 70px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Column */
.footer-col h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94a3b8;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #38bdf8;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
}

.disclaimer {
  background: #020617;
  border-top: 1px solid #1e293b;
  padding: 25px 20px;
}

.disclaimer-container {
  max-width: 1200px;
  margin: auto;
}

.disclaimer p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #94a3b8;
  text-align: center;
}

.disclaimer strong {
  color: #cbd5f5;
}

.simple-hero {
  background: #020617;
  color: #ffffff;
  padding: 70px 20px;
  text-align: center;
}

.simple-hero-container {
  max-width: 800px;
  margin: auto;
}

.simple-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.simple-hero p {
  font-size: 1rem;
  color: #cbd5f5;
  margin-bottom: 25px;
}

.simple-btn {
  display: inline-block;
  background: #38bdf8;
  color: #020617;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.simple-btn:hover {
  background: #0ea5e9;
}

.norton-review {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", sans-serif;
}

/* Headings */
.norton-review h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #020617;
}

.norton-review h3 {
  font-size: 1.4rem;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #0f172a;
}

/* Paragraphs */
.norton-review p {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 15px;
}

/* List */
.norton-review ul {
  margin: 20px 0 10px 20px;
  color: #475569;
}

.norton-review ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .norton-review {
    padding: 25px;
    margin: 50px 15px;
  }

  .norton-review h2 {
    font-size: 1.9rem;
  }

  .norton-review h3 {
    font-size: 1.25rem;
  }
}

  .tc-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .tc-container h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0f172a;
  }

  .tc-container h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0f172a;
  }

  .tc-container p, .tc-container li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .tc-container ul {
    margin: 15px 0 15px 20px;
  }

  .tc-container a {
    color: #3b82f6;
    text-decoration: underline;
  }


  
.how-we-review {
  background: #f1f5f9;
  padding: 60px 20px;
}

.review-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.review-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0f172a;
}

.review-container p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #334155;
}

.review-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.step {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

/* Responsive */
@media (min-width: 768px) {
  .review-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .review-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}


.about-us {
  background: #f8fafc;
  padding: 60px 20px;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-container h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #0f172a;
}

.about-container p {
  font-size: 1rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 40px;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

/* Responsive Grid */
@media (min-width: 768px) {
  .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-us {
  background: #ffffff;
  padding: 80px 20px;
  color: #1f2937;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

.about-us h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #0f172a;
}

.about-us p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #374151;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.feature-box {
  background: #f9fafb;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111827;
}

.feature-box p {
  font-size: 14.5px;
  color: #4b5563;
}

.about-mission {
  font-size: 17px;
  margin-top: 30px;
  padding-left: 15px;
  border-left: 3px solid #2563eb;
  color: #1f2937;
}

.faq-section {
  background: #ffffff;
  padding: 80px 20px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-section h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #0f172a;
  text-align: center;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #f9fafb;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 18px 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.product-section {
  background: #ffffff;
  padding: 80px 20px;
}

.product-container {
  max-width: 1200px;
  margin: auto;
}

.product-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: #0f172a;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.product-card img {
  max-width: 140px;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111827;
}

.product-desc {
  font-size: 14.5px;
  color: #4b5563;
  margin-bottom: 20px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
}

.buy-btn {
  background: #2563eb;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.buy-btn:hover {
  background: #1d4ed8;
  transform: scale(1.05);
}

.testimonial-section {
  background: #ffffff;
  padding: 80px 20px;
}

.testimonial-container {
  max-width: 1100px;
  margin: auto;
}

.testimonial-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: #0f172a;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h4 {
  margin: 0;
  font-size: 16px;
  color: #111827;
}

.testimonial-user span {
  font-size: 13px;
  color: #6b7280;
}

.third-party-disclaimer {
  background: #c9c8ca14;
  padding: 40px 20px;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-container {
  max-width: 1200px;
  margin: auto;
}

.third-party-disclaimer h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #111827;
}

.third-party-disclaimer p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 8px;
}

.single-product-section {
  background: #ffffff;
  padding: 80px 20px;
}

.single-product-container {
  max-width: 1200px;
  margin: auto;
}

.product-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
}

.product-image img {
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 20px;
  background: #f9fafb;
}

.product-details h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #0f172a;
}

.product-tagline {
  font-size: 16.5px;
  color: #374151;
  margin-bottom: 25px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.product-features li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  font-size: 15px;
  color: #374151;
}

.product-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

.purchase-box {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 15px;
}

.product-price {
  font-size: 22px;
  font-weight: 700;
  color: #2563eb;
}

.buy-now-btn {
  background: #2563eb;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.buy-now-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.product-note {
  font-size: 13px;
  color: #6b7280;
}

.product-specs-section {
  background: #ffffff;
  padding: 80px 20px;
  color: #1f2937;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.product-specs-container {
  max-width: 900px;
  margin: auto;
}

.product-specs-section h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #0f172a;
  text-align: center;
}

.product-specs-section h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #2563eb;
}

.product-specs-section p {
  font-size: 15px;
  margin-bottom: 18px;
}

.product-specs-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.product-specs-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 15px;
}

.product-specs-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

.purchase-box {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.product-price {
  font-size: 22px;
  font-weight: 700;
  color: #2563eb;
}

.buy-now-btn {
  background: #2563eb;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.buy-now-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.product-note {
  font-size: 13px;
  color: #6b7280;
  margin-top: 12px;
}

.terms-conditions-section {
  background: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.7;
}

.terms-conditions-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-conditions-section h1 {
  font-size: 36px;
  color: #111111;
  margin-bottom: 25px;
  text-align: center;
}

.terms-conditions-section h2 {
  font-size: 24px;
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #2563eb;
  padding-left: 10px;
}

.terms-conditions-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
}

.terms-conditions-section ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
  color: #4b5563;
}

.terms-conditions-section ul li {
  margin-bottom: 10px;
}

.terms-conditions-section a {
  color: #2563eb;
  text-decoration: none;
}

.terms-conditions-section a:hover {
  text-decoration: underline;
}


.privacy-policy-section {
  background: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.7;
}

.privacy-policy-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-policy-section h1 {
  font-size: 36px;
  color: #111111;
  margin-bottom: 25px;
  text-align: center;
}

.privacy-policy-section h2 {
  font-size: 24px;
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #2563eb;
  padding-left: 10px;
}

.privacy-policy-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
}

.privacy-policy-section ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
  color: #4b5563;
}

.privacy-policy-section ul li {
  margin-bottom: 10px;
}

.privacy-policy-section a {
  color: #2563eb;
  text-decoration: none;
}

.privacy-policy-section a:hover {
  text-decoration: underline;
}


.refund-policy-section {
  background: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.7;
}

.refund-policy-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.refund-policy-section h1 {
  font-size: 36px;
  color: #111111;
  margin-bottom: 25px;
  text-align: center;
}

.refund-policy-section h2 {
  font-size: 24px;
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #2563eb;
  padding-left: 10px;
}

.refund-policy-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
}

.refund-policy-section ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
  color: #4b5563;
}

.refund-policy-section ul li {
  margin-bottom: 10px;
}

.refund-policy-section a {
  color: #2563eb;
  text-decoration: none;
}

.refund-policy-section a:hover {
  text-decoration: underline;
}


.disclaimer-section {
  background: #ffffff;
  padding: 30px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.7;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-section h2 {
  font-size: 24px;
  color: #1f2937;
  margin-bottom: 15px;
  border-left: 4px solid #2563eb;
  padding-left: 10px;
}

.disclaimer-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
}


.about-us-section {
  background: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.7;
}

.about-us-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-us-section h1 {
  font-size: 36px;
  color: #111111;
  margin-bottom: 25px;
  text-align: center;
}

.about-us-section h2 {
  font-size: 24px;
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #2563eb;
  padding-left: 10px;
}

.about-us-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
}

.about-us-section ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
  color: #4b5563;
}

.about-us-section ul li {
  margin-bottom: 10px;
}


.product-specs-section {
  background: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.7;
}

.product-specs-container {
  max-width: 900px;
  margin: 0 auto;
}

.product-specs-section h2 {
  font-size: 28px;
  color: #111111;
  margin-bottom: 25px;
}

.product-specs-section h3 {
  font-size: 22px;
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #2563eb;
  padding-left: 10px;
}

.product-specs-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
}

.product-specs-section ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
  color: #4b5563;
}

.product-specs-section ul li {
  margin-bottom: 10px;
}

.product-specs-section img {
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.product-specs-section {
  background: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.7;
}

.product-specs-container {
  max-width: 900px;
  margin: 0 auto;
}

.product-specs-section h2 {
  font-size: 28px;
  color: #111111;
  margin-bottom: 25px;
}

.product-specs-section h3 {
  font-size: 22px;
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #2563eb;
  padding-left: 10px;
}

.product-specs-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
}

.product-specs-section ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  list-style-type: disc;
  color: #4b5563;
}

.product-specs-section ul li {
  margin-bottom: 10px;
}

.cyberguard-hero-wrap{
    width:100%;
    background:linear-gradient(135deg,#071b34,#3949ab);
    padding:90px 20px;
    font-family:Arial, Helvetica, sans-serif;
}

.cyberguard-hero-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.cyberguard-left-area{
    flex:1;
}

.cyberguard-tagline{
    display:inline-block;
    background:#0b2c55;
    color:#7fd4ff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
}

.cyberguard-main-title{
    font-size:48px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:20px;
    line-height:1.2;
}

.cyberguard-description{
    color:#b6c7de;
    font-size:18px;
    line-height:1.7;
    margin-bottom:30px;
}

.cyberguard-btn-group{
    display:flex;
    gap:18px;
    margin-bottom:30px;
}

.cyberguard-btn-primary{
    background:#3f51b5;
    color:white;
    padding:14px 26px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.cyberguard-btn-primary:hover{
    background:#1086d1;
}

.cyberguard-btn-outline{
    border:1px solid #3f51b5;
    color:#3f51b5;
    padding:14px 26px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.cyberguard-btn-outline:hover{
    background:#3faeff;
    color:white;
}

.cyberguard-features{
    display:flex;
    gap:25px;
    color:#9fb4d4;
    font-size:15px;
    flex-wrap:wrap;
}

.cyberguard-right-area{
    flex:1;
    text-align:right;
}

.cyberguard-right-area img{
    max-width:420px;
    width:100%;
}

/* Responsive */

@media(max-width:900px){

.cyberguard-hero-container{
    flex-direction:column;
    text-align:center;
}

.cyberguard-right-area{
    text-align:center;
}

.cyberguard-main-title{
    font-size:34px;
}

.cyberguard-btn-group{
    justify-content:center;
}

.cyberguard-features{
    justify-content:center;
}

}

.avcart-about-section{
    background:#f6f8fb;
    padding:90px 20px;
    font-family:Arial, Helvetica, sans-serif;
}

.avcart-about-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.avcart-about-title{
    font-size:40px;
    margin-bottom:25px;
    color:#0b1f3a;
}

.avcart-about-intro{
    max-width:900px;
    margin:0 auto 20px auto;
    font-size:18px;
    color:#4b5a70;
    line-height:1.7;
}

.avcart-about-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.avcart-about-card{
    background:white;
    padding:35px 30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.3s;
}

.avcart-about-card:hover{
    transform:translateY(-6px);
}

.avcart-icon{
    font-size:40px;
    margin-bottom:15px;
}

.avcart-about-card h3{
    font-size:22px;
    margin-bottom:10px;
    color:#0b1f3a;
}

.avcart-about-card p{
    font-size:16px;
    color:#5c6b82;
    line-height:1.6;
}

.avcart-mission-box{
    margin-top:50px;
    background:white;
    padding:25px 35px;
    border-left:4px solid #2c7df0;
    border-radius:8px;
    font-size:18px;
    color:#2d3b52;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

/* Responsive */

@media(max-width:900px){

.avcart-about-grid{
    grid-template-columns:1fr;
}

.avcart-about-title{
    font-size:30px;
}

}

.avc-products-section{
padding:90px 20px;
background:#f7f9fc;
font-family:Arial, Helvetica, sans-serif;
}

.avc-products-container{
max-width:1200px;
margin:auto;
}

.avc-products-title{
text-align:center;
font-size:40px;
margin-bottom:60px;
color:#0d1f3c;
}

.avc-products-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}

.avc-product-card{
background:#fff;
padding:30px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
transition:all .3s ease;
}

.avc-product-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.avc-product-card img{
width:120px;
margin-bottom:20px;
}

.avc-product-card h3{
font-size:20px;
margin-bottom:10px;
color:#0d1f3c;
}

.avc-product-card p{
font-size:15px;
color:#5f6f85;
line-height:1.6;
margin-bottom:25px;
}

.avc-product-bottom{
display:flex;
justify-content:space-between;
align-items:center;
margin-top:10px;
}

.avc-price{
font-size:18px;
font-weight:600;
color:#5e35b1;
}

.avc-buy-btn{
background:#5e35b1;
color:#fff;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
font-size:14px;
transition:.3s;
}

.avc-buy-btn:hover{
background:#0c4ce0;
}

/* Responsive */

@media(max-width:992px){

.avc-products-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.avc-products-grid{
grid-template-columns:1fr;
}

.avc-product-bottom{
flex-direction:column;
gap:10px;
}

}

.myavfaq-section{
padding:90px 20px;
background:#f6f8fb;
font-family:Arial, Helvetica, sans-serif;
}

.myavfaq-container{
max-width:900px;
margin:auto;
}

.myavfaq-title{
text-align:center;
font-size:38px;
margin-bottom:50px;
color:#0c1f3f;
}

.myavfaq-wrapper{
display:flex;
flex-direction:column;
gap:18px;
}

.myavfaq-item{
background:#fff;
border-radius:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.05);
overflow:hidden;
}

.myavfaq-question{
width:100%;
padding:22px 25px;
font-size:18px;
text-align:left;
border:none;
background:#fff;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
font-weight:600;
color:#102a43;
}

.myavfaq-icon{
font-size:22px;
color:#2d6cff;
transition:0.3s;
}

.myavfaq-answer{
max-height:0;
overflow:hidden;
transition:max-height .35s ease;
padding:0 25px;
}

.myavfaq-answer p{
padding-bottom:20px;
color:#5a6b82;
line-height:1.7;
font-size:15px;
}

.myavfaq-item.active .myavfaq-answer{
max-height:200px;
}

.myavfaq-item.active .myavfaq-icon{
transform:rotate(45deg);
}

/* Responsive */

@media(max-width:768px){

.myavfaq-title{
font-size:30px;
}

.myavfaq-question{
font-size:16px;
padding:18px;
}

}