/* =========================
   HERO SECTION
========================= */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px 100px; /* Extra bottom spacing for overlap */
}

.page-hero h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.page-hero p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: #cbd5e1;
}

/* =========================
   ABOUT WRAPPER
========================= */
.about-wrap {
    max-width: 900px;
    margin: -60px auto 60px; /* overlaps hero nicely */
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 10;
}

.about-lede {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    text-align: center;
    margin-bottom: 40px;
}

/* =========================
   ABOUT CARD
========================= */
.about-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.about-card h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #cbd5e1;
    padding-bottom: 10px;
    display: inline-block;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: #334155;
}

.about-list li::before {
    content: "✓";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* =========================
   MISSION / VISION GRID
========================= */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.mv-card {
    background: #ffffff;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.mv-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: #2563eb;
    margin-top: 0;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.mv-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #475569;
    margin: 0;
}

/* =========================
   CTA BUTTONS
========================= */
.about-cta-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary-ad {
    background-color: #2563eb;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
    transition: all 0.2s;
}

.btn-primary-ad:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 30px;
    transition: all 0.2s;
}

.btn-outline:hover {
    background-color: #eff6ff;
}

/* =========================
   SEPARATOR & FOOTER NOTE
========================= */
.about-sep {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 40px 0;
}

.founder-note {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
    font-style: italic;
    text-align: center;
}

@media (max-width: 768px) {
    .about-wrap {
        margin-top: -30px;
        padding: 30px 20px;
        width: 90%;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-wrap {
        flex-direction: column;
    }

    .btn-primary-ad, .btn-outline {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }
}

