:root {
    --brand-primary: #2f6dff;
    --brand-secondary: #1f3fb8;
    --brand-accent: #f4b400;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --surface: #ffffff;
    --surface-muted: #f5f7fb;
    --border: rgba(148, 163, 184, 0.18);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-primary);
    background: #0b1220; /* Match footer color for overscroll area */
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    border-bottom: none;
}

a:hover {
    text-decoration: none;
    border-bottom: none;
}

#page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 40%, #ffffff 100%);
}

/* Ensure no white gap below footer on overscroll */
body, html { background-color: #0b1220; }

/* Carousel Image Container - Fixed size based on largest image */
.carousel-image-container {
    width: 100%;
    height: 400px; /* Fixed height based on largest image */
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.carousel-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel container positioning */
.carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carousel controls styling */
.carousel-control-prev,
.carousel-control-next {
    background: none !important;
    border: none !important;
    color: #333 !important;
    cursor: pointer;
    font-size: 48px;
    font-weight: bold;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    color: #000 !important;
    background: none !important;
    transform: translateY(-50%) scale(1.2);
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 0 !important;
    height: 0 !important;
    border: none !important;
    background: none !important;
    font-size: 48px;
    font-weight: bold;
}

.carousel-control-prev-icon::before {
    content: "‹";
    color: #333 !important;
    line-height: 1;
}

.carousel-control-next-icon::before {
    content: "›";
    color: #333 !important;
    line-height: 1;
}

main {
    flex: 1 0 auto;
}

.container-custom {
    width: min(1150px, 92vw);
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--border);
}

.site-header .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.08rem;
    color: rgba(15, 23, 42, 0.9);
    letter-spacing: 0.01em;
    text-decoration: none;
    border-bottom: none;
    max-width: 25%;
    overflow: hidden;
}

.brand img {
    max-height: 56px;
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.05rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.32rem 0.8rem;
    border-radius: 999px;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.78);
    background: transparent;
    border: 1px solid transparent;
    border-bottom: none;
    transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.nav-links a:hover {
    color: var(--brand-primary);
    background-color: rgba(47, 109, 255, 0.12);
    border-color: rgba(47, 109, 255, 0.28);
    box-shadow: 0 10px 18px -16px rgba(47, 109, 255, 0.65);
}

.nav-links a.active {
    color: var(--brand-primary);
    background-color: rgba(47, 109, 255, 0.18);
    border-color: rgba(47, 109, 255, 0.35);
    box-shadow: 0 12px 20px -15px rgba(47, 109, 255, 0.55);
    font-weight: 600;
}

.donate-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.05rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    font-weight: 600;
    box-shadow: 0 12px 24px -18px rgba(47, 109, 255, 0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.donate-button:hover,
.donate-button.active {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px -16px rgba(47, 109, 255, 0.65);
}

/* Mobile nav */
.nav-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 1.1rem;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

/* Ensure legacy title bar never shows */
#titleBar { display: none !important; }

/* Language switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 2px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.7);
}

.lang-switch a {
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.78);
    border: 1px solid transparent;
}

.lang-switch a.active {
    color: var(--brand-primary);
    background: rgba(47, 109, 255, 0.12);
    border-color: rgba(47, 109, 255, 0.35);
}

/* Carousel */
.carousel-section {
    padding: clamp(2.6rem, 5vw, 3.6rem) 0 clamp(1.4rem, 4.5vw, 2.2rem);
}

.carousel-shell {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 60px -44px rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #0b1220;
}

.carousel-shell .carousel-inner,
.carousel-shell .carousel-item {
    height: auto;
}

.carousel-shell .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background-color: #0b1220;
}

.carousel-shell .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.65);
    border: 0;
}

.carousel-shell .carousel-indicators .active {
    background-color: #ffffff;
}

.carousel-shell .carousel-control-prev,
.carousel-shell .carousel-control-next {
    width: 7%;
    max-width: 60px;
    border: none;
}

.carousel-shell .carousel-control-prev-icon,
.carousel-shell .carousel-control-next-icon {
    filter: drop-shadow(0 8px 12px rgba(15, 23, 42, 0.45));
}

/* Hero */
.hero {
    position: relative;
    min-height: clamp(220px, 32vh, 380px);
    display: flex;
    align-items: center;
    padding: clamp(1.25rem, 4vw, 2rem) 0 clamp(1rem, 3.5vw, 1.75rem);
    overflow: hidden;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(31, 63, 184, 0.85), rgba(47, 109, 255, 0.65));
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: var(--hero-image-opacity, 0.35);
    mix-blend-mode: var(--hero-image-blend, screen);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem;
}

.hero-text {
    max-width: 620px;
}

.hero-text h1,
.hero-text h2 {
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.hero-text p {
    font-size: 1.06rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.3rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--brand-primary);
    border-radius: 16px;
    padding: 0.75rem 1.4rem;
    font-weight: 600;
    box-shadow: 0 20px 36px -20px rgba(15, 23, 42, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 40px -22px rgba(15, 23, 42, 0.65);
}

.hero-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    border-radius: 16px;
    padding: 0.75rem 1.4rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: background 0.2s ease;
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    padding: 1.2rem 1.4rem;
    backdrop-filter: blur(10px);
}

.stat-card strong {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 0.35rem;
}

/* Generic sections */
.section {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-heading {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.section-heading span {
    display: inline-block;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin: 0.75rem 0 1rem;
}

.section-heading p {
    color: var(--text-secondary);
    margin: 0 auto;
}

/* Program cards */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.program-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.8rem;
    border-radius: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px -42px rgba(15, 23, 42, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px -48px rgba(15, 23, 42, 0.8);
}

.program-card .program-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(47, 109, 255, 0.1), rgba(47, 109, 255, 0.2));
    color: var(--brand-primary);
    font-size: 1.4rem;
}

.program-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
}

.program-card h3 {
    margin: 0;
    font-size: 1.25rem;
}

.program-card p {
    margin: 0;
    color: var(--text-secondary);
}

.program-card a {
    font-weight: 600;
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

/* Highlights */
.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.insight-card {
    background: radial-gradient(circle at top left, rgba(47, 109, 255, 0.12), rgba(47, 109, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.1rem 1.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.insight-card i {
    font-size: 1.5rem;
    color: var(--brand-primary);
}

.insight-card h3 {
    margin: 0;
}

.insight-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Supporters */
.supporters {
    background: var(--surface);
    border-radius: 26px;
    padding: 3rem 2.5rem;
    box-shadow: 0 22px 70px -46px rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border);
}

/* Supporters heading smaller */
.supporters .section-heading h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.8rem);
}

.supporter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: center;
}

.supporter-card {
    background: var(--surface-muted);
    border-radius: 18px;
    padding: 1.5rem;
    display: grid;
    place-items: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(25%);
    border: 1px solid rgba(148, 163, 184, 0.25);
    min-height: 140px;
}

.supporter-card:hover {
    transform: translateY(-4px);
    filter: grayscale(0%);
}

.supporter-card img {
    max-width: 100%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

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

/* CTA */
.cta-card {
    background: radial-gradient(circle at top left, #305ffd, #1f3fb8);
    border-radius: 26px;
    color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.cta-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    top: -70px;
    right: -30px;
}

.cta-card h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.cta-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
}

.cta-card .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    color: var(--brand-primary);
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 18px 32px -18px rgba(10, 10, 20, 0.6);
    margin-top: 0.8rem;
}

/* Footer */
.site-footer {
    background: #0b1220;
    color: rgba(255, 255, 255, 0.78);
    padding: 3rem 0 2.2rem;
    flex-shrink: 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-weight: 500;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #fff;
    transition: background 0.2s ease;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.16);
}

.footer-bottom {
    margin-top: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    align-items: center;
    text-align: center;
}

/* Article / content pages */
.page-section {
    padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.page-section .section-heading {
    margin-bottom: 2.5rem;
}

.article-layout {
    display: grid;
    gap: 2rem;
}

.article-layout .content-card {
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: clamp(1.8rem, 3vw, 2.4rem);
    box-shadow: 0 26px 64px -42px rgba(15, 23, 42, 0.6);
    display: grid;
    gap: 1.2rem;
}

.content-card h2 {
    margin: 0;
    font-size: 1.6rem;
}

.content-card p {
    margin: 0;
    color: var(--text-secondary);
}

.content-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-secondary);
    display: grid;
    gap: 0.65rem;
}

.content-card li::marker {
    color: var(--brand-primary);
}

.feature-list {
    display: grid;
    gap: 1.35rem;
    color: var(--text-secondary);
}

.feature-list li {
    list-style: none;
    position: relative;
    padding-left: 1.8rem;
}

.feature-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--brand-primary);
}

.responsive-media {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
}

.responsive-media iframe,
.responsive-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.figure-card {
    background: radial-gradient(circle at top left, rgba(47, 109, 255, 0.12), rgba(47, 109, 255, 0.02));
    border-radius: 24px;
    padding: clamp(1.6rem, 3vw, 2.2rem);
    border: 1px solid var(--border);
    display: grid;
    gap: 1rem;
}

.figure-card img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.figure-card p {
    margin: 0;
    color: var(--text-secondary);
}



.iban-banner {
    display: block;
    margin: 1.2rem 0;
    padding: 1rem 1.4rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
    box-shadow: 0 26px 60px -44px rgba(15, 23, 42, 0.65);
}

.iban-banner span {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.14em;
}

/* Info blocks */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(1.6rem, 3vw, 2rem);
    box-shadow: 0 26px 60px -44px rgba(15, 23, 42, 0.6);
    display: grid;
    gap: 1rem;
}

.info-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.info-card p {
    margin: 0;
    color: var(--text-secondary);
}

.info-card ul,
.info-card ol {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.55rem;
    color: var(--text-secondary);
}

.info-card li::marker {
    color: var(--brand-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: clamp(1.6rem, 3vw, 2.1rem);
    box-shadow: 0 22px 52px -40px rgba(15, 23, 42, 0.6);
    display: grid;
    gap: 0.85rem;
}

.contact-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(47, 109, 255, 0.2), rgba(47, 109, 255, 0.35));
    color: var(--brand-primary);
    font-size: 1.1rem;
}

.contact-card strong {
    font-size: 1.05rem;
}

.contact-card span,
.contact-card p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-card a {
    color: var(--brand-primary);
    font-weight: 600;
    word-break: break-word;
}

.content-card h3,
.content-card h4 {
    margin: 0.6rem 0 0.4rem;
}

/* Team */
.team-groups {
    display: grid;
    gap: 2.2rem;
}

.team-group {
    background: var(--surface);
    border-radius: 26px;
    border: 1px solid var(--border);
    padding: clamp(2rem, 3vw, 2.6rem);
    box-shadow: 0 26px 64px -46px rgba(15, 23, 42, 0.55);
}

.team-group h3 {
    margin: 0;
    font-size: 1.55rem;
}

.team-group p {
    margin: 0.75rem 0 1.75rem;
    color: var(--text-secondary);
}

.team-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.team-card {
    background: var(--surface-muted);
    border-radius: 22px;
    padding: 1.6rem 1.4rem;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.24);
    display: grid;
    gap: 0.75rem;
    place-items: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -32px rgba(15, 23, 42, 0.55);
}

.team-card.featured {
    background: radial-gradient(circle at top, rgba(47, 109, 255, 0.18), rgba(47, 109, 255, 0.05));
    border: 1px solid rgba(47, 109, 255, 0.25);
}

.team-card img {
    width: 112px;
    height: 112px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(47, 109, 255, 0.12);
}

.team-card strong {
    font-size: 1.1rem;
}

.team-card span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.team-card a {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.92rem;
}

/* Utilities */
.tagline {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        inset-inline: 0;
        top: 72px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--border);
        padding: 1.6rem 1.5rem;
        flex-direction: column;
        gap: 1.2rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: inline-flex;
    }

    /* Hide any donate button in header on mobile, but keep footer one visible */
    .site-header .donate-button { display: none; }
    .site-footer .donate-button { display: inline-flex; }

    .hero {
        padding: 5.5rem 0 4.5rem;
    }

    .hero-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 64vh;
    }

    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .cta-card {
        padding: 2.4rem;
    }
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        align-items: center;
    }
}
