body {
    margin: 0;
    font-family: 'Museo500-Regular', Helvetica, Arial, Lucida, sans-serif;
    color: #405665;
    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: 'Museo900-Regular', Helvetica, Arial, sans-serif;
    color: #405665;
    margin-top: 0;
}

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

/* === 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 24px;
}

.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;
}

.contact-info a {
    color: #2aa9e0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #1a7aaa;
}

/* 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: #405665;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.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: #405665;
}

@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: 3rem;
    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;
    text-align: left;
    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;
    margin-top: 2rem;
}

.btn-header {
    background: #f8c94d;
    color: #405665;

    padding: 0.45rem 0.9rem;
    font-size: clamp(0.85rem, 0.95vw, 1rem);
    font-weight: 800;
    line-height: 1.2;

    border-radius: 999px;
    border: none;
    cursor: pointer;

    box-shadow: none;
    margin: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
}


.btn:hover {
    background: #edc047;
    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;
}

/* 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: 1200px;
    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 {
    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 {
}


.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 {
}

/* --- 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 {
}

/* 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;
    }
}


.hero-text-wrap {
    position: relative;
    z-index: 2;

    max-width: 520px;
    margin-right: -160px;
}

.hero-text {
    background: #f3f8fe;
    padding-right: 3rem;
    border-radius: 8px;
    margin-bottom: 40px;
    width: 100%;
}

.hero-media img {
    border-radius: 8px;
}

.hero-text h1 {
    font-size: 48px;
    font-family: 'Museo900-Regular', Helvetica, Arial, Lucida, sans-serif;
}

.hero-text p {
    font-weight: 400;
}

.benefits-text-h2{
    font-weight: 600;
    font-family: 'Museo900-Regular', Helvetica, Arial, Lucida, sans-serif;
}
.benefit-cards .card {
    padding: 1.25rem;
    display: flex;
    align-items: center;
}

.button-wrapper{
    margin-top: 1rem;
}

.benefits-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* === GALLERY SECTION === */

.gallery-section {
    padding: 6rem 0;
    background: #f3f8fe;
}

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

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.gallery-more {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

.gallery-more-link {
    display: inline-block;
    background: #f8c94d;
    color: #405665;
    font-family: 'Museo900-Regular', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    padding: 1rem 2.2rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 0 #1f8dbb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-more-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.9rem 0 #1f8dbb;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.35s ease, filter 0.35s ease;
}

/* hover affordance */
.gallery-item::after {
    content: "＋";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    color: white;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.gallery-item:hover::after {
    opacity: 1;
}

.reviews {
    background: #f3f8fe;
    padding: 6rem 0;
}

.swiper {
    width: 100%;
}


.review-shell {
    width: 100%;
    max-width: 22rem;     /* ← controls card width */
}

/* ARTICLE */
.review {
    width: 100%;                /* Swiper controls width */
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.08);
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* collapsed */
.review.is-collapsed {
    max-height: 8rem;
}

/* expanded */
.review.is-expanded {
    max-height: 40rem;
}

/* toggle */
.review-toggle {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2rem;

    display: grid;
    place-items: center;
}

.review-toggle img {
    max-width: 6rem;
    max-height: 6rem;
    transform: scale(2);    /* ← visually enlarges small logos */
    transform-origin: center;
    object-fit: contain;
}

/* content */
.review-content {
    padding: 0 2rem 2rem;
}

.review.is-collapsed .review-content {
    display: none;
}

.reviews-swiper {
    width: 100%;
}

.reviews-shell {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.reviews-arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2.5rem;
    color: #2aa9e0;
}

.reviews-arrow::before {
    content: '‹';
}

.reviews-arrow.next::before {
    content: '›';
}
.hero-cta-sticky {
    position: sticky;
}

.hero-cta-sticky.is-fixed {
    position: fixed;
    top: 9rem;
}

@media (max-width: 700px) {
    .review-shell {
        max-width: 50%;
    }

    .review-toggle img {
        max-width: 4rem;
        max-height: 4rem;
        transform: scale(2);    /* ← visually enlarges small logos */
        transform-origin: center;
        object-fit: contain;
    }
}
.hero-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-banner img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 1.25rem;
}

.apply-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.apply-form-illustration img {
    width: 100%;
    max-width: 28rem;
}

@media (max-width: 900px) {
    .apply-form-grid {
        grid-template-columns: 1fr;
    }

    .apply-form-illustration {
        display: none;
    }
}

@media (max-width: 768px) {

    .hero-media {
        order: 2;
    }

    .hero-media img {
        width: 100%;
        height: auto;
        border-radius: 0.75rem;
    }

    .hero-banner {
        order: 0;
        margin-bottom: 1.5rem;
    }

    .hero-banner img {
        width: 100%;
        height: auto;
        border-radius: 0.75rem;
    }


}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }

    .contact-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding: 0 1.25rem;
    }

    .contact-text {
        text-align: left;
        max-width: 100%;
    }

    .contact-text h2 {
        font-size: 2.2rem;
        line-height: 1.25;
    }

    .contact-text p {
        font-size: 1.1rem;
    }

    .contact-text .btn {
        display: inline-block;
        margin-top: 1.25rem;
    }

    .contact-cards {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-card {
        width: 100%;
        max-width: 26rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.75rem;
    }

    .contact-card img {
        width: 5.5rem;
        height: 5.5rem;
        margin-bottom: 1rem;
    }

    .contact-info {
        line-height: 1.6;
    }

    .contact-info strong {
        display: block;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 700px) {
    .reviews {
        padding: 4rem 0;
    }
    .reviews-swiper {
        overflow: visible;
    }

    .swiper-slide {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        box-sizing: border-box;
    }

    .review {
        overflow: hidden;
    }


    .review-shell {
        max-width: 90%;
    }

    .review {
        padding: 1.25rem;
    }

    .review-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .review-content strong {
        font-size: 1rem;
    }

    .review-content small {
        font-size: 0.85rem;
    }

}

@media (max-width: 768px) {
    .apply-form-section {
        padding: 4rem 0;
    }

    .apply-form-container {
        padding: 0 1.25rem;
    }

    .apply-form-grid {
        display: block;
    }

    .apply-form-inner {
        max-width: 90%;
    }

    .apply-form-inner h2 {
        font-size: 2.2rem;
        line-height: 1.25;
        margin-bottom: 1.5rem;
    }

    .apply-form-inner form {
        width: 100%;
    }

    .apply-form-container input,
    .apply-form-container textarea {
        font-size: 1rem;
        padding: 1rem;
    }

    .apply-form-container textarea {
        min-height: 9rem;
    }

    .apply-agree {
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .apply-submit {
        width: 100%;
        font-size: 1.1rem;
        padding: 1rem;
        margin-top: 1rem;
    }

    .apply-form-illustration {
        display: none;
    }
}

.moderator-card {
    cursor: pointer;
    overflow: hidden;
}

.moderator-card p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.moderator-card.is-expanded p {
    max-height: 20rem;
}

/* === BUILT HERO BANNER === */
.hero-built-banner {
    width: 100%;
    margin-bottom: 4rem;
    overflow: hidden;
}

.hero-built-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 3rem;

    background: #f8c94d; /* ← STRAPI color later */
    border-radius: 2rem;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3rem;
}

/* IMAGE */
.hero-built-image img {
    width: auto;
    object-fit: contain;
    display: block;
    height: 11rem;          /* slightly smaller */
    margin-bottom: -1.5rem;
}
.hero-built-text {
    display: flex;
    align-items: center;
    justify-content: center; /* horizontal */
    max-width: 36rem;   /* ← controls spread */
    margin: 0 auto;
    font-family: 'Museo900-Regular', serif;
}
/* TEXT */
.hero-built-text h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: #405665;
    margin: 0;
}

/* BUTTON */
.hero-built-btn {
    background: #2aa9e0;
    color: #ffffff;
    font-weight: 800;
    padding: 1rem 2.2rem;
    border-radius: 2rem;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0.4rem 0 #1f8dbb;
}

.hero-built-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.6rem 0 #1f8dbb;
    color: #ffffff;
}

/* === RESPONSIVE === */
@media (max-width: 700px) {
    .hero-built-inner {
        gap: clamp(0.6rem, 2vw, 3rem);
        padding: clamp(0.9rem, 3vw, 1.8rem)
        clamp(1rem, 4vw, 3rem);
    }

    .hero-built-image img {
        height: 7.5rem;
        margin-bottom: -0.6rem;
    }

    .hero-built-text {
        max-width: clamp(14rem, 40vw, 36rem);
    }

    .hero-built-text h2 {
        font-size: 1.4rem;
        line-height: 1.15;
    }

    .hero-built-btn {
        padding: clamp(0.45rem, 1.8vw, 0.9rem)
        clamp(0.9rem, 3.5vw, 2.2rem);
        font-size: clamp(0.7rem, 2.4vw, 1.1rem);
        border-radius: clamp(1rem, 4vw, 2rem);
        box-shadow: 0 clamp(0.2rem, 0.8vw, 0.4rem) 0 #1f8dbb;

    }
}


@media (max-width: 900px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    nav .btn-header {
        display: none;
    }

    .btn-header-mobile {
        display: inline-flex;
    }
}

.btn-header-mobile {
    display: none;
}

.moderator-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.moderator-toggle::after {
    content: "+";
    font-size: 1.6rem;
    font-weight: 900;
    color: #405665;
    margin-left: auto;
}

.moderator-card.is-expanded .moderator-toggle::after {
    content: "–";
}

/* content collapse – same idea as FAQ */
.moderator-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.moderator-card.is-expanded .moderator-content {
    max-height: 20rem;
}

.benefits {
    display: block;
    max-width: 100%;
    padding: 6rem 0;
}

.benefits-swiper {
    width: 100%;
}

.benefits .swiper-slide {
    display: flex;
    justify-content: center;
}

.benefits .card-horizontal {
    width: 100%;
    max-width: 22rem; /* same visual density as reviews */
}

.benefits-swiper {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits .card {
    padding: 1.25rem 1.5rem;
    gap: 0.75rem;
}

.benefits .card span {
    font-size: 0.95rem;
    line-height: 1.35;
}

.benefits .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
}

.benefits .card {
    width: 100%;
    max-width: 18rem;   /* ← key value */
}

.benefits-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.benefits-arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2.5rem;
    color: #2aa9e0;
}

.benefits-arrow::before {
    content: '‹';
}

.benefits-arrow.next::before {
    content: '›';
}

.benefits-shell {
    width: 80%;
    margin: 0 auto;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.benefit-shell {
    width: 100%;
    max-width: 18rem;   /* identical role to review-shell */
}

.benefit-cards {
    display: block;
}

.benefits .card {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.benefits .card span {
    font-size: 0.95rem;
    line-height: 1.3;
}

.benefits-arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2.5rem;
    color: #2aa9e0;
}

.benefits-arrow::before {
    content: '‹';
}

.benefits-arrow.next::before {
    content: '›';
}

.benefits .swiper-slide {
    width: 33%;
}

.benefits .card-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
}

.benefits .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Mobile: force single card */
@media (max-width: 1000px) {
    .benefits .swiper-slide {
        width: 100%;
    }
}

/* Benefit review modifications */
.benefit-review-shell {
    max-width: 20rem;  /* Slightly wider for better text display */
}

.benefit-review {
    padding: 2rem 1.5rem !important;
    text-align: center !important;
}

/* Fix icon display - remove circle cropping */
.benefit-toggle {
    background: none !important;
    border: none !important;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 auto 0rem auto !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;  /* Remove any border radius */
    overflow: visible !important;  /* Ensure nothing gets cropped */
}

.benefit-toggle img {
    width: 5rem !important;        /* Larger icon */
    height: 5rem !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    transform: scale(1) !important;
    max-width: 5rem !important;
    max-height: 5rem !important;
    display: block !important;
}

/* Header - always visible */
.benefit-header {
    font-size: 1.25rem;
    font-weight: 800;
    color: #405665;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    display: block !important;  /* Always visible */
}

/* Expandable text */
.benefit-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #405665;
    margin: 0;
    transition: all 0.3s ease;
}

/* Collapsed state - hide only the paragraph */
.benefit-review.is-collapsed .benefit-content p {
    display: none;
}

/* Expanded state - show paragraph with spacing */
.benefit-review.is-expanded .benefit-content p {
    display: block;
    margin-top: 0.75rem;
}

/* Override any review-specific styles that might interfere */
.benefit-review .review-toggle::after {
    display: none !important;  /* Remove any pseudo-elements */
}

.benefit-review {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

/* Add vertical padding to slider container */
.benefits .swiper {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Better mobile card sizing */
@media (max-width: 700px) {
    .benefit-review-shell {
        max-width: 16rem;  /* Smaller on mobile */
    }

    .benefit-toggle img {
        width: 4rem !important;
        height: 4rem !important;
        max-width: 4rem !important;
        max-height: 4rem !important;
    }

    .benefit-header {
        font-size: 1.1rem;
    }

    .benefit-content p {
        font-size: 0.9rem;
    }
}

/* Even smaller on very small phones */
@media (max-width: 480px) {
    .benefit-review-shell {
        max-width: 14rem;
    }

    .benefit-toggle img {
        width: 3.5rem !important;
        height: 3.5rem !important;
    }
}

/* Ensure cards don't clip on mobile */
@media (max-width: 700px) {
    .benefits-shell {
        width: 95%;  /* Slightly wider on mobile to give more room */
        gap: 0.5rem;
    }

    .swiper-slide {
        padding: 0 0.25rem;  /* Small padding to prevent edge clipping */
    }
}

@media (max-width: 600px) {

    .benefit-review-shell {
        max-width: 14rem;
    }

    .benefits .card {
        max-width: 14rem;
    }

}

@media (max-width: 500px) {

    .benefit-review-shell {
        max-width: 180px;
    }

    .benefits .card {
        max-width: 180px;
    }

    .reviews .swiper-slide {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        box-sizing: border-box;
    }

}
.hero-media {
    position: relative;
    width: 150%;              /* bigger than its grid column */
    max-width: none;          /* remove artificial cap */
    aspect-ratio: 750 / 451;
    margin-left: -40%;        /* push left for overlap */
}

.hero-rotating-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover; /* scales correctly */
    border-radius: 0.75rem;

    opacity: 1;
    transition: opacity 0.6s ease;
}

.hero-rotating-image.is-active {
    opacity: 1;
}

.hero-built-banner {
    position: relative;
}

.hero-banner-slide {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-banner-slide.is-active {
    opacity: 1;
    position: relative; /* keeps container height */
    pointer-events: auto;
}

@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 0 4rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text-wrap {
        margin-right: 0;
        max-width: 100%;
        order: 1;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.25;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-cta-sticky {
        text-align: center;
    }

    .hero-media {
        order: 2;
        position: relative;      /* container for absolute images */
        width: 100%;
        margin-left: 0;
        aspect-ratio: 750 / 451; /* restore ratio */
    }

    .hero-rotating-image {
        position: absolute;      /* keep stacking */
        inset: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center 35%; /* adjust focal point */
    }

}


@media (max-width: 500px) {
    .hero-built-banner {
        width: calc(100% - 2rem);
        margin: 0 1rem;
    }
}

@media (max-width: 500px) {

    .hero-built-inner {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 0.4rem 0.8rem;
        padding: 0.6rem 1rem;
        align-items: center;
    }

    /* IMAGE spans both rows */
    .hero-built-image {
        grid-row: 1 / span 2;
        display: flex;
        align-items: center;
        margin-bottom: -1rem;
    }

    .hero-built-image img {
        height: 5.5rem;
        margin: 0;
    }

    /* TEXT */
    .hero-built-text {
        margin: 0;
    }

    .hero-built-text h2 {
        margin: 0;
        font-size: 1rem;
        line-height: 1.1;
    }

    /* BUTTON */
    .hero-built-cta {
        margin: 0;
    }

    .hero-built-btn {
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
    }
}


.moderator-card .icon {
    font-family: initial;   /* remove ETmodules */
    font-size: 0;
    margin-bottom: 0.5rem;
}

.moderator-card .icon img {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
    display: block;
}

.btn-product-small {
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    border-radius: 999px;
    box-shadow: 0 0.35rem 0 #2aa9e0;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.btn-product-small:hover {
    background: #edc047;
    transform: translateY(-2px);

    /* lock dimensions so it doesn’t grow */
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    border-radius: 999px;
    box-shadow: 0 0.35rem 0 #2aa9e0;
}

.apply-error {
    background: #ffe3e3;
    border: 2px solid #e22a25;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
    color: #b71c1c;
    font-weight: 700;
}

.hero--championship {
    background-image: url('/images/StrapiImages/background_final.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-champions {
    margin-top: 2rem;
}

.hero-champions-title {
    font-weight: 600;
    font-size: 1.125rem;
}

.hero-champions-subtitle {
    margin-top: 0.25rem;
    font-size: 1rem;
    opacity: 0.8;
}


/* === HERO LOGO === */

.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo img {
    height: 2.5rem;
    width: auto;
    display: block;
}

/* === HERO CHAMPIONS === */

.hero-champions {
    margin-top: 2rem;
}

.hero-champions-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-medal {
    height: 2.75rem;
    width: auto;
}

.hero-champions-title {
    font-weight: 800;
    font-size: 1.125rem;
}

.hero-champions-subtitle {
    font-size: 1rem;
    opacity: 0.85;
}

/* ============================= */
/* EVENT INTRO SECTION */
/* ============================= */

.event-intro {
    position: relative;
    padding: 8rem 0 6rem;
    background: #ffffff;
}

/* === COUNTDOWN BOX === */

.event-countdown-box {
    max-width: 75rem;
    margin: -15rem auto 4rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.08);
    text-align: center;
}

.event-countdown-box h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.event-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.cd-block {
    text-align: center;
}

.cd-block span {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
}

.cd-block small {
    font-size: 0.95rem;
}

.cd-sep {
    font-size: 2.5rem;
    font-weight: 700;
}

.event-live {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 2.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f8c94d, #f6b939);
    color: #1c1c1c;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 0.75rem 1.75rem rgba(246, 185, 57, 0.35);
}

.event-live[hidden],
.event-countdown[hidden] {
    display: none;
}

.event-live-dot {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    background: #34c759;
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.7);
    animation: event-live-pulse 1.6s ease-out infinite;
}

@keyframes event-live-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.7); }
    70%  { box-shadow: 0 0 0 0.9rem rgba(52, 199, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
}

/* === GRID === */

.event-intro-inner {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 3rem;

    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

/* === LEFT LIST === */

.event-info-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.event-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.event-info-item img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.event-info-item strong {
    display: block;
    margin-bottom: 0.5rem;
}

.event-info-item p {
    margin: 0;
    line-height: 1.6;
}

/* placeholder icon */
.event-icon-placeholder {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 0.15rem solid #405665;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* === ABOUT === */

.event-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.event-about p {
    line-height: 1.8;
}

/* === RESPONSIVE === */

@media (max-width: 900px) {
    .event-intro-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .event-countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cd-block span {
        font-size: 2.5rem;
    }
}

/* === PROGRAM SECTION (refined) === */

.program {
    background: #f3f8fe; /* adjust if needed */
    padding: 10rem 0 6rem;
    position: relative;
    overflow: visible; /* allow image to overflow upward */
}

.program-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: left;
}

/* Image aligned with left content column */
.program-image {
    position: relative;
}

.program-image img {
    width: 100%;
    max-width: 36rem;      /* bigger */
    height: auto;
    margin-top: -14rem;    /* stronger overflow upward */
    display: block;
}

/* Content */
.program-content {
    max-width: 42rem;
    margin-top: 2.5rem;
}

.program-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #405665;
    margin-bottom: 0.75rem;
}

/* More compact paragraph */
.program-content p {
    font-size: 1.05rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin: 0;
    max-width: 50%;
}

@media (max-width: 768px) {
    .program {
        padding: 7rem 0 4rem;
    }

    .program-image img {
        max-width: 24rem;
        margin-top: -8rem;
    }

    .program-content h2 {
        font-size: 2.2rem;
    }
}

/* === PROGRAM SCHEDULE (dynamic days + cards) === */

.program-content {
    max-width: 100%;
}

.program-schedule {
    display: grid;
    grid-template-columns: 3fr 2fr;
    column-gap: 3rem;
    row-gap: 0;
    margin-top: 1.5rem;
    align-items: start;
}

.program-day-block {
    padding-bottom: 3.5rem;
}

.program-day-title {
    font-size: 2rem;
    font-weight: 900;
    color: #405665;
    margin-bottom: 0.6rem;
}

.program-day-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #405665;
}

.program-card-slot {
    padding-bottom: 3.5rem;
}

.program-cards-label {
    font-size: 1rem;
    font-family: 'Museo900-Regular', Helvetica, Arial, sans-serif;
    font-weight: 900;
    color: #405665;
    border-left: 4px solid #f8c94d;
    border-radius: 3px;
    padding-left: 0.75rem;
    margin-bottom: 0.75rem;
    margin-top: 0.55rem;
}

.program-karta {
    background: #ffffff;
    border-radius: 0.9rem;
    border-left: 5px solid #f8c94d;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    line-height: 1.65;
    color: #405665;
}

.program-karta p {
    margin: 0;
}

.program-karta a {
    color: #2aa9e0;
    text-decoration: none;
    transition: color 0.25s ease;
}

.program-karta a:hover {
    color: #1a7aaa;
}

.program-schedule-spacer {
    /* placeholder left cell for the disclaimer row */
}

.program-disclaimer {
    font-size: 0.82rem;
    color: #405665;
    opacity: 0.55;
    text-align: right;
    margin: 0;
}

@media (max-width: 900px) {
    .program-schedule {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .program-card-slot {
        padding-bottom: 2rem;
    }

    .program-day-block {
        padding-bottom: 1rem;
    }

    .program-schedule-spacer {
        display: none;
    }

    .program-disclaimer {
        text-align: left;
    }
}

/* === ACCOMMODATION SECTION === */

.accommodation {
    max-width: 100%;
    margin: 0 auto;
    padding: 6rem 0;
}

.accommodation-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.accommodation-row.reverse {
    direction: rtl;
}

.accommodation-row.reverse > * {
    direction: ltr;
}

.accommodation-image img {
    width: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0.75rem 2rem rgba(0,0,0,0.12);
    display: block;
}

.accommodation-text {
    max-width: 100%;
}

.accommodation-text h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #405665;
    margin-bottom: 1rem;
}

.accommodation-text p {
    font-size: 1.05rem;
    line-height: 1.45;
    color: #405665;
    margin: 0;
}

@media (max-width: 900px) {

    .accommodation-row,
    .accommodation-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }

    .accommodation {
        padding: 4rem 20px;
    }

    .accommodation-text {
        max-width: 100%;
    }
}

/* === TEAMS SECTION (separate from .faq) === */

.teams-section {
    background: white;     /* same as faq */
    padding: 0 0 8rem;
}

/* Highlight card */
.teams-highlight {

    max-width: 80%;       /* wider than 1200 */
    width: 100%;
    margin: 0 auto;

    padding: 5rem 2rem;

    border-radius: 1.25rem;
    box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.12);

    background-color: #f8c94d;
    background-image: url('/images/StrapiImages/background_final.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
}

.teams-highlight-inner {
    max-width: 1200px; /* keeps content visually aligned */
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
}

/* Number */
.teams-number {
    font-size: 5.5rem;
    font-weight: 900;
    color: #e22a25;
    line-height: 1;
}

/* Label */
.teams-label {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #405665;
}

/* Button */
.teams-btn {
    background: #2aa9e0;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.5rem;

    padding: 1.2rem 3rem;
    border-radius: 0.75rem;
    width: 18rem;
    text-align: center;

    text-decoration: none;

    box-shadow: 0 0.6rem 0 #1f8dbb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.teams-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 0 #1f8dbb;
}

.teams-btn--outline {
    background: transparent;
    color: #2aa9e0;
    border: 3px solid #2aa9e0;
    box-shadow: none;
}

.teams-btn--outline:hover {
    background: transparent;
    box-shadow: none;
    color: #2aa9e0;
    transform: translateY(-4px);
}

.teams-btns {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {

    .teams-highlight {
        width: 95%;
        padding: 3rem 1.5rem;
    }

    .teams-number {
        font-size: 3.5rem;
    }

    .teams-label {
        font-size: 1.2rem;
    }

    .teams-btn {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

/* === GENERAL PARTNER SECTION === */

.general-partner-section {
    background: #e9f1fa;
    padding: 6rem 0;
}

.general-partner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.general-partner-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #405665;
    margin-bottom: 3rem;
}

.general-partner-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
}

.general-partner-logo img {
    width: 14rem;
    height: auto;
    display: block;
}

.general-partner-text {
    max-width: 36rem;
}

.general-partner-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #405665;
    margin: 0;
}

/* === PARTNERS SECTION === */

.partners-section {
    background: white;
    padding: 6rem 0 8rem;
}

.partners-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.partners-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #405665;
    margin-bottom: 1.5rem;
}

.partners-description {
    max-width: 40rem;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: #405665;
}

/* === PARTNERS GRID — 5 per row === */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    align-items: center;
}

/* link wrapper */
.partners-grid a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* logos */
.partners-grid img {
    max-width: 8rem;   /* smaller so 5 fit comfortably */
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.partners-grid img:hover {
    transform: scale(1.05);
}
@media (max-width: 900px) {

    .general-partner-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .general-partner-logo {
        display: flex;
        justify-content: center;
    }

    .general-partner-text {
        max-width: 100%;
    }
}

/* === PARTNERS CTA === */

.partners-cta {
    margin-top: 6rem;
    padding: 3rem 3rem;

    background: #f8c94d;
    border-radius: 1.5rem;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    max-width: 100%;
}

.partners-cta h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #405665;
    margin: 0;
}

.partners-cta p {
    max-width: 40rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #405665;
    margin: 0;
}

.partners-cta-btn {
    align-self: flex-start;

    background: #2aa9e0;
    color: #ffffff;
    font-weight: 800;

    padding: 1rem 2rem;
    border-radius: 0.75rem;

    text-decoration: none;

    box-shadow: 0 0.5rem 0 #1f8dbb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partners-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.8rem 0 #1f8dbb;
}

@media (max-width: 768px) {

    .partners-cta {
        padding: 2rem;
    }

    .partners-cta h3 {
        font-size: 1.4rem;
    }

    .partners-cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* === CONTACT SECTION (REDESIGNED) === */

.contact {
    background: #e9f1fa;
    padding: 6rem 0;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: block;
}

.contact-heading {
    font-size: 3rem;
    font-weight: 900;
    color: #405665;
    margin-top: 0;
    margin-bottom: 5em;
}

/* Two column layout */
.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Column label */
.contact-column-label {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
    position: relative;
}

.contact-column-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 4px;
    height: 1.2rem;
    border-radius: 4px;
}

.contact-column-label.blue::before {
    background: #2aa9e0;
}

.contact-column-label.yellow::before {
    background: #f8c94d;
}

/* Cards */
.contact-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-left: 6px solid;
    box-shadow: 0 0.6rem 1.5rem rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
}

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

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

.contact-info a {
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .contact-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    /* === HERO – korekce paddingu a překryvu s countdown === */
    .hero {
        padding-bottom: 100px; /* sníženo z 200px, aby nezasahoval do countdown */
    }

    .event-countdown-box {
        margin-top: -8rem;      /* méně negativní, aby nepřesahoval do hero */
    }

    /* Zaručí, že hero-media končí tam, kde má, a nepřetéká */
    .hero-media {
        margin-bottom: 0;
        aspect-ratio: 750 / 451;
        width: 100%;
        margin-left: 0;
        order: 2;
    }

    .hero-rotating-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 35%;
    }

    /* === PARTNER CTA BUTTON – zrušení plné šířky === */
    .partners-cta-btn {
        width: auto;            /* místo původního width: 100% */
        display: inline-block;  /* zajistí přirozenou šířku podle obsahu */
        text-align: center;     /* zachová zarovnání textu na střed */
        align-self: center;     /* na menších displejích pěkně vycentruje */
    }
}


@media (max-width: 768px) {

    .hero-inner {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-text-wrap {
        order: 1;
    }

    .hero-inner > div:last-child {
        order: 2;
    }

}

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

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-column-title {
    font-weight: 800;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 4px solid;
}

.contact-column-title.blue {
    border-color: #2aa9e0;
}

.contact-column-title.orange {
    border-color: #f8c94d;
}

.contact-card.blue {
    border-left: 10px solid #2aa9e0;
}

.contact-card.orange {
    border-left: 10px solid #f8c94d;
}

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

@media (max-width: 768px) {

    .contact-heading {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
        text-align: left;
    }

    .contact-columns {
        padding: 0 1rem;
        gap: 1.2rem;
    }

    .contact-column-title {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
        padding-left: 0.5rem;
        border-left-width: 3px;
        text-align: left;
    }

    .contact-card {
        display: flex;
        flex-direction: row;
        align-items: center;

        width: 80%;
        max-width: 18rem;      /* prevents getting too large on bigger phones */
        margin: 0 0 0.8rem 0;  /* left aligned */

        gap: 0.8rem;
        padding: 0.7rem 0.8rem;

        border-left-width: 6px;
        border-radius: 0.75rem;
    }

    .contact-card img {
        width: 2.8rem;
        height: 2.8rem;
        flex-shrink: 0;
        margin: 0;
    }

    .contact-info {
        text-align: left;
        line-height: 1.3;
    }

    .contact-info strong {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
        display: block;
    }

    .contact-info a {
        font-size: 0.82rem;
        display: block;
    }
}
