.profile-container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}

/* ==============================
   HERO
============================== */

.hero {
    padding: 70px 20px 50px;
    text-align: center;
    background: linear-gradient(180deg, #f7fbff 0%, #e9f1f8 100%);
    border-bottom: 1px solid var(--raf-border);
    border-radius: 0 0 18px 18px;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--raf-navy);
    margin-bottom: 15px;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: #41556c;
}

/* ==============================
   SECTIONS
============================== */

section {
    padding: 55px 20px;
}

section h2 {
    font-size: 1.6rem;
    color: var(--raf-navy);
    margin-bottom: 25px;
    border-left: 4px solid var(--raf-red);
    padding-left: 14px;
}

section p {
    line-height: 1.9;
}

/* ==============================
   PROJECTS
============================== */

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project-card {
    background: var(--raf-surface);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid var(--raf-border);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-3px);
}

.project-card h3 {
    margin-bottom: 15px;
    color: var(--raf-blue);
    font-size: 1.15rem;
}

.memorial-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: square;
}

.memorial-list li::marker {
    color: var(--raf-red);
}

.memorial-list li {
    margin-bottom: 12px;
    line-height: 1.5;
}

.memorial-list a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
}

.memorial-list a:hover {
    text-decoration: underline;
}

.memorial-list small {
    color: #666;
    font-size: 0.9em;
}

/* ==============================
   CTA
============================== */

.cta-section {
    background: linear-gradient(135deg, var(--raf-blue), var(--raf-navy));
    color: #ffffff;
    padding: 70px 20px;
    margin-top: 60px;
    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 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.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;
}

.cta-button:hover {
    background-color: #8f1020;
    color: #ffffff;
    text-decoration: none;
}

/* ==============================
   MOBILE
============================== */

@media (max-width: 768px) {

    .hero {
        padding: 50px 16px 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    section {
        padding: 38px 16px;
    }

    section h2 {
        font-size: 1.35rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }
}