@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

:root {
    /* Finnish Blue — Consulting Theme */
    --blue-dark:    #003580;   /* Finnish flag blue — primary brand */
    --blue-mid:     #0047a0;   /* Hover / active states */
    --blue-light:   #eef3fb;   /* Blue-tinted light backgrounds */
    --gold:         #c9a84c;   /* Premium accent for CTAs */
    --gold-light:   #f0e0b0;

    --page-bg:      #ffffff;
    --section-alt:  #f0f4fa;   /* Light blue-grey alternate sections */
    --card-bg:      #ffffff;
    --border:       #d0dcf0;

    --text-dark:    #001a40;   /* Deep navy text */
    --text-mid:     #1a3a6e;
    --text-muted:   #6b80a8;

    --white:        #ffffff;
    --transition:   all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ─── Reset ─────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--page-bg);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── Typography ─────────────────────────────────── */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p { margin-bottom: 1rem; }

/* ─── Buttons ────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--text-dark);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

/* Navbar CTA — Finnish Blue on white for proper contrast */
.btn-nav {
    background-color: var(--blue-dark);
    color: var(--white);
    border: 2px solid var(--blue-dark);
    padding: 0.5rem 1.2rem;
}

.btn-nav:hover {
    background-color: transparent;
    color: var(--blue-dark);
    box-shadow: 0 4px 20px rgba(0, 53, 128, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--blue-dark);
    border: 2px solid var(--blue-dark);
}

.btn-outline:hover {
    background-color: var(--blue-dark);
    color: var(--white);
}

/* ─── Navbar ─────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition);
    padding: 0.2rem 0;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 0.2rem 0;
    border-bottom-color: var(--border);
    box-shadow: 0 4px 24px rgba(0, 53, 128, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn) {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
}

.nav-links a:not(.btn):hover {
    color: var(--blue-dark);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--blue-dark);
}

/* ─── Hero ───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 100px;
    padding-bottom: 40px;
}

/* Finnish Blue overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 26, 64, 0.92) 0%,
        rgba(0, 53, 128, 0.78) 55%,
        rgba(0, 53, 128, 0.45) 100%
    );
    z-index: 1;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.5rem;
    max-width: 640px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─── Section base ───────────────────────────────── */
.section { padding: 100px 0; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Thin blue rule above section headings */
.section-header h2::before {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--blue-dark);
    margin: 0 auto 1rem auto;
}

/* ─── Services Section ───────────────────────────── */
.services-section {
    background-color: var(--page-bg);
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-intro .over-title {
    display: block;
    color: var(--blue-mid);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.section-intro h2 {
    color: var(--text-dark);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.section-intro p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-list { margin-top: 2rem; }

.service-item {
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--text-muted);
    border-radius: 0 4px 4px 0;
}

.service-item:hover,
.service-item.active {
    border-left-color: var(--blue-dark);
    color: var(--blue-dark);
    background-color: var(--blue-light);
}

.glass-panel {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 53, 128, 0.10);
}

.service-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
    transition: opacity 0.3s ease;
}

.service-details {
    padding: 2rem;
    min-height: 160px;
}

.service-details h3 {
    color: var(--blue-dark);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    transition: opacity 0.3s;
}

.service-details p {
    color: var(--text-muted);
    font-size: 0.97rem;
    margin: 0;
    transition: opacity 0.3s;
}

/* ─── Process / How We Work Section ──────────────────────────── */
.process-section {
    background-color: var(--section-alt);
    padding: 6rem 0;
}

.process-section .section-intro {
    margin-bottom: 4rem;
}

.process-container {
    display: flex;
    background-color: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.process-step {
    flex: 1;
    padding: 3rem 2rem;
    border-right: 1px solid var(--border);
}

.process-step:last-child {
    border-right: none;
}

.process-step .step-num {
    display: block;
    color: #2b5fe8; /* Bright blue for step number */
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.process-step h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .process-container {
        flex-direction: column;
    }
    .process-step {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .process-step:last-child {
        border-bottom: none;
    }
}

/* ─── Why Certiud Section ────────────────────────── */
.why-section {
    background-color: var(--white);
    padding: 6rem 0;
}

.why-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.why-intro {
    max-width: 500px;
}

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

.why-item {
    display: flex;
    gap: 1.5rem;
}

.why-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background-color: var(--section-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-dark);
}

.why-text h3 {
    color: var(--blue-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.why-text p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

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

/* ─── Insights Section ────────────────────────────── */
.insights-section {
    background-color: var(--page-bg);
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--white);
    color: var(--blue-dark);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 30, 80, 0.1);
    transition: var(--transition);
}

.carousel-btn:hover {
    background-color: var(--blue-dark);
    color: var(--white);
    border-color: var(--blue-dark);
}

.carousel-btn.prev {
    left: -24px;
}

.carousel-btn.next {
    right: -24px;
}

.insights-grid-container {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
    padding-top: 1rem;
    scrollbar-width: none; /* Firefox */
}

.insights-grid-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.insights-grid {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    padding: 0 1rem;
}

.insight-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 53, 128, 0.08);
    border-color: var(--gold);
}

.insight-meta {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.insight-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.read-more {
    font-weight: 600;
    color: var(--blue-dark);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--gold);
}

/* ─── Article Page Specifics ─────────────────────── */
.article-header {
    padding: 160px 0 80px;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: var(--white);
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 53, 128, 0.92) 0%, rgba(0, 26, 64, 0.98) 100%);
    z-index: 1;
}

.article-header .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.article-header h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 0;
    color: var(--white);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2rem;
}

.article-content {
    color: var(--text-dark);
    font-size: 1.15rem;
    line-height: 1.8;
}

.article-content .lead {
    font-size: 1.4rem;
    color: var(--text-mid);
    margin-bottom: 3rem;
    font-weight: 300;
}

.article-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--blue-dark);
}

.article-content p, .article-content ul {
    margin-bottom: 1.5rem;
}

.article-content ul {
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

/* ─── Contact Section ────────────────────────────── */
.contact-section {
    padding: 140px 0;
    background-color: var(--section-alt);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--card-bg);
    padding: 4rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0, 53, 128, 0.08);
}

.contact-text h2 {
    color: var(--text-dark);
    font-size: 2.2rem;
}

.contact-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    background-color: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-dark);
    box-shadow: 0 0 0 3px rgba(0, 53, 128, 0.1);
}

.btn-submit {
    margin-top: 0.5rem;
    width: 100%;
}

/* ─── Footer ─────────────────────────────────────── */
footer {
    background-color: #032b69; /* Using the exact deep blue from the benchmark */
    padding: 5rem 0 2rem;
    color: var(--white);
}

.footer .container {
    max-width: 1300px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
    border: none;
    padding: 0;
}

.brand-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.contact-list svg {
    opacity: 0.8;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
}

.cta-col p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-footer {
    display: inline-block;
    background-color: #3b82f6;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-footer:hover {
    background-color: #2563eb;
    color: var(--white);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    margin: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

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

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal a {
        margin: 0 0.75rem;
    }
}

/* ─── Animations ─────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.18s; }
.delay-2 { transition-delay: 0.36s; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
    .services-wrapper,
    .focus-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-wrapper {
        padding: 2rem;
    }

    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }

    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        gap: 0;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 8px 24px rgba(0, 53, 128, 0.12);
        border-top: 1px solid var(--border);
    }

    .nav-links.active { left: 0; }

    .nav-links li { padding: 1.2rem 0; }

    .hero-buttons { flex-direction: column; }
}

/* ─── Insights Page ────────────────────────────────── */
.page-insights {
    background-color: var(--page-bg);
}

.insights-page-wrapper {
    padding-top: 120px;
    padding-bottom: 4rem;
}

.insight-tag {
    background-color: #f0f4f8;
    color: var(--blue-mid);
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-article-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    text-decoration: none;
    transition: var(--transition);
    min-height: 400px;
}

.featured-article-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-4px);
}

.featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-content h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.featured-image {
    background-color: var(--blue-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.featured-image h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin: 0;
}

.article-meta-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.article-meta-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.article-arrow {
    color: var(--blue-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: transparent;
    transition: var(--transition);
}

.article-arrow svg {
    transition: var(--transition);
}

.article-card:hover .article-arrow svg,
.featured-article-card:hover .article-arrow svg {
    transform: translate(2px, -2px);
}

.featured-arrow {
    background-color: var(--blue-dark);
    color: var(--white);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 4rem;
}

.article-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: var(--transition);
}

.article-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-4px);
}

.article-card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--blue-mid);
}

.btn-nav {
    background-color: var(--blue-mid);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-nav:hover {
    background-color: var(--white);
    color: var(--blue-dark) !important;
}

.article-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.article-card .article-meta-footer {
    margin-top: auto;
}

.cta-block {
    background-color: var(--blue-dark);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.cta-block h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-block p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 0.85rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline-white:hover {
    border-color: var(--white);
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 900px) {
    .featured-article-card {
        grid-template-columns: 1fr;
    }
    .featured-image {
        min-height: 250px;
    }
}

@media (max-width: 600px) {
    .cta-buttons {
        flex-direction: column;
    }
}

/* ─── About Page ───────────────────────────────────── */
.page-about {
    background-color: var(--white);
}

.about-hero {
    background-color: #f9fafb;
    padding: 10rem 0 5rem;
}

.about-hero-content h1 {
    font-size: 3.8rem;
    color: var(--blue-dark);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    line-height: 1.6;
}

.about-story {
    padding: 6rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.story-content h2 {
    color: var(--blue-dark);
    font-size: 2.2rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-cta {
    padding-bottom: 6rem;
}

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

@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 0 3rem;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* ─── Legal Pages (Privacy & Cookie) ───────────────── */
.page-legal {
    background-color: var(--white);
}

.legal-header {
    background-color: #f9fafb;
    padding: 8rem 0 3rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-header h1 {
    font-size: 3rem;
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
}

.legal-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.legal-content {
    padding: 4rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--blue-dark);
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}

.legal-content p, .legal-content ul {
    color: var(--text-color);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.legal-content ul {
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--blue-mid);
    text-decoration: underline;
}
