    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, sans-serif;
    }

    .topbar {
      background-color: #0747a6;
      color: white;
      padding: 0.8rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .topbar .left {
      font-size: 1.4rem;
      font-weight: bold;
    }

    .topbar .right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .topbar .portal-btn {
      background: #f0c20c;
      padding: 0.4rem 1rem;
      border-radius: 18px;
      color: black;
      font-weight: bold;
      text-decoration: none;
      font-size: 0.85rem;
    }

    .navbar {
      background-color: #0747a6;
      color: white;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 1rem;
      gap: 1rem;
    }

    .navbar a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      padding: 0.4rem 0.8rem;
      border-bottom: 2px solid transparent;
    }

    .navbar a.active {
      border-bottom: 2px solid #f0c20c;
    }

    .flight-options {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      background-color: #0747a6;
      color: white;
      padding: 1rem 1.5rem;
      flex-wrap: wrap;
      font-size: 0.9rem;
    }

    .search-box {
      display: flex;
      flex-wrap: wrap;
      background-color: #0747a6;
      padding: 1rem 1.5rem;
      gap: 0.5rem;
    }

    .search-box input {
      flex: 1 1 200px;
      padding: 0.8rem;
      font-size: 1rem;
      border: none;
      border-radius: 5px;
      max-width: 300px;
    }

    .search-box button {
      background-color: #f0c20c;
      color: black;
      padding: 0.8rem 1.5rem;
      font-weight: bold;
      font-size: 1rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .filters {
      display: flex;
      gap: 1rem;
      background: #0747a6;
      padding: 1rem 1.5rem;
      color: white;
      font-size: 0.9rem;
      flex-wrap: wrap;
    }

    .filters select {
      padding: 0.4rem;
      font-size: 0.9rem;
    }

    @media (max-width: 600px) {
      .topbar,
      .navbar,
      .flight-options,
      .search-box,
      .filters {
        flex-direction: row;
        align-items: flex-start;
      }

      .search-box input, .search-box button {
        width: 110%;
        max-width: none;
      }
    }
    .banner-container {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .banner {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      display: flex;
      flex-wrap: wrap;
      position: relative;
    }

    .banner.prime {
      background: url('travel.jpg') no-repeat center/cover;
      min-height: 200px;
      padding: 2rem;
      color: #002f87;
      align-items: center;
    }

    .banner.prime .text-block {
      background: rgba(255,255,255,0.9);
      padding: 1rem 2rem;
      border-radius: 8px;
      max-width: 60%;
    }

    .banner.prime h2 {
      font-size: 2rem;
      color: #002f87;
    }

    .banner.prime .subtitle {
      background: #ffc700;
      color: #002f87;
      font-weight: bold;
      display: inline-block;
      padding: 0.5rem 1rem;
      margin-top: 0.5rem;
    }

    .banner.prime .cta {
      margin-top: 1rem;
      font-size: 0.9rem;
    }

    .banner.prime .cta span {
      background: #ffc700;
      padding: 0.3rem 0.8rem;
      font-weight: bold;
      border-radius: 4px;
      margin-right: 0.5rem;
    }

    .banner.prime .badge {
      position: absolute;
      right: 2rem;
      top: 2rem;
      background: #ffc700;
      color: #002f87;
      font-weight: bold;
      border-radius: 50%;
      padding: 1.2rem;
      width: 100px;
      height: 100px;
      text-align: center;
      line-height: 1.2;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Second Banner */
    .banner.explore {
      flex-wrap: nowrap;
      position: relative;
    }

    .tabs {
      display: flex;
      flex-direction: column;
    }

    .tabs div {
      padding: 0.8rem;
      writing-mode: vertical-lr;
      text-orientation: upright;
      font-weight: bold;
      font-size: 0.75rem;
      color: white;
      text-align: center;
    }

    .tabs .yellow { background: #f6c100; }
    .tabs .red { background: #cc2027; }
    .tabs .blue { background: #006bb6; }
    .tabs .lightblue { background: #4bb3d3; }

    .explore-content {
      background: url('travel2.jpg') no-repeat center/cover;
      flex: 1;
      padding: 3rem;
      color: #002f87;
      display: flex;
      flex-direction: column;
      justify-content: baseline;
    }

    .explore-content h2 {
      font-size: 2rem;
    }

    .explore-content .highlight {
      font-weight: bold;
      background: #ffc700;
      display: inline-block;
      padding: 0.3rem 0.8rem;
      margin-top: 0.5rem;
    }

    .explore-content .red-stamp {
      position: absolute;
      right: 6rem;
      top: 1rem;
      background: red;
      color: white;
      padding: 0.6rem;
      font-size: 0.8rem;
      font-weight: bold;
      border-radius: 50%;
      width: 100px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .green-tab {
      background: #37b241;
      color: white;
      writing-mode: vertical-lr;
      text-orientation: upright;
      padding: 0.8rem;
      font-weight: bold;
      font-size: 0.75rem;
      text-align: center;
    }

    @media (max-width: 768px) {
      .banner.prime .text-block,
      .explore-content {
        max-width: 100%;
      }

      .tabs {
        display: none;
      }

      .green-tab {
        display: none;
      }

      .banner.prime {
        flex-direction: column;
        align-items: flex-start;
      }

      .banner.explore {
        flex-direction: column;
      }

      .banner.prime .badge {
        top: 1rem;
        right: 1rem;
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
      }

      .explore-content h2 {
        font-size: 1.5rem;
      }
    }

     h2 {
      margin: 1rem 0 0.5rem;
    }

    .tiles-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .tile {
      background: #fff;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .tile img {
      width: 100%;
      height: 150px;
      object-fit: cover;
    }

    .tile .banner {
      background: #003087;
      color: white;
      font-weight: bold;
      padding: 0.5rem;
      font-size: 0.9rem;
      width: 100%;
    }

    .tile .main {
      padding: 1rem 0 0.3rem;
      font-weight: bold;
      font-size: 1rem;
    }

    .tile .desc {
      padding: 0 1rem 1rem;
      font-size: 0.85rem;
      color: #333;
    }

    .icon-tile {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #fff;
      border-radius: 6px;
      padding: 1.2rem 0.5rem;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .icon-tile img {
      width: 36px;
      height: 36px;
      margin-bottom: 0.5rem;
    }

    .icon-tile .label {
      font-weight: bold;
      font-size: 0.95rem;
      color: #002f87;
    }

    .icon-tile .underline {
      width: 40px;
      height: 2px;
      background: #ffc700;
      margin-top: 4px;
    }

    @media (max-width: 768px) {
      .tile img {
        height: 120px;
      }
    }

    .footer-main {
      background-color: #fff;
      padding: 2rem 1rem;
    }

    .footer-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-col h4 {
      font-size: 1rem;
      color: #111;
      margin-bottom: 0.7rem;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col ul li {
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
    }

    .footer-col ul li a {
      text-decoration: none;
      color: #003087;
    }

    .footer-col ul li a:hover {
      text-decoration: underline;
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      flex-wrap: wrap;
    }

    .footer-social img {
      width: 22px;
      height: 22px;
    }

    .footer-apps {
      margin-top: 1rem;
    }

    .footer-apps img {
      width: 120px;
      margin-bottom: 0.5rem;
    }

    .footer-bottom {
      background: #f0f0f0;
      padding: 1rem;
      font-size: 0.8rem;
      color: #555;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-bottom .cards {
      margin: 1rem 0;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
    }

    .footer-bottom .cards img {
      height: 25px;
    }

    .footer-bottom .links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      font-size: 0.8rem;
      margin-top: 0.5rem;
    }

    .footer-bottom .links a {
      color: #003087;
      text-decoration: none;
    }

    .footer-bottom .verified {
      margin-top: 1rem;
    }

    .footer-bottom .verified img {
      height: 24px;
    }

    @media (max-width: 768px) {
      .footer-columns {
        gap: 1rem;
      }
    }

      .discover-wrapper {
      padding: 1rem;
      background-color: #f1f1f1;
    }

    .discover-wrapper h2 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
      color: #00236c;
    }

    .discover-slider {
      display: flex;
      overflow-x: auto;
      gap: 1rem;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
    }

    .discover-card {
      min-width: 280px;
      flex: 0 0 auto;
      border-radius: 4px;
      overflow: hidden;
      scroll-snap-align: start;
      position: relative;
    }

    .discover-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
    }

    .discover-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
      color: #fff;
      padding: 0.6rem;
    }

    .discover-overlay strong {
      display: block;
      font-size: 0.9rem;
      margin-bottom: 0.3rem;
    }

    .discover-overlay span {
      font-size: 0.8rem;
      color: #f2f2f2;
    }

    /* Navigation Buttons */
    .discover-buttons {
      display: flex;
      justify-content: space-between;
      margin-top: 0.5rem;
    }

    .discover-btn {
      background: #0058cc;
      border: none;
      color: #fff;
      padding: 0.4rem 0.8rem;
      font-size: 1rem;
      border-radius: 20px;
      cursor: pointer;
    }

    .discover-btn:disabled {
      background-color: #ccc;
      cursor: not-allowed;
    }

    @media (max-width: 600px) {
      .discover-card {
        min-width: 80%;
      }
    }

     .ry-header {
      background-color: #003087;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 1rem;
      flex-wrap: wrap;
    }

    .ry-logo {
      display: flex;
      align-items: center;
    }

    .ry-logo img {
      height: 20px;
      margin-right: 8px;
    }

    .ry-logo span {
      font-weight: bold;
      font-size: 1rem;
    }

    .ry-menu {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .ry-menu a {
      color: #fff;
      text-decoration: none;
      font-size: 0.9rem;
    }

    .ry-menu a:hover {
      text-decoration: underline;
    }

    .ry-lang-flag {
      height: 12px;
      vertical-align: middle;
    }

    .ry-btn {
      background-color: #f1c40f;
      color: #003087;
      padding: 6px 12px;
      border: none;
      border-radius: 18px;
      font-weight: bold;
      cursor: pointer;
      font-size: 0.85rem;
      text-decoration: none;
    }

    .ry-btn:hover {
      background-color: #e0b90e;
    }

    .ry-divider {
      color: #ccc;
    }

    @media (max-width: 768px) {
      .ry-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 0.5rem;
      }

      .ry-header {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    .breadcrumb {
      font-size: 0.9rem;
      padding: 1rem;
      background-color: #f1f1f1;
    }

    .breadcrumb a {
      color: #0047ab;
      text-decoration: none;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    .search-bar {
      background-color: #e9ecf2;
      padding: 1rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .search-bar input[type="text"] {
      padding: 0.5rem;
      width: 250px;
      border: 1px solid #ccc;
      border-radius: 4px 0 0 4px;
    }

    .search-bar button {
      padding: 0.5rem 1rem;
      background-color: #0071ce;
      color: #fff;
      border: none;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
    }

    .search-bar button:hover {
      background-color: #005bb5;
    }

    .content-wrapper {
      padding: 2rem 1rem;
      max-width: 900px;
      margin: auto;
      background-color: #fff;
    }

    .content-wrapper h1 {
      font-size: 1.5rem;
      color: #002c5f;
      margin-bottom: 1rem;
    }

    .content-wrapper p {
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .content-wrapper a {
      color: #0047ab;
      text-decoration: none;
    }

    .content-wrapper a:hover {
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      .search-bar {
        flex-direction: column;
        gap: 0.5rem;
      }

      .search-bar input[type="text"],
      .search-bar button {
        width: 100%;
        border-radius: 4px;
      }

      .search-bar button {
        border-radius: 4px;
      }
    }

    .corporate-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      position: relative;
    }

    .corporate-logo {
      display: flex;
      align-items: center;
    }

    .corporate-logo img {
      height: 25px;
    }

    .corporate-nav {
      display: flex;
      color: black;
      align-items: center;
      gap: 1.5rem;
    }

    .corporate-nav a {
      text-decoration: none;
      color: black;
      font-size: 0.95rem;
      font-weight: 500;
      position: relative;
    }

    .corporate-nav a::after {
      content: "▾";
      font-size: 0.6rem;
      margin-left: 5px;
    }
    .corporate-nav1 {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .corporate-nav1 a {
      text-decoration: none;
      color: white;
      font-size: 0.95rem;
      font-weight: 500;
      position: relative;
    }

    .corporate-nav1 a::after {
      content: "▾";
      font-size: 0.6rem;
      margin-left: 5px;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      background: none;
      border: none;
      color: #222;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .corporate-nav {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem 2rem;
        display: none;
      }

      .corporate-nav.active {
        display: flex;
      }
      .corporate-nav1 {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem 2rem;
        display: none;
      }

      .corporate-nav1 .active {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }

     .section-banner {
      background: url('corporate1.png') no-repeat center center/cover;
      color: white;
      padding: 4rem 2rem;
      position: relative;
      text-align: left;
      min-height: 500px;
      display: flex;
      align-items: center;
    }

    .banner-overlay {
      padding: 2rem;
      max-width: 1000px;
      border-radius: 12px;
    }

    .banner-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .banner-paragraph {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .banner-title {
        font-size: 1.8rem;
      }
      .banner-paragraph {
        font-size: 1rem;
      }
      .banner-overlay {
        padding: 1.5rem;
      }
    }

     .content-grid {
      display: grid;
      padding: 30px;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 3.5rem;
    }

    .grid-card {
      position: relative;
      height: 250px;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .grid-card:hover {
      transform: scale(1.02);
    }

    .card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      filter: brightness(0.75);
    }

    .card-label {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      color: white;
      font-size: 1.4rem;
      font-weight: bold;
      text-shadow: 0 2px 5px rgba(0,0,0,0.6);
    }

    @media (max-width: 600px) {
      .card-label {
        font-size: 1.2rem;
      }
    }

    .headline-wrap {
  max-width: 1200px;
  margin: auto;
}

.main-title {
  text-align: center;
  color: #003366;
  font-size: 2rem;
  margin-bottom: 20px;
}

.news-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.lead-article {
  flex: 2;
  min-width: 280px;
}

.highlight-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.news-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}

.news-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.news-excerpt {
  font-size: 0.95rem;
}

.side-articles {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 250px;
}

.side-story {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.thumb-img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.side-text {
  flex: 1;
}

.side-title {
  font-size: 0.95rem;
  font-weight: bold;
}

.side-excerpt {
  font-size: 0.85rem;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.media-link {
  text-align: center;
  margin-top: 20px;
}

.media-link a {
  font-weight: bold;
}

.activity-summary {
  max-width: 1100px;
  margin: auto;
  padding: 30px 15px;
  text-align: center;
}

.section-headline {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 30px;
}

.summary-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  text-align: left;
}

.summary-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.summary-title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.summary-list {
  list-style: none;
}

.summary-list li {
  margin-bottom: 8px;
}

.summary-list a {
  color: #0044cc;
  text-decoration: none;
}

.summary-list a:hover {
  text-decoration: underline;
}

.co2-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.95rem;
}

.co2-table th, .co2-table td {
  padding: 6px 8px;
  border-bottom: 1px solid #ccc;
}

.co2-table th {
  text-align: left;
  color: #003366;
}

.investor-link {
  margin-top: 25px;
}

.investor-link a {
  font-weight: bold;
  color: #0056b3;
  text-decoration: none;
}

.investor-link a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .summary-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .summary-column {
    width: 100%;
    max-width: 500px;
  }
}

.brand-footer {
  border-top: 3px solid #004aad;
  padding: 30px 20px 20px;
  background-color: #ffffff;
}

.logo-cluster {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.logo-cluster img {
  height: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 30px;
}

.link-section {
  flex: 1 1 150px;
}

.link-section h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #002f6c;
}

.link-section ul {
  list-style: none;
}

.link-section li {
  margin-bottom: 6px;
}

.link-section a {
  text-decoration: none;
  color: #0039a6;
  font-size: 0.9rem;
}

.link-section a:hover {
  text-decoration: underline;
}

.legal-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #ccc;
  padding-top: 15px;
  font-size: 0.85rem;
}

.copyright-text {
  text-align: center;
  margin-bottom: 10px;
}

.copyright-text a {
  color: #0056b3;
  text-decoration: none;
  margin: 0 4px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 22px;
  height: 22px;
}

/* Responsive layout */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .link-section {
    width: 100%;
  }

  .logo-cluster {
    justify-content: center;
  }

  .legal-social {
    text-align: center;
  }
}

.breadcrumb-wrap {
  background-color: #e9edf3;
  padding: 15px 20px;
}

.breadcrumb-nav {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.breadcrumb-nav a {
  color: #0056b3;
  text-decoration: none;
  margin-right: 5px;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.search-section {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin-top: 10px;
}

.search-input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-btn {
  padding: 8px 16px;
  background-color: #0056b3;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.search-btn:hover {
  background-color: #003f87;
}

.content-section {
  background-color: #ffffff;
  padding: 25px 20px;
  margin-top: 20px;
  border-radius: 5px;
}

.page-headline {
  color: #003366;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.intro-text {
  margin-bottom: 15px;
}

.link-list {
  list-style-type: none;
  margin-top: 15px;
  padding-left: 0;
}

.link-list li {
  margin-bottom: 10px;
}

.link-list a {
  color: #0056b3;
  text-decoration: none;
  font-weight: 500;
}

.link-list a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .search-section {
    flex-direction: column;
  }

  .search-btn {
    width: 100%;
  }
}

.faq-wrapper {
  max-width: 800px;
  margin: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 15px;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-trigger {
  width: 100%;
  background: #fff;
  color: #003366;
  padding: 15px;
  text-align: left;
  font-size: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  font-weight: bold;
}

.faq-trigger::after {
  content: "▾";
  font-size: 1.2rem;
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.faq-trigger.active::after {
  transform: rotate(180deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f5f7fa;
  padding: 0 15px;
}

.faq-panel p {
  padding: 15px 0;
  margin: 0;
  font-size: 0.95rem;
}

.faq-panel a {
  color: #0056b3;
  text-decoration: none;
}

.faq-panel a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .faq-wrapper {
    padding: 10px;
  }

  .faq-trigger {
    font-size: 0.95rem;
  }
}

/* Autocomplete result list */
.results {
  list-style: none;
  background: #fff;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 5px;
  border-radius: 8px;
  z-index: 99;
  position: absolute;
  width: 26%;
  padding: 0;
}

.results li {
  padding: 10px;
  cursor: pointer;
  border-bottom: solid 1px #00d2aa;
}

.results li:hover {
  background-color: #f0f0f0;
}