    :root {
        --navy: #002D4B;
        --blue: #006EC8;
        --sky: #1085e4;
        --accent: #E8A020;
        --accent-light: #F5C84A;
        --white: #ffffff;
        --off-white: #F6F8FB;
        --gray-light: #EEF1F7;
        --gray: #8A93A2;
        --text: #1C2332;
        --text-muted: #5A6478;
        --red: #006EC8;
        --red-dark: #1085e4;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        font-size: 20px;
    }
    section{
        scroll-margin-top: 100px;
    }
    a {
        text-decoration: none;
        color: inherit;
    }

    body {
        font-family: 'Source Sans 3', sans-serif;
        font-weight: 400;
        line-height: 1.65;
        color: var(--text);
        background: var(--white);
        padding-top: 72px;
    }

    /* ===== HEADER ===== */
    header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--gray-light);
  box-shadow: 0 2px 20px rgba(10, 31, 68, 0.08);
}

/* Layout */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 30px;
  height: 30px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.logo-text span {
  color: var(--sky);
}

/* NAV MENU */
.nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav ul li a {
  text-decoration: none;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  transition: 0.3s;
}

.nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--sky);
  transition: 0.3s;
}

.nav ul li a:hover {
  color: var(--sky);
}

.nav ul li a:hover::after {
  width: 100%;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.need-help {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.header-cta {
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: var(--white);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(46, 125, 214, 0.35);
}

.header-cta:hover {
  transform: translateY(-2px);
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .nav ul {
    flex-direction: column;
    padding: 20px 0;
    gap: 15px;
  }

  .nav.active {
    max-height: 300px;
  }

  .menu-toggle {
    display: flex;
  }

  .header-right {
    display: none;
  }
}

/* Hamburger animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

    /* ===== HERO ===== */
    .hero {
        background: url('../images/travelers-bg.jpg') center/cover no-repeat;
        min-height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 25, 50, 0.65);
        /* dark overlay */
        z-index: 1;
    }

    .hero-shape {
        position: absolute;
        right: -80px;
        top: -80px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(90, 71, 71, 0.2) 0%, transparent 70%);
    }

    .hero-shape2 {
        position: absolute;
        left: -100px;
        bottom: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(144, 40, 17, 0.12) 0%, transparent 70%);
    }

    .hero-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 24px;
        position: relative;
        z-index: 2;
        gap: 60px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #1085e42f;
        border: 1px solid rgba(232, 160, 32, 0.4);
        color: var(--gray-light);
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero h1 {
        text-align: center;
        font-size: clamp(2.2rem, 4vw, 3rem);
        font-weight: 800;
        color: var(--white);
        line-height: 1;
        margin-bottom: 20px;
    }

    .hero h1 span {
        background: linear-gradient(90deg, var(--red), #ffffff, var(--off-white));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 20px rgba(96, 165, 250, 0.25);
    }


    .hero p {
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .hero-btns {
        margin-top: 20px;
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--red), var(--red-dark));
        color: var(--off-white);
        text-decoration: none;
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(45, 32, 232, 0.4);
        animation: pulse-btn 2.5s ease-in-out infinite;
    }

    @keyframes pulse-btn {

        0%,
        100% {
            box-shadow: 0 6px 20px #0c7ad4;
        }

        50% {
            box-shadow: 0 10px 30px #237ec977;
            transform: translateY(-2px);
        }
    }

    .btn-primary:hover {
        animation: none;
        transform: translateY(-3px);
        box-shadow: 0 12px 35px #006ec835;
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.12);
        border: 2px solid #006EC8;
        color: var(--white);
        text-decoration: none;
        padding: 12px 26px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.6);
    }

    /* ===== TRUST BAR ===== */
    .trust-bar {
        background: var(--navy);
        padding: 0;
    }

    .trust-bar-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-item {
        padding: 24px 20px;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        transition: background 0.3s;
    }

    .trust-item:last-child {
        border-right: none;
    }

    .trust-item:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    .trust-item i {
        color: var(--accent-light);
        font-size: 1.6rem;
        margin-bottom: 8px;
        display: block;
    }

    .trust-item strong {
        color: var(--white);
        display: block;
        font-size: 0.95rem;
        font-weight: 700;
    }

    .trust-item p {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* ===== STATS ===== */
    .stats-section {
        padding: 80px 24px;
        background: var(--off-white);
    }

    .section-label {
        text-align: center;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--sky);
        margin-bottom: 12px;
    }

    .section-title {

        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 800;
        color: var(--navy);
        text-align: center;
        margin-bottom: 60px;
        line-height: 1.3;
    }

    .stats-grid {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .stat-card {
        background: var(--white);
        border-radius: 20px;
        padding: 20px 28px;
        text-align: center;
        box-shadow: 0 4px 24px rgba(10, 31, 68, 0.08);
        border-top: 4px solid var(--sky);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(10, 31, 68, 0.15);
    }

    .stat-number {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--navy);
        line-height: 1;
        margin-bottom: 12px;
    }

    .stat-number sup {
        font-size: 1.2rem;
    }

    .stat-text {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* ===== MAIN LAYOUT ===== */
    .main-wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 24px;
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 48px;
    }

    /* Sidebar */
    .sidebar {}

    .sidebar-card {
        position: sticky;
        top: 88px;
        background: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 40px rgba(10, 31, 68, 0.12);
        border: 1px solid var(--gray-light);
    }

    .sidebar-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        background: linear-gradient(135deg, var(--navy), var(--sky));
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar-img-placeholder {
        width: 100%;
        height: 200px;
        background: linear-gradient(135deg, #002D4B 0%, #1A4B8C 60%, #2E7DD6 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .sidebar-img-placeholder img {
        width: 100%;
    }

    .sidebar-body {
        padding: 24px;
    }

    .sidebar-body h3 {
        text-align: center;
        line-height: 1.2;
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 12px;
    }

    .sidebar-body p {
        text-align: center;
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .sidebar-features {
        list-style: none;
        margin-bottom: 20px;
    }

    .sidebar-features li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.875rem;
        color: var(--text);
        padding: 5px 0;
        border-bottom: 1px solid var(--gray-light);
    }

    .sidebar-features li:last-child {
        border-bottom: none;
    }

    .sidebar-features li i {
        color: var(--sky);
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .sidebar-cta {
        display: block;
        background: linear-gradient(135deg, var(--sky), var(--blue));
        color: var(--white);
        text-decoration: none;
        text-align: center;
        padding: 14px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 16px rgba(46, 125, 214, 0.35);
    }

    .sidebar-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(46, 125, 214, 0.5);
    }

    /* ===== CONTENT ===== */
    .content {}

    .content-section {
        margin-bottom: 56px;
    }

    .section-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 28px;
        padding-bottom: 16px;
        border-bottom: 2px solid var(--gray-light);
    }

    .section-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--sky), var(--blue));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .section-header h2 {
        line-height: 1.2;
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--navy);
    }

    /* Coverage Cards */
    .coverage-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .coverage-card {
        background: var(--white);
        border: 1px solid var(--gray-light);
        border-radius: 16px;
        padding: 24px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .coverage-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, var(--sky), var(--accent));
    }

    .coverage-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(10, 31, 68, 0.12);
        border-color: var(--sky);
    }

    .coverage-emoji {
        font-size: 1.5rem;
        margin-bottom: 12px;
        display: block;
    }

    .coverage-card h3 {

        font-size: 1.1rem;
        color: var(--navy);
        margin-bottom: 10px;
    }

    .coverage-card p {
        color: var(--text-muted);
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Steps */
    .steps-wrap {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .step-card {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        background: var(--white);
        border: 1px solid var(--gray-light);
        border-radius: 16px;
        padding: 24px;
        transition: all 0.3s ease;
    }

    .step-card:hover {
        box-shadow: 0 8px 24px rgba(10, 31, 68, 0.1);
        border-color: var(--sky);
    }

    .step-num {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--sky), var(--blue));
        color: var(--white);
        font-size: 1rem;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step-body h3 {

        font-size: 1.15rem;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .step-body p {
        color: var(--text-muted);
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Why Choose */
    .why-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-card {
        background: var(--off-white);
        border-radius: 14px;
        padding: 22px;
        border: 1px solid var(--gray-light);
        transition: all 0.3s ease;
    }

    .why-card:hover {
        background: var(--white);
        box-shadow: 0 6px 20px rgba(10, 31, 68, 0.08);
    }

    .why-card h3 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .why-card p {
        font-size: 0.875rem;
        color: var(--text-muted);
        line-height: 1.5;
    }

    /* Benefits */
    .benefits-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .benefits-list li {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        background: var(--white);
        border: 1px solid var(--gray-light);
        border-radius: 12px;
        padding: 16px 18px;
        transition: all 0.3s ease;
    }

    .benefits-list li:hover {
        border-color: var(--sky);
        box-shadow: 0 4px 16px rgba(10, 31, 68, 0.08);
    }

    .benefit-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--sky), var(--blue));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.9rem;
    }

    .benefit-text strong {
        display: block;
        color: var(--navy);
        font-size: 0.95rem;
        margin-bottom: 3px;
    }

    .benefit-text span {
        color: var(--text-muted);
        font-size: 0.875rem;
        line-height: 1.5;
    }

    /* FAQs */
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .faq-item {
        background: var(--white);
        border: 1px solid var(--gray-light);
        border-radius: 14px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: var(--sky);
    }

    .faq-question {
        padding: 18px 22px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .faq-question h3 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--navy);
    }

    .faq-icon {
        color: var(--sky);
        flex-shrink: 0;
        transition: transform 0.3s;
    }

    .faq-answer {
        padding: 0 22px 18px;
        color: var(--text-muted);
        font-size: 0.9rem;
        line-height: 1.65;
        display: none;
    }

    .faq-item.active .faq-answer {
        display: block;
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }

    .faq-item.active {
        border-color: var(--sky);
        box-shadow: 0 4px 16px rgba(10, 31, 68, 0.08);
    }

    /* Reviews */
    .reviews-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .review-card {
        background: var(--white);
        border: 1px solid var(--gray-light);
        border-radius: 16px;
        padding: 24px;
        position: relative;
        transition: all 0.3s ease;
    }

    .review-card::before {
        content: '"';

        font-size: 5rem;
        color: var(--gray-light);
        position: absolute;
        top: 5px;
        left: 18px;
        line-height: 1;
    }

    .review-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(10, 31, 68, 0.12);
        border-color: var(--sky);
    }

    .review-stars {
        color: var(--accent);
        margin-bottom: 10px;
        font-size: 0.875rem;
    }

    .review-text {
        color: var(--text);
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 14px;
        position: relative;
        z-index: 1;
    }

    .review-author {
        font-weight: 700;
        color: var(--navy);
        font-size: 0.9rem;
    }

    .review-location {
        color: var(--text-muted);
        font-size: 0.8rem;
    }

    /* ===== FOOTER CTA ===== */
    .footer-cta {
        background: linear-gradient(135deg, var(--navy), #0E2D5E, var(--blue));
        padding: 80px 24px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .footer-cta::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232, 160, 32, 0.1), transparent 70%);
    }

    .footer-cta-inner {
        max-width: 1180px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .footer-cta h2 {
        line-height: 1.2;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 800;
        color: var(--white);
        margin-bottom: 16px;
    }

    .footer-cta p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 1.1rem;
        margin-bottom: 36px;
        line-height: 1.5;
    }

    .footer-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--accent), var(--accent-light));
        color: var(--navy);
        text-decoration: none;
        padding: 16px 36px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        box-shadow: 0 8px 28px rgba(232, 160, 32, 0.4);
        transition: all 0.3s ease;
    }

    .footer-cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(232, 160, 32, 0.55);
    }

    /* ===== FOOTER ===== */
    footer {
        background: #0A0F1A;
        color: rgba(255, 255, 255, 0.6);
        padding: 32px 24px;
        text-align: center;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-bottom: 20px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 0.875rem;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: var(--accent-light);
    }

    .disclaimer {
        font-size: 0.78rem;
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.5;
        opacity: 0.6;
    }

    /* Popups */
    .popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9999;
        overflow-y: auto;
        backdrop-filter: blur(4px);
    }

    .popup-content {
        background: var(--white);
        margin: 40px auto;
        padding: 40px;
        max-width: 760px;
        border-radius: 5px;
        position: relative;
    }

    .popup-content h2 {

        color: var(--navy);
        font-size: 1.8rem;
        margin-bottom: 24px;
    }

    .popup-content h3 {
        color: var(--navy);
        font-size: 1.1rem;
        margin: 20px 0 10px;
    }

    .popup-content p,
    .popup-content li {
        color: var(--text-muted);
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .popup-content ul {
        padding-left: 20px;
        margin: 10px 0;
    }

    .popup-close {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, var(--sky), var(--blue));
        color: var(--white);
        border: none;
        cursor: pointer;
        padding: 12px 24px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        margin-top: 24px;
        transition: all 0.3s ease;
    }

    .popup-close:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(46, 125, 214, 0.4);
    }

    /* Mobile image */
    .mobile-img {
        display: none;
        width: calc(100% - 48px);
        max-width: 400px;
        height: 220px;
        margin: 0 auto 32px;
        background: linear-gradient(135deg, var(--navy), var(--sky));
        border-radius: 20px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        color: rgba(255, 255, 255, 0.7);
    }

    .mobile-img i {
        font-size: 3rem;
    }

    .mobile-img span {
        font-weight: 600;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
        .hero-inner {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .hero-visual {
            display: none;
        }

        .main-wrap {
            grid-template-columns: 1fr;
        }

        .sidebar {
            display: none;
        }

        .mobile-img {
            display: flex;
        }
    }

    @media (max-width: 768px) {
        body {
            padding-top: 64px;
        }

        .need-help {
            display: none;
        }

        .trust-bar-inner {
            grid-template-columns: repeat(2, 1fr);
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }

        .coverage-grid {
            grid-template-columns: 1fr;
        }

        .why-grid {
            grid-template-columns: 1fr;
        }

        .reviews-grid {
            grid-template-columns: 1fr;
        }

        .hero-inner {
            padding: 60px 24px;
        }

        .hero h1 {
            text-align: center;
            font-size: 2.3rem;
        }

        html {
            scroll-behavior: smooth;
            font-size: 18px;
        }
    }

    @media (max-width: 480px) {
        .trust-bar-inner {
            grid-template-columns: 1fr 1fr;
        }

        .hero-btns {
            flex-direction: column;
        }

        .btn-primary,
        .btn-secondary {
            justify-content: center;
            text-align: center;
        }

        .footer-links {
            flex-wrap: wrap;
            gap: 12px;
        }
    }