:root {
    --red: #cc1e1e;
    --red-dark: #9e0f0f;
    --red-glow: rgba(204, 30, 30, 0.35);
    --black: #3a3d45;
    --dark: #080808;
    --dark2: #484c56;
    --dark3: #575c68;
    --gray: #b4bac6;
    --light: #f0ede8;
    --off-white: #f5f6f8;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--off-white);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 80px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(204, 30, 30, 0.3);
    transition: background 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(204, 30, 30, 0.6));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a,
.nav-links>li>.nav-parent {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1.1rem;
    color: var(--off-white);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-links>li>a:hover,
.nav-links>li:hover>.nav-parent {
    color: var(--red);
    border-bottom-color: var(--red);
}

.nav-links>li>a.active,
.dropdown li a.active {
    color: var(--red);
    border-bottom-color: var(--red);
}

.nav-links>li>.nav-parent i {
    font-size: 0.65rem;
    transition: transform 0.2s;
}

.nav-links>li:hover>.nav-parent i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    min-width: 220px;
    background: var(--dark2);
    border: 1px solid rgba(204, 30, 30, 0.4);
    border-top: 2px solid var(--red);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s;
    list-style: none;
}

.nav-links>li:hover .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1.2rem;
    color: var(--off-white);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-left: 3px solid transparent;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.dropdown li a:hover {
    background: rgba(204, 30, 30, 0.12);
    border-left-color: var(--red);
    color: var(--red);
}

.dropdown li a.active {
    background: rgba(204, 30, 30, 0.12);
    border-left-color: var(--red);
    color: var(--red);
}

.dropdown li a i {
    width: 18px;
    color: var(--red);
    font-size: 0.85rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 1.5rem !important;
    background: var(--red) !important;
    color: #fff !important;
    border: none !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    text-decoration: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
    background: var(--red-dark) !important;
    box-shadow: 0 0 20px var(--red-glow) !important;
    border: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--off-white);
    transition: all 0.3s;
}

/* ─── PAGE HERO ─────────────────────────────────────────── */
.page-hero {
    position: relative;
    padding: 10rem 3rem 5rem;
    background: var(--dark);
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 50% 60%, rgba(204, 30, 30, 0.08) 0%, transparent 70%),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.012) 2px,
            rgba(255, 255, 255, 0.012) 4px);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .section-eyebrow {
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.page-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.35s forwards;
}

.page-hero-title .accent {
    color: var(--red);
}

.page-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

/* ─── SECTION SHARED ─────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 1rem;
    background: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--red);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 0.03em;
    color: #fff;
    line-height: 1;
}

.section-title .accent {
    color: var(--red);
}

.section-desc {
    margin-top: 1.2rem;
    font-size: 1rem;
    color: var(--gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
}

/* ─── COURSE CATALOG ─────────────────────────────────────── */
.catalog-section {
    padding: 7rem 3rem;
    background: var(--black);
}

.catalog-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.cat-card {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--red);
    transition: height 0.3s;
    z-index: 2;
}

.cat-card:hover {
    border-color: rgba(204, 30, 30, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cat-card:hover::before {
    height: 100%;
}

.cat-card-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.cat-card:hover .cat-card-img img {
    transform: scale(1.08);
}

.level-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.3rem 0.8rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
}

.level-badge.beginner {
    background: rgba(46, 125, 50, 0.85);
}

.level-badge.intermediate {
    background: rgba(204, 150, 30, 0.85);
}

.level-badge.advanced {
    background: rgba(204, 30, 30, 0.85);
}

.cat-card-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex-grow: 1;
}

.cat-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.cat-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

.cat-card-meta {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.25rem;
}

.cat-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
}

.cat-card-meta span i {
    color: var(--red);
    font-size: 0.8rem;
}

.cat-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding: 0.6rem 1.4rem;
    background: #fff;
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    transition: gap 0.2s, background 0.3s, color 0.3s;
}

.cat-card:hover .cat-card-link {
    gap: 10px;
    background: var(--red);
    color: #fff;
}

/* ─── WHAT TO EXPECT ─────────────────────────────────────── */
.expect-section {
    padding: 7rem 3rem;
    background: var(--dark2);
    border-top: 1px solid rgba(204, 30, 30, 0.25);
    border-bottom: 1px solid rgba(204, 30, 30, 0.25);
}

.expect-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.expect-card {
    padding: 2.5rem 2rem;
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.expect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.expect-card:hover {
    border-color: rgba(204, 30, 30, 0.4);
    transform: translateY(-6px);
}

.expect-card:hover::before {
    transform: scaleX(1);
}

.expect-num {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
}

.expect-icon {
    width: 72px;
    height: 72px;
    background: rgba(204, 30, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--red);
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(204, 30, 30, 0.25);
    transition: background 0.3s, border-color 0.3s;
}

.expect-card:hover .expect-icon {
    background: rgba(204, 30, 30, 0.2);
    border-color: var(--red);
}

.expect-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.75rem;
}

.expect-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

/* ─── WHO IT'S FOR / LEVELS ──────────────────────────────── */
.levels-section {
    padding: 7rem 3rem;
    background: var(--black);
}

.levels-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.level-card {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 2rem;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.level-card:hover {
    border-color: rgba(204, 30, 30, 0.4);
    transform: translateY(-6px);
}

.level-card.featured {
    border-color: rgba(204, 30, 30, 0.5);
    box-shadow: 0 0 30px rgba(204, 30, 30, 0.1);
}

.level-featured-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--red);
    color: #fff;
    padding: 0.35rem 1.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
}

.level-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.level-icon.beginner-bg {
    background: rgba(46, 125, 50, 0.2);
    border-color: rgba(46, 125, 50, 0.4);
    color: #4caf50;
}

.level-icon.intermediate-bg {
    background: rgba(204, 150, 30, 0.2);
    border-color: rgba(204, 150, 30, 0.4);
    color: #cc961e;
}

.level-icon.advanced-bg {
    background: rgba(204, 30, 30, 0.2);
    border-color: rgba(204, 30, 30, 0.4);
    color: var(--red);
}

.level-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.75rem;
}

.level-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.level-courses {
    list-style: none;
}

.level-courses li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 0;
    color: var(--off-white);
    font-size: 0.88rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.level-courses li:last-child {
    border-bottom: none;
}

.level-courses li i {
    font-size: 0.6rem;
    color: var(--red);
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section {
    padding: 7rem 3rem;
    background: var(--dark2);
    border-top: 1px solid rgba(204, 30, 30, 0.25);
    border-bottom: 1px solid rgba(204, 30, 30, 0.25);
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-q span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--off-white);
    transition: color 0.2s;
}

.faq-q i {
    color: var(--red);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-q:hover span {
    color: var(--red);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-a p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.8;
    font-weight: 300;
}

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
    background: var(--red);
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 20px,
            rgba(0, 0, 0, 0.05) 20px,
            rgba(0, 0, 0, 0.05) 40px);
}

.cta-banner-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 300;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    background: #fff;
    color: var(--red);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: opacity 0.2s;
    white-space: nowrap;
}

.btn-white:hover {
    opacity: 0.9;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(204, 30, 30, 0.3);
    padding: 4rem 3rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 140px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 6px rgba(204, 30, 30, 0.4));
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-icon:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: var(--red);
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.footer-bottom a {
    color: var(--red);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    nav {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--dark2);
        padding: 1rem 0;
        gap: 0;
        border-bottom: 2px solid var(--red);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links>li>a,
    .nav-links>li>.nav-parent {
        padding: 0.9rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        border: none;
        border-left: 3px solid var(--red);
        margin-left: 1.5rem;
        display: none;
    }

    .nav-links>li.open .dropdown {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        clip-path: none !important;
        margin: 0.5rem 1.5rem;
    }

    .page-hero {
        padding: 8rem 1.5rem 3.5rem;
    }

    .catalog-section {
        padding: 5rem 1.5rem;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .expect-section {
        padding: 5rem 1.5rem;
    }

    .expect-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .levels-section {
        padding: 5rem 1.5rem;
    }

    .levels-grid {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 5rem 1.5rem;
    }

    .cta-banner {
        padding: 4rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    footer {
        padding: 3rem 1.5rem 2rem;
    }
}

@media (max-width: 520px) {
    .expect-grid {
        grid-template-columns: 1fr;
    }
}
