   body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
      color: #222;
    }

    /* --- Topbar --- */
    .topbar {
      background: #f5f7fa;
      color: #000;
      font-size: 14px;
      padding: 12px 20px;
      text-align: center;
    }
    .topbar a {
      color: #000;
      font-weight: bold;
      text-decoration: underline;
    }

    /* --- Header --- */
    header {
      background: #fff;
      border-bottom: 1px solid #ddd;
      display: flex;
      justify-content: space-between;
      align-items: center;
      /*padding: 15px 20px;*/
          padding: 0px 0px 0px 20px;
    }

    .logo {
      font-size: 20px;
      font-weight: bold;
      color: #0046AD;
    }
    .header-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .header-right a {
      color: #0046AD;
      font-weight: bold;
      text-decoration: none;
    }
    .menu-btn {
   
      cursor: pointer;
          /*background: #0046AD;*/
    padding: 27px 42px;
    /*color: #fff;*/
    font-size: 30px;
    }

/* Clean Hero */
.hero-clean {
  background: #fff;
  padding: 60px 20px;
  border-bottom: 1px solid #eee; /* light separator */
}

.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
}

/* Offer Card */
.offer-card {
  background: #fdfdfd;
  color: #222;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 300px;
}

.offer-card h2 {
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
}

.deal {
  margin-bottom: 18px;
}
.deal strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}
.deal .price {
  font-size: 26px;
  font-weight: 900;
  color: #0046AD; /* keep Spectrum blue for prices */
}
.deal small {
  display: block;
  color: #555;
  font-size: 14px;
}
.deal.highlight {
  border-top: 2px dashed #ccc;
  padding-top: 15px;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  background: #0046AD;
  color: white;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 15px;
  transition: 0.3s;
}
.cta-btn:hover {
  background: #003080;
}

/* Right Side Content */
.hero-content {
  flex: 1;
  min-width: 320px;
}
.hero-content .tag {
  background: #0046AD;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 12px;
}
.hero-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #111;
}
.hero-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 28px;
  }
}


   /* --- Footer --- */
    footer {
      text-align: center;
      font-size: 12px;
      color: #666;
      padding: 20px;
      background: #f1f1f1;

    }
.tv-offer {
  background: linear-gradient(128deg, #0a1a3c 40%, #f8faff 40%);
  padding: 80px 20px;
  color: #fff;
}
.tv-offer2 {
  background: #fff!important;
  padding: 80px 20px;
  color: #fff;
}
.offer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}

.offer-content {
  flex: 1;
  min-width: 320px;
  position: relative;
}

.offer-title {
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #fff;
}

.offer-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
}

.offer-desc {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #e0e6ff;
}

/* Price Ribbon */
.price-ribbon {
  position: absolute;
  top: -20px;
  right: -100px;
  background: #ff4757;
  padding: 12px 25px;
  font-size: 26px;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.price-ribbon .currency {
  font-size: 20px;
  vertical-align: top;
}
.price-ribbon .per {
  font-size: 16px;
  font-weight: 400;
  margin-left: 3px;
}
.features-grid {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.features-grid li {
  background: #f8f9fc;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  position: relative;
}

.features-grid li::before {
  content: "✔";
  color: #0046AD;
  font-weight: bold;
  margin-right: 8px;
}


/* Features Grid */
/*.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 25px;
  margin-bottom: 30px;
}
.features-grid div {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e6ecff;
}*/
.features-grid i {
  color: #ffd700;
}

/* CTA */
.cta-button {
  display: inline-block;
  background: #ffd700;
  color: #000;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.cta-button:hover {
  background: #ffce00;
}

/* Image */
.offer-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  background: #fff;
  padding: 10px;
}

/* Responsive */
@media (max-width: 950px) {
  .offer-container {
    flex-direction: column;
    text-align: center;
  }
  .price-ribbon {
    position: static;
    display: inline-block;
    margin: 0 auto 20px auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}


.disney-offer {
  background: #f5f7fa;
  padding: 60px 20px;
  text-align: center;
}

.disney-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: auto;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.disney-card-logo img {
  max-width: 180px;
}

.disney-card-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 12px;
}

.disney-card-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
  margin: auto;
}

.disney-btn {
  display: inline-block;
  background: #1a237e;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  margin-top: 20px;
}

.disney-btn:hover {
  background: #0d1854;
}
.voice-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Flip order when .reverse is added */
.voice-container.reverse {
  flex-direction: row-reverse;
}


/* Background also flips when reversed */
.voice-section.reverse {
  background: linear-gradient(-120deg, #19304f 40%, #f9f9f9 40%);
}

.voice-section {
  background: linear-gradient(120deg, #0066ff 40%, #f9f9f9 40%);
  color: #222;
  padding: 60px 0;
}

.voice-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.voice-image-side {
  flex: 1;
  text-align: center;
}

.voice-image-side img {
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.voice-content {
  flex: 1;
  min-width: 320px;
  position: relative;
}

.voice-tag {
  background: #fff;
  color: #1a237e;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.voice-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}

.voice-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Price Card */
.price-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  margin: 20px 0;
  max-width: 320px;
}

.price-card h3 {
  margin: 10px 0;
  font-weight: 900;
  color: #19304f;
}

.currency {
  font-size: 20px;
  vertical-align: top;
}

.amount {
  font-size: 56px;
}

.per {
  font-size: 18px;
  font-weight: 500;
}

/* CTA */
.btn-call {
  display: inline-block;
  background: #19304f;
  color: #fff;
  padding: 14px 28px;
  border-radius: 35px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-call:hover {
  background: #004bb5;
}

.offers {
  font-size: 14px;
  margin-top: 15px;
  color: #333;
}

.offers i {
  margin-right: 6px;
  color: #0066ff;
}

.disclaimer {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

.voice-image {
  flex: 1;
  min-width: 300px;
}

.voice-image img {
  width: 100%;
  border-radius: 10px;
}

 .promo-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 40px;
      max-width: 1200px;
      margin: auto;
      flex-wrap: wrap;
    }

    .promo-left img {
      max-width: 100%;
      border-radius: 10px;
    }

    .promo-right {
      flex: 1;
      padding-left: 40px;
      min-width: 320px;
    }

    .promo-right h4 {
      color: #0057ff;
      font-size: 14px;
      text-transform: uppercase;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .promo-right h2 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #222;
    }

    .promo-right p {
      color: #555;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .price-box {
      border-left: 4px solid #0057ff;
      padding-left: 15px;
      margin-bottom: 20px;
    }

    .price-box span {
      font-size: 16px;
      color: #555;
      display: block;
    }

    .price-box strong {
      font-size: 40px;
      color: #000;
    }

    .features {
      margin-bottom: 25px;
    }

    .features li {
      margin: 8px 0;
      color: #444;
      font-size: 15px;
      list-style: none;
    }

    .features li i {
      color: #0057ff;
      margin-right: 8px;
    }

    .cta-btn {
      display: inline-block;
      background: #0046ad;
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 16px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }

    .cta-btn:hover {
      background: #003bb5;
    }

    @media(max-width: 768px) {
      .promo-section {
        flex-direction: column;
        text-align: center;
      }
      .promo-right {
        padding-left: 0;
        margin-top: 20px;
      }
      .offer-content {
    background: rgba(0, 25, 60, 0.9);
    color: #fff;
    max-width: 500px;
    padding: 40px;
    border-radius: 10px;
    margin-right: 0px!important;
}
.voice-section.reverse {
    background: linear-gradient(-180deg, #19304f 40%, #f9f9f9 40%);
}
      .hero-content .tag
 {
    background: #0046AD;
    color: #fff;
    padding: 14px 14px;
    border-radius: 20px;
    font-size: 30px;
    display: inline-block;
    margin-bottom: 12px;
}
      .header-right a {
    color: #0046AD;
    font-weight: bold;
    text-decoration: none;
    display: none;
}
      .hero-text {
  flex: 1;
  min-width: 280px;
  top: 0%;
  position: relative;
}
.highlight-title {
    color: #0046AD;
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 40px;
}
    }

        .offer-section {
      position: relative;
      background: url('../images/logo/bottom-banner.webp') no-repeat center center/cover;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .offer-content {
      background: rgba(0, 25, 60, 0.9);
      color: #fff;
      max-width: 500px;
      padding: 40px;
      border-radius: 10px;
      margin-right: 50px;
    }

    .offer-content h4 {
      color: #ffc107;
      margin: 0 0 10px;
      font-size: 18px;
      font-weight: bold;
    }

    .offer-content h2 {
      font-size: 28px;
      font-weight: bold;
      margin: 10px 0;
    }

    .offer-content p {
      margin: 15px 0;
      font-size: 16px;
      line-height: 1.5;
    }

    .price {
      font-size: 36px;
      font-weight: bold;
      margin: 20px 0;
    }

    .price span {
      font-size: 18px;
      font-weight: normal;
    }

    .offer-btn {
      display: inline-block;
      background: #ffc107;
      color: #000;
      padding: 12px 25px;
      font-size: 18px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s ease;
    }

    .offer-btn i {
      margin-right: 8px;
    }

    .offer-btn:hover {
      background: #e0a800;
    }

    .small-text {
      margin-top: 15px;
      font-size: 13px;
      color: #bbb;
    }
     footer {
      background: #1b1f29;
      padding: 40px 80px 20px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      align-items: flex-start;
      margin-bottom: 30px;
    }

    .footer-left {
      max-width: 400px;
    }

    .footer-left h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #fff;
    }

    .footer-left p {
      font-size: 15px;
      line-height: 1.6;
      color: #bbb;
    }

    .footer-right {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }

    .footer-item {
      display: flex;
      align-items: center;
      font-size: 15px;
      margin-bottom: 10px;
      color: #bbb;
    }

    .footer-item i {
      color: #2a74ff;
      margin-right: 10px;
      font-size: 18px;
    }

    .footer-bottom {
      border-top: 1px solid #333;
      padding-top: 15px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      font-size: 14px;
      color: #bbb;
    }

    .footer-bottom a {
      color: #bbb;
      margin-left: 20px;
      text-decoration: none;
      transition: 0.3s;
    }

    .footer-bottom a:hover {
      color: #2a74ff;
    }

    .footer-bottom span {
      color: #2a74ff;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        gap: 30px;
      }
      .footer-right {
        flex-direction: column;
        gap: 15px;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }
        .price {
      font-size: 36px;
      font-weight: bold;
      margin: 20px 0;
      text-align: right;
    }

    }