#about-services-section {
    padding: 80px 20px;
    background-color: #ffffff;
    color: #000000;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-layout {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.team-profiles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.profile-card {
    text-align: center;
}

.profile-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #c5a059;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.profile-circle:hover {
    transform: scale(1.05);
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card h3 {
    font-size: 1.2rem;
    margin: 10px 0 5px;
    letter-spacing: 1px;
}

.designation {
    color: #999;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
}

.services-content {
    max-width: 600px;
    text-align: left;
}

.separator {
    width: 50px;
    border: 0;
    border-top: 1px solid #c5a059;
    margin: 0 0 30px 0;
}

.services-content h2 {
    font-size: 3rem;
    margin-bottom: 18px;
    margin-left: 30px;
    font-weight: 300;
}

.services-content p {
    line-height: 1.8;
    color: #666;
    font-size: 1.2rem;
    margin-left: 30px;
}

.read-more {
    display: inline-block;
    margin-top: 25px;
    margin-left: 30px;
    color: #c5a059;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.read-more:hover {
    border-bottom: 1px solid #c5a059;
}

@media (max-width: 900px) {
    .about-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .services-content {
        text-align: center;
    }

    .separator {
        margin: 30px auto;
    }
}
