.memorial-container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}

/* ==============================
   HERO SECTION
============================== */

.hero {
    padding: 60px 20px 40px;
    text-align: center;
    background: linear-gradient(180deg, #f7fbff 0%, #e8f1f9 100%);
    border-bottom: 1px solid var(--raf-border);
    border-radius: 0 0 18px 18px;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--raf-navy);
}

.hero .subtitle {
    font-size: 1.15rem;
    color: #3f556d;
}

/* ==============================
   SECTIONS GENERAL
============================== */

section {
    padding: 50px 20px;
}

section h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-left: 4px solid var(--raf-red);
    padding-left: 12px;
    color: var(--raf-navy);
}

/* ==============================
   QUICK FACTS
============================== */

.quickfacts {
    background-color: transparent;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    font-size: 1rem;
}

.facts-grid div {
    background: var(--raf-surface);
    padding: 14px 15px;
    border-left: 4px solid var(--raf-blue);
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.06);
}

/* ==============================
   BIO / ABOUT / UNVEILING
============================== */

.bio,
.about,
.unveiling,
.gallery,
.map {
    background-color: transparent;
}

.bio p,
.about p,
.unveiling p {
    margin-bottom: 15px;
}

/* ==============================
   MAP
============================== */

.map iframe {
    margin-top: 15px;
    border-radius: 12px;
    border: 1px solid var(--raf-border);
}

/* ==============================
   GALLERY
============================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;

    border-radius: 12px;
    transition: 0.3s ease;
    border: 1px solid var(--raf-border);
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.06);

    display: block;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* ==============================
   RAF / AVIATION LINKS
============================== */

a {
    color: var(--raf-blue);
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

.language-switch a {
    color: var(--raf-red);
    font-weight: 600;
}

/* ==============================
   CALL TO ACTION
============================== */

.cta-section {
    background: linear-gradient(135deg, var(--raf-blue), var(--raf-navy));
    color: #ffffff;
    padding: 70px 20px;
    margin-top: 70px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    border: none;
    padding-left: 0;
}

.cta-section p {
    max-width: 850px;
    margin: 0 auto 18px;
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background-color: var(--raf-red);
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background-color: #8f1020;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ==============================
   MOBILE OPTIMIZATION
============================== */

@media (max-width: 768px) {

    .hero {
        padding: 42px 16px 30px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    section {
        padding: 34px 16px;
    }

    section h2 {
        font-size: 1.3rem;
    }

    .facts-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
    }
}