body {
    margin: 0;
    font-family: 'Museo500-Regular', Helvetica, Arial, Lucida, sans-serif;   color: #2f2f2f;
    background-color: white;
    line-height: 1.6;
}
html {
    scroll-behavior: smooth;
}
body p, li{
    font-family: 'Museo500-Regular', Helvetica, Arial, sans-serif;
    color: #405665;
}
h1, h2, h3, h4 {
    font-family: 'Museo500-Regular', Helvetica, Arial, sans-serif;
    color: #405665;
    margin-top: 0;
}

a {
    color: #2aa9e0;
    text-decoration: none;
}
a:hover {
    color: #e22a25;
}

/* === HEADER === */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #405665;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.logo {
    height: 60px;
    width: auto;
}

.flag {
    width: 18px;
    height: auto;
    vertical-align: middle;
    margin-right: 2px;
    margin-bottom: 2px;
    border-radius: 2px;
}

nav a {
    margin: 0 4px;
    text-decoration: none;
    font-weight: 900;
    color: #405665;
    font-size: clamp(0.95rem, 1.1vw, 1.2rem);
    white-space: nowrap;
}

nav a:hover {
    color: rgba(64, 86, 101, 0.8);
}

.flag {
    width: 24px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
    border-radius: 2px;
}

@media (max-width: 900px) {

    .nav-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 20px 0;

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        border-top: 1px solid #eee;
        transition: all .3s ease;
    }

    nav.open {
        max-height: 500px;
        opacity: 1;
        pointer-events: auto;
    }

    nav a {
        margin: 8px 0;
        font-size: 18px;
    }
}

/* === HERO === */
.hero {
    width: 100%;
    background-color: #f3f8fe;
    padding: 140px 0 200px; /* TOP / BOTTOM increased */
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero p {
    margin-bottom: 1.8rem;
    font-size: 28px; /* instead of 30px */
}

.btn-primary {
    background: #f8c94d;
    border: none;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background: #f6b939;
    transform: translateY(-2px);
}

iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* === CARDS === */
.cards {
    padding: 100px 20px;
}

.card-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: -130px auto 0;   /* lift upward */
    position: relative;
    z-index: 5;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.card p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.card a {
    font-weight: 700;
}

.card a:hover {
}

/* === STATISTICS === */
.stats {
    background: #f8c94d;
    border-radius: 16px;
    width: 90%; /* full width */
    max-width: 90%; /* no limit */
    margin: 100px auto;
    padding: 80px 40px;
    text-align: center;
    box-shadow: none; /* no shadow */
}

.stats h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #405665;
}

.stats .numbers {
    display: flex;
    justify-content: center;
    gap: 150px;          /* smaller gap */
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.stats .block {
    text-align: center;
    width: 200px;       /* ✅ equal width for all tiles */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats .block strong {
    color: #e22a25;
    font-size: 4rem;
    font-weight: 900;
    display: block;
    margin-bottom: 12px;
}

.stats .block br + span,
.stats .block {
    font-size: 1.4rem;
    font-weight: 800;
    color: #405665;
}

.stats button {
    background: #2aa9e0;
    color: white;
    border: none;
    padding: 22px 60px;
    font-size: 1.6rem;
    font-weight: 800;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.stats button:hover {
    background: #2497ca;
    transform: translateY(-2px);
}

.stats p {
    margin-top: 40px;
    font-size: 1.1rem;
    color: #333;
}

/* === BENEFITS === */
.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
}

.benefits-text {
    max-width: 500px;
}

.benefits-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #405665;
    margin-bottom: 1rem;
}

.benefits-text p {
    font-size: 1.15rem;
    color: #405665;
    line-height: 1.6;
}

.benefit-cards .card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-weight: 800;
    font-size: 1.2rem;
    text-align: left;
    color: #405665;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-cards .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Emoji or icon styling */
.benefit-cards .card::before {
    content: attr(data-icon);
    font-size: 2.4rem;
    display: block;
    margin-bottom: 16px;
}

/* Responsive behavior */
@media (max-width: 900px) {
    .benefits {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefit-cards {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
}

@media (max-width: 600px) {
    .benefit-cards {
        grid-template-columns: 1fr;
    }

    .benefit-cards .card {
        width: 100%;
        text-align: center;
    }
}

/* === REVIEWS === */
.reviews {
    padding: 140px 40px;
}

.reviews h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #405665;
    text-align: left;      /* title left align */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.review-list {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);   /* 3 columns */
    gap: 40px;
    justify-items: stretch;                  /* uniform width */
}

.review {
    background: #ffffff;
    border-radius: 16px;
    padding: 60px 50px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    text-align: left;
    height: auto;                            /* uniform width, variable height */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.review img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: block;
    margin-bottom: 30px;
    object-fit: cover;
}

.review p {
    font-size: 1.15rem;
    color: #405665;
    margin-bottom: 32px;
    line-height: 1.7;
}

.review strong {
    color: #405665;
    font-size: 1.2rem;
    font-weight: 800;
}

.review small {
    font-size: 1rem;
    color: #666;
}

/* ✅ Tablet: 2 tiles per row */
@media (max-width: 1100px) {
    .review-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ✅ Mobile: 1 per row */
@media (max-width: 700px) {
    .review-list {
        grid-template-columns: 1fr;
    }

    .reviews h2 {
        text-align: center;
    }
}

/* === CONTACT === */
.contact {
    background: #fff;
    padding: 80px 0;
}

.contact-inner {
    max-width: 1100px;    /* wider */
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    padding: 0 24px;
}

.contact-heading {
    font-size: 3rem;
    font-weight: 900;
    color: #405665;
    margin-top: 40px;
}

/* Contact card align left properly */
.contact-cards {
    width: 420px;   /* matches desired layout */
}

.contact-text {
    text-align: left;
}

.contact h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    color: #405665;
}

.contact p {
    font-size: 1.1rem;
    color: #405665;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact button {
    background: #f8c94d;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 0 #2aa9e0;
}

.contact button:hover {
    background: #f6b939;
    transform: translateY(-2px);
}


.contact-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
    border-left: 10px solid #f8c94d;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card.blue {
    border-left-color: #2aa9e0;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.contact-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-info strong {
    font-weight: 800;
    font-size: 1.2rem;
    color: #405665;
}

.contact-info {
    color: #405665;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-text {
        text-align: center;
    }

    .contact-cards {
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 500px;
    }
}
/* === FOOTER === */
.footer {
    background-color: #ffffff;
    padding: 80px 40px;
    color: #2f2f2f;
    border-top: 1px solid #e5e5e5;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 260px;
    min-width: 200px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 1rem;
}

.footer-column h3 {
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    color: #2f2f2f;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #e22a25;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    display: inline-block;
    margin: 0 8px;
}

.social-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    vertical-align: middle;
    transition: opacity 0.2s ease;
}

.social-img:hover {
    opacity: 0.7;
}

.footer-socials .social-icon:hover span {
    opacity: 0.55;
}


.footer-copy {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    nav a {
        margin: 0 10px;
        font-size: 16px;
    }
}
/* === UNIFIED SECTION SPACING === */

.first-time-main{
    background-color: white;
}
/* === CONSISTENT H2 === */
.section-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #405665;
    margin-bottom: 1.5rem;
}

/* === SIMPLE HERO === */
.simple-hero {
    width: 100%;
    background: #f3f8fe;
    padding: 80px 0;
}

.container-70 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.simple-hero h1 {
    font-size: 3.2rem;
    margin-top: 2rem;
}


/* === INTRO BLOCK === */
.intro-block {
    composes: section-block;
}

.intro-block p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}


/* === TWO CTA BLOCKS (STACKED LIST) === */
.two-cta {
    composes: section-block;
    display: flex;
    flex-direction: column;
    gap: 48px;
    background: white;
    margin: 80px auto;
    padding: 0 24px;
    max-width: 70%;
}

.cta-item {
    text-align: left;
}

.cta-item h2 {
    margin-bottom: 20px;
}


/* === FAQ === */
/* === FAQ (restored look + accordion) === */
.faq-item {
    background: #e9f1fa;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

/* Open state shadow grows a bit */
.faq-item.open {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.faq-toggle {
    width: 100%;
    border: none;
    background: none;
    padding: 22px 24px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #405665;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Museo500-Regular', Helvetica, Arial, Lucida, sans-serif;
}

/* icon */
.faq-toggle::after {
    content: "+";
    font-size: 1.6rem;
}

.faq-item.open .faq-toggle::after {
    content: "–";
}

/* collapsible content */
.faq-content {
    max-height: 0;
    overflow: hidden;
    background: #e9f1fa;
    padding: 0 24px;
    transition: max-height 0.3s ease;
}

/* padding becomes visible only when open */
.faq-item.open .faq-content {
    padding: 16px 24px 24px;
}

.faq-content p,
.faq-content ul {
    margin: 8px 0;
}

.btn {
    background: #f8c94d;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 0 #2aa9e0;
    color:#405665;
}

.btn:hover {
    background: #f8c94d;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 0 #2aa9e0;
    color:black;
}

/* Base animation state */
.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

/* Fly from left */
.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

/* Fly from bottom */
.animate-bottom {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

/* Active state (applied on reveal) */
.animate.show,
.animate-left.show,
.animate-bottom.show {
    opacity: 1;
    transform: translate(0,0);
}

/* === DOWNLOADS PAGE FIX (FINAL) === */

/* --- Compact grid for download cards --- */
.benefit-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* ✅ Two equal columns */
    gap: 24px 32px;                         /* tighter spacing */
    max-width: 900px;
    margin: 40px auto 0;
    justify-content: center;
}


.benefit-cards a.download-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    font-weight: normal;
    font-size: 0.95rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    color: #405665;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-cards a.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.benefit-cards a.download-card .card-icon {
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
    color: #405665;
}

.benefit-cards a.download-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: #405665;
}

.benefit-cards a.download-card p {
    font-size: 0.9rem;
    line-height: 1.35;
    margin: 0;
}
/* --- PROMO VIDEO SECTION --- */
.promo-video-section {
    max-width: 900px;
    margin: 100px auto 0;
    padding: 0 24px;
    background: transparent;
}

.promo-video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;         /* ✅ two-column layout */
    gap: 32px;
    align-items: start;                     /* align top edges */
}

/* video player container */
.promo-video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: #e9f1fa;
    object-fit: cover;
}

/* Prevents enlarging when played */
.promo-video-player:fullscreen {
    max-width: 100vw;
}

/* --- Responsive adjustments --- */
@media (max-width: 900px) {
    .benefit-cards {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 20px;
    }

    .promo-video-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .promo-video-player {
        width: 100%;
        max-width: 100%;
    }

    .download-card {
        width: 100%;
    }
}

.card-icon {
    font-family: 'ETmodules';
    font-size: 36px;
    margin-bottom: 10px;
    color: #2f3e46;
}

/* === HERO & CONTENT CENTER ALIGNMENT FIX === */

/* Center the hero and its contents */
.simple-hero .container-70 {
    max-width: 1200px;       /* ✅ matches contact section width */
    margin: 0 auto;
    padding: 0 24px;
    text-align: left;       /* ✅ text stays left-aligned */
}

/* Center and unify section layout */
.section-block {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    background: white;
    text-align: left;       /* ✅ headings and paragraphs remain left */
}

/* Center the two-cta section (the buttons block) */
.two-cta {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    text-align: left;
}

/* Center FAQ container too */
.faq {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 24px;
}

/* Ensure buttons are aligned with content column */
.section-block .btn,
.two-cta .btn {
    display: inline-block;
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .simple-hero .container-70,
    .section-block,
    .two-cta,
    .faq {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* === MODERATOR CARDS (matches screenshot) === */
.moderator-cards {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 40px;
}

.moderator-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #405665;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.moderator-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

/* Icon */
.moderator-card .icon {
    font-family: 'ETmodules';
    font-size: 40px;
    color: #405665;
    margin-bottom: 8px;
    line-height: 1;
}

/* Title */
.moderator-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0;
    color: #405665;
}

/* Description */
.moderator-card p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #405665;
}

/* Responsive */
@media (max-width: 900px) {
    .moderator-cards {
        grid-template-columns: 1fr;
    }
}

.moderator-text{
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.moderator-text h2{
    font-size: 2.8rem;
    font-weight: 900;
    color: #405665;
    margin-top: 2rem;
}

.moderator{
    background-color: #f3f8fe;
    padding: 30px;
}

/* --- PLUS / MINUS QUIZ CARDS --- */
.quiz-plus-minus {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 24px;
}

.quiz-plus-minus .section-title {
    text-align: left;
    margin-bottom: 60px;
}

/* grid for two-column layout */
.qm-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* card base */
.qm-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
    border-left: 14px solid #ccc;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 42px rgba(0,0,0,0.12);
}

/* left border colors */
.qm-card.green {
    border-left-color: #7dd321;
}

.qm-card.red {
    border-left-color: #e22a25;
}
/* Optional: color the icon too */
.qm-card.green .qm-icon {
    color: #66b814;
}

.qm-card.red .qm-icon {
    color: #d92525;
}

/* ETModules icons */
.qm-icon {
    font-family: "ETmodules";
    font-size: 56px;
    line-height: 1;
    margin-bottom: 20px;
    color: #405665;
}

/* titles */
.qm-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #405665;
    margin: 0 0 20px;
}

/* list styling */
.qm-card ul {
    padding-left: 20px;
    margin: 0;
    color: #405665;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* responsive */
@media (max-width: 900px) {
    .qm-cards {
        grid-template-columns: 1fr;
    }
}

/* --- APPLY FORM SECTION --- */
.apply-form-section {
    background: #eef6fe;
    padding: 80px 0;
}

.apply-form-inner {
    max-width: 600px;      /* or 700px depending on your taste */
}

.apply-form-container {
    max-width: 1200px;   /* unified with other sections */
    margin: 0 auto;
    padding: 0 24px;     /* same left/right padding */
}

.apply-form-container h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #405665;
    margin-bottom: 40px;
}

/* inputs */
.apply-form-container input,
.apply-form-container textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #cdd8e0;
    border-radius: 6px;
    font-size: 1.1rem;
    margin-bottom: 14px;
    font-family: 'Museo500-Regular';
    color: #405665;
    background: white;
}

.apply-form-container textarea {
    resize: vertical;
    min-height: 150px;
}

/* --- File upload field --- */
.file-field {
    background: #fff7d1;
    border: 2px solid #f8c94d;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.file-btn {
    display: inline-block;
    background: #f8c94d;
    padding: 10px 16px;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    color: #405665;
}


#fileName {
    margin-left: 10px;
    font-size: 1rem;
    color: #405665;
}

.file-info {
    font-size: 0.9rem;
    margin-top: 12px;
    color: #405665;
}

/* checkbox */
.apply-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.apply-checkbox a {
    font-weight: 800;
    color: #405665;
}

/* submit button */
.apply-submit {
    background: #f8c94d;
    border: none;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 0 #2aa9e0;
    color: #405665;
    transition: background 0.2s ease, transform 0.2s ease;
}

.apply-submit:hover {
    background: #f6b939;
    transform: translateY(-2px);
}

/* success message */
.apply-success {
    background: #d1f7d6;
    border: 2px solid #49c45b;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    color: #2f7035;
    font-weight: 700;
}

.apply-agree {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: #405665;
    font-size: 1rem;
}

.apply-form-container input[type="checkbox"] {
    width: auto !important;
    height: auto;
}

.apply-agree a {
    font-weight: 800;
    color: #405665;
    text-decoration: underline;
}

.apply-agree a:hover {
    color: #e22a25;
}


.city-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.2rem;
    color: #405665;
    line-height: 1.7;
}

.city-list li {
    margin-bottom: 4px;
}


/* --- Slim 4-column cards (new layout) --- */
.cards-thin {
    padding: 0 20px; /* no top padding, overflow effect handled by margin */
}

/* lifted upward just like original cards */
.card-container-thin {
    max-width: 1200px;
    margin: -80px auto 60px;
    position: relative;
    z-index: 5;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* base card */
.card-thin {
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 34px 40px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
    color: #405665;
    text-align: left;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-thin:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

/* icon */
.card-thin .card-icon {
    font-family: 'ETmodules';
    font-size: 42px;
    color: #405665;
    margin-bottom: 16px;
}

/* title */
.card-thin h3 {
    font-size: 1.35rem;
    font-weight: 900;
    margin: 0 0 14px;
    color: #405665;
}

/* paragraph */
.card-thin p {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 20px;
    color: #405665;
    flex-grow: 1;
}

/* link */
.card-thin a {
    font-weight: 800;
    color: #2aa9e0;
}

.card-thin a:hover {
    color: #e22a25;
}

/* --- responsive --- */

/* 3 cards layout for tablets */
@media (max-width: 1050px) {
    .card-container-thin {
        grid-template-columns: repeat(3, 1fr);
        margin-top: -100px;  /* slightly less lift for smaller screens */
    }
}

/* 2 cards layout */
@media (max-width: 780px) {
    .card-container-thin {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -80px;
    }
}

/* full stacked on mobile */
@media (max-width: 520px) {
    .card-container-thin {
        grid-template-columns: 1fr;
        margin-top: -60px;
    }
}

/* red bar warning */
.edu-warning {
    color: #e22a25;
    font-weight: 900;
    margin-top: 30px;
    border-left: 6px solid #e22a25;
    padding-left: 14px;
    font-size: 1rem;
}

/* grid layout — 4 cards like screenshot */
.edu-card-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* each card */
.edu-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.edu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

/* icon */
.edu-card .card-icon {
    font-family: 'ETmodules';
    font-size: 42px;
    color: #405665;
    margin-bottom: 16px;
}

/* title */
.edu-card h3 {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: #405665;
}

/* description */
.edu-card p {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 20px;
    color: #405665;
    flex-grow: 1;
}

/* download link */
.edu-card a {
    font-weight: 800;
    color: #2aa9e0;
}

.edu-card a:hover {
    color: #e22a25;
}

/* responsive */
@media (max-width: 1050px) {
    .edu-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .edu-card-grid {
        grid-template-columns: 1fr;
    }
}
.downloads-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;

    max-width: 1200px;   /* ← FIX: same as section width */
    margin: 40px auto 0;
}

.downloads-cards a.download-card {
    padding: 12px 16px;
}

.downloads-cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 32px;

    max-width: 1200px;
    margin: 40px auto 0;
}


.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    margin-top: 40px;
}

/* Stack on mobile */
@media (max-width: 800px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.password-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

/* input styling */
.password-input {
    width: 100%;
    max-width: 320px;
    padding: 14px 18px;
    font-size: 1.1rem;
    border-radius: 14px;
    border: 2px solid #ddd;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.password-input::placeholder {
    color: #999;
}

/* focus state */
.password-input:focus {
    border-color: #f7c948; /* matches button tone */
    box-shadow: 0 0 0 3px rgba(247, 201, 72, 0.25);
}

/* error */
.password-error {
    color: #c0392b;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* Cookies */

.cookie-island {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    background: #ffffff;
    color: #35546b;
    padding: 14px 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    z-index: 9999;
    box-shadow:
        0 14px 40px rgba(53, 84, 107, 0.18),
        0 4px 10px rgba(53, 84, 107, 0.10);
}

.cookie-island span {
    white-space: nowrap;
}

.cookie-accept {
    background: #ffd24d;
    color: #1f3a4a;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 0 #e6b93c;
    transition: transform .15s ease, box-shadow .15s ease;
}

.cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 0 #e6b93c;
}

.cookie-accept:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 #e6b93c;
}

@media (max-width: 600px) {
    .cookie-island {
        bottom: 16px;
        padding: 14px 16px;
        font-size: 13px;
        max-width: calc(100% - 32px);
        border-radius: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        text-align: center;
    }

    .cookie-island span {
        white-space: normal;
        line-height: 1.35;
    }

    .cookie-accept {
        width: 100%;
        padding: 10px 0;
        font-size: 14px;
    }
}
