/* =======================
   ABOUT PAGE STYLING
======================= */


/* PAGE HEADER */
.about-header {
    background-color: #fff;
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    margin-bottom: 5rem;
}

.about-header h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
}

.about-header p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

/* WHO WE ARE */
.about-who-we-are {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-who-we-are .text,
.about-who-we-are .image {
    flex: 1 1 450px;
}

.about-who-we-are .text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.about-who-we-are .text p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.about-who-we-are .image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* MISSION / VISION / VALUES */
.about-mvv {
    background-color: #eff6ff;
    padding: 4rem 2rem;
    border-radius: 16px;
    margin-bottom: 5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.about-mvv .card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    flex: 1 1 250px;
}

.about-mvv h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 0.75rem;
}

.about-mvv p {
    font-size: 1rem;
    color: #4b5563;
}



/* WHAT MAKES US DIFFERENT */
.about-difference {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-difference .image {
    flex: 1 1 450px;
}

.about-difference .image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-difference .text {
    flex: 1 1 450px;
}

.about-difference h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.about-difference ul {
    list-style: none;
    padding-left: 0;
}

.about-difference ul li {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    color: #4b5563;
    display: flex;
    align-items: center;
}

.about-difference ul li::before {
    content: "✔";
    color: #1d4ed8;
    margin-right: 0.5rem;
    font-weight: bold;
}

/* =======================
   TEAM SNAPSHOT TREE
======================= */
.about-team {
    margin-bottom: 5rem;
    text-align: center;
    padding: 0 10%;
}

.about-team h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.about-team p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* TREE STRUCTURE */
.about-team .team-tree {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* LEVEL TITLES */
.about-team .team-level h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1d4ed8;
    position: relative;
}

/* Optional connecting line for tree */
.about-team .team-level:not(:last-child) h3::after {
    content: '';
    display: block;
    width: 2px;
    height: 30px;
    background-color: #1d4ed8;
    margin: 0 auto;
    margin-top: 5px;
}

/* TEAM MEMBERS GRID */
.about-team .team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* TEAM CARD */
.about-team .team-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* TEAM IMAGE */
.about-team .team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #1d4ed8;
}

/* MEMBER DETAILS */
.about-team .team-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.about-team .team-card .role {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1d4ed8;
    margin-bottom: 0.25rem;
}

.about-team .team-card .experience,
.about-team .team-card .joined {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-team {
        padding: 0 5%;
    }
    .about-team .team-members {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-team h2 {
        font-size: 2rem;
    }
    .about-team .team-level h3 {
        font-size: 1.5rem;
    }
}

/* CTA SECTION */
.about-cta {
    background-color: #1d4ed8;
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 16px;
}

.about-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.about-cta a {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #fff;
    color: #1d4ed8;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.about-cta a:hover {
    background-color: #e5e7eb;
}

/* =======================
   RESPONSIVE MEDIA QUERIES
======================= */
/* =======================
   RESPONSIVE MEDIA QUERIES
======================= */

/* Large tablets / smaller desktops */
@media (max-width: 1024px) {
    .about-who-we-are,
    .about-difference,
    .about-mvv {
        flex-direction: column;
        text-align: center;
    }

    .about-who-we-are .image,
    .about-who-we-are .text,
    .about-difference .image,
    .about-difference .text,
    .about-mvv .card {
        flex: 1 1 100%;
    }

    .about-team {
        padding: 0 5%;
    }

    .about-team .team-members {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .about-header {
        padding: 3rem 1.5rem;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .about-header p {
        font-size: 1rem;
        max-width: 600px;
    }
}

/* Tablets / medium screens */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2.25rem;
    }

    .about-header p {
        font-size: 0.95rem;
    }

    .about-who-we-are h2,
    .about-difference h2,
    .about-team h2 {
        font-size: 1.75rem;
    }

    .about-mvv h3 {
        font-size: 1.125rem;
    }

    .about-mvv p,
    .about-who-we-are p,
    .about-difference ul li {
        font-size: 0.95rem;
    }

    .about-cta h2 {
        font-size: 1.5rem;
    }

    .about-cta p {
        font-size: 1rem;
    }

    .about-team .team-card {
        width: 140px;
        padding: 1rem;
    }

    .about-team .team-card img {
        width: 100px;
        height: 100px;
    }

    .about-team .team-level h3 {
        font-size: 1.5rem;
    }
}

/* Small phones / very small screens */
@media (max-width: 480px) {
    .about-header {
        padding: 2rem 1rem;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .about-header p {
        font-size: 0.9rem;
    }

    .about-who-we-are h2,
    .about-difference h2,
    .about-team h2 {
        font-size: 1.5rem;
    }

    .about-mvv h3 {
        font-size: 1rem;
    }

    .about-mvv p,
    .about-who-we-are p,
    .about-difference ul li {
        font-size: 0.875rem;
    }

    .about-cta h2 {
        font-size: 1.25rem;
    }

    .about-cta p {
        font-size: 0.875rem;
    }

    .about-team .team-card {
        width: 120px;
        padding: 0.75rem;
    }

    .about-team .team-card img {
        width: 80px;
        height: 80px;
    }

    .about-team .team-level h3 {
        font-size: 1.25rem;
    }

    .about-who-we-are,
    .about-difference,
    .about-mvv {
        gap: 1.25rem;
    }

    .about-team {
        padding: 0 2%;
    }

    .about-mvv {
        padding: 2rem 1rem;
    }

    .about-cta {
        padding: 2rem 1rem;
    }
}
