/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background-color: #fff;
    color: #212121;
  }
  
  /* ------------ HEADER NAVIGATION ------------ */
  
  .main-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
  }
  
  .logo img {
    height: 36px;
  }
  
  .hamburger {
    font-size: 28px;
    cursor: pointer;
    display: none;
  }
  
  /* Desktop Nav */
  .main-nav {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    padding: 0 24px 16px;
    align-items: center;
  }
  
  .main-nav a {
    text-decoration: none;
    color: #212121;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
  }
  
  .main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 3px;
    background-color: #FFD600;
    border-radius: 2px;
  }
  
  .signin-link {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .signin-link img {
    height: 18px;
    width: 18px;
  }
  
  /* ------------ MOBILE NAVIGATION ------------ */
  @media screen and (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .main-nav {
      flex-direction: column;
      align-items: flex-start;
      background-color: #fff;
      padding: 0;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      border-top: 1px solid #eee;
    }
  
    .main-nav.show {
      max-height: 500px;
      padding-bottom: 8px;
    }
  
    .main-nav a {
      width: 100%;
      padding: 12px 24px;
      border-bottom: 1px solid #f0f0f0;
    }
  }
  
  /* ------------ SECTION DEFAULT ------------ */
  .section {
    padding: 60px 24px;
    max-width: 800px;
    margin: auto;
  }
  
  /* ------------ FORM ------------ */
  form input, form textarea, form button {
    width: 100%;
    padding: 12px;
    margin-top: 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  form button {
    background-color: #FFD600;
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
  }
  
  form button:hover {
    background-color: #e6c200;
  }
  
  /* ------------ HERO SECTION / FEATURES ------------ */
  .hero {
    background-color: #fff;
    padding: 40px 32px 20px;
    border-bottom: 1px solid #eee;
  }
  
  .hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .hero-logo {
    height: 100%;
    width: 100%;;
  }
  
  .hero-contact {
    text-align: right;
  }
  
  .call-now {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  .call-now span {
    font-weight: bold;
  }
  
  .call-box {
    display: flex;
    align-items: center;
    background-color: #0b1c48;
    color: #fff;
    padding: 10px 20px;
    border: 3px solid #FFD600;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
  }
  
  .call-box img {
    height: 24px;
    width: 24px;
    margin-right: 10px;
    filter: invert(1);
  }
  
  .hero-features {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .feature-box {
    flex: 1;
    min-width: 240px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
  }
  
  .feature-box img {
    height: 32px;
    width: 32px;
  }
  
  .feature-box strong {
    color: #000;
    font-size: 15px;
  }
  
  .feature-box p {
    font-size: 13px;
    color: #555;
  }
  
  /* ------------ DARK PROMO BANNER ------------ */
  .norton-promo {
    background-color: #0b1c48;
    color: #fff;
    padding: 40px 20px;
  }
  
  .promo-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .promo-left, .promo-right {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
  }
  
  .promo-products {
    max-width: 180px;
    height: auto;
  }
  
  .promo-logo {
    height: 30px;
    margin-bottom: 20px;
  }
  
  .promo-text {
    flex: 2;
    min-width: 280px;
  }
  
  .promo-text h2 {
    font-size: 20px;
    font-weight: 700;
    color: #FFD600;
    margin-bottom: 16px;
  }
  
  .promo-text p {
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff;
  }
  
  .promo-family {
    max-width: 220px;
    height: auto;
  }
  
  /* ------------ FULL-WIDTH IMAGE SECTION ------------ */
  .norton-full-banner {
    width: 100%;
    background-color: #0b1c48;
    padding: 0;
    margin: 0;
  }
  
  .norton-full-banner img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* ---------- SECTION CARD STYLE ---------- */
.cancel-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    margin: 24px auto;
    max-width: 800px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  }
  
  .cancel-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #000;
  }
  
  .cancel-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  /* ---------- ICON LIST ---------- */
  .check-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
  }
  
  .check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
    color: #212121;
  }
  
  .check-list .icon {
    font-size: 16px;
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    background-color: #FFD600;
    color: #000;
  }
  
  /* Optional: Different background per icon */
  .check-list .success {
    background-color: #22c55e;
    color: #fff;
  }
  
  .check-list .clock {
    background-color: #0ea5e9;
    color: #fff;
  }
  
  .check-list .card {
    background-color: #eab308;
    color: #fff;
  }
  
  .check-list .mail {
    background-color: #6366f1;
    color: #fff;
  }
  
  .bottom-note {
    font-size: 14px;
    color: #555;
    margin-top: 20px;
  }
  
  