:root {
    --navy: #002046;
    --green: #0DA67B;
    --text: #1a1a1a;
    --light: #f4f8f9;
    --radius: 12px;
}

/* HERO */
.about-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--navy), var(--green));
    color: #fff;
    padding: 80px 10%;
    gap: 40px;
}

.about-content h1 {
    font-size: 2.7rem;
    margin-bottom: 6px;
}

.about-content h3 {
    font-weight: 400;
    opacity: 0.95;
}

.quote {
    font-style: italic;
    margin: 20px 0 30px;
}

.about-photo img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}

/* BIO */
.bio, .expertise, .services-highlight {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

/* SERVICES HIGHLIGHT */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.service-card {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid #d8e2e4;
    text-align: center;
}

