.team-section {
    padding: 50px 0;
    text-align: center;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #666a49, #8c954a);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 100px;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info .name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.member-info .designation {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.social-links a {
    color: #555;
    margin: 0 8px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4CAF50;
}