.about-intro {
    text-align: center;
    padding: 70px 20px;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}

.about-intro h1 {
    font-size: clamp(80px, 12vw, 100px);
    font-weight: 900;
    margin: 0;
    color: #dededeff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 0.8;
    position: relative;
    z-index: 1;
}

.about-intro h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    margin: -50px 0 40px 0;
    color: #111;
    position: relative;
    z-index: 2;
}

.intro-text {
    font-size: 17px;
    line-height: 26px;
    color: #333;
}

.intro-text p {
    margin-bottom: 17px;
}

.about-team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
    width: 100%;
    margin: 0;
}

.team-member {
    padding: 40px 45px;
    text-align: left;
    border-right: 1px solid #348dcc;
}

.team-member:last-child {
    border-right: none;
}

.team-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    width: 100%;
}

.team-member img {
    width: 45%;
    height: auto;
    flex-shrink: 0;
}

.team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-member h2 {
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 5px 0;
    padding: 0;
    color: #111;
}

.team-member h3 {
    font-size: 19px;
    font-weight: 500;
    margin: 0;
    color: #878787;
}

.team-member p {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 17px;
    color: #333;
    text-align: justify;
}

.read-more-btn {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    margin-bottom: 1em;
    display: block;
}

.read-more-btn:hover {
    background-color: #348dcc;
}

.read-more-btn.active::after {
    content: " ▾";
    transform: rotate(90deg);
}

.extra-content {
    display: none;
    clear: both;
}



@media (max-width: 768px) {



    .about-intro h1 {
        font-size: clamp(50px, 15vw, 80px);
    }

    .about-intro h2 {
        font-size: clamp(22px, 5vw, 28px);
        margin-top: -30px;
    }


    .about-team {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .team-member {
        padding: 20px 0;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

    .team-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-member img {
        width: 120px;
    }

    .team-member:last-child {
        border-bottom: none;
    }

    .team-member img {
        max-width: 100%;
        margin: 0 0 1em 0;
    }
}