
  /* ==================== ABOUT US PAGE – SPECIFIC STYLES ==================== */

/* ---------- PAGE HERO (centered text, no image) ---------- */
.about-hero {
    text-align: center;
    padding-top: 4rem;   /* extra space below fixed header */
    padding-bottom: 2rem;
    background: linear-gradient(135deg, #f0f9fc 0%, #ffffff 100%);
}

.about-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #003d4d;
    margin-bottom: 1rem;
}

.about-hero .hero-sub {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .about-hero {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
    .about-hero .hero-sub {
        font-size: 1.1rem;
    }
}

/* ---------- OUR STORY – single column with image at bottom ---------- */
.story-section {
    padding: 2.5rem 0;
    background: white;
}

.story-section .container {
    max-width: 800px;
}

.story-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0a3b44;
}

.story-section h2 span {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.story-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.story-image {
    border-radius: var(--border-radius);
    background: #cfe3ea;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    margin-top: 1.5rem;
    width: 100%;
}

@media (min-width: 600px) {
    .story-image {
        height: 320px;
    }
}

@media (min-width: 768px) {
    .story-section {
        padding: 3rem 0;
    }
    .story-section h2 {
        font-size: 2.4rem;
    }
    .story-section p {
        font-size: 1.05rem;
    }
    .story-image {
        height: 380px;
        margin-top: 2rem;
    }
}

/* ---------- DO / DON'T CARDS (adds a little border) ---------- */
.do-dont-grid .feature-card:nth-child(3),
.do-dont-grid .feature-card:nth-child(4) {
    border-top: 3px solid var(--accent);
}

/* ---------- EXPERTS SECTION (keeps default, just an optional wrapper) ---------- */
.about-experts {
    padding: 2.5rem 0;
}

/* ---------- FIRST-TIME PHILOSOPHY BOX ---------- */
.philosophy-box {
    background: #fff6e8;
    border-left: 6px solid var(--accent-dark);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    margin: 2rem 0;
    font-size: 0.95rem;
}

.philosophy-box h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #003d4d;
}

.philosophy-box ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.philosophy-box li {
    margin-bottom: 0.5rem;
}

.philosophy-box .btn-primary {
    margin-top: 0.8rem;
}

@media (min-width: 768px) {
    .philosophy-box {
        padding: 2rem;
        font-size: 1rem;
    }
    .philosophy-box h2 {
        font-size: 1.8rem;
    }
    .philosophy-box .btn-primary {
        margin-top: 1.2rem;
    }
}

/* ---------- GENERAL SPACING HELPERS (just in case) ---------- */
.section-padding {
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 3.5rem 0;
    }
}
