/* Meet the Team Section Styles */
.meet-the-team-section {
    padding: 80px 0;
    background: #ffffff;
    color: #333;
}

.meet-the-team-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.meet-the-team-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.meet-the-team-section .section-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #005480;
    line-height: 1.2;
}

.meet-the-team-section .section-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    color: #666;
    line-height: 1.4;
}

/* Team Members Grid */
.team-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Team Member Card */
.team-member-card {
    background: #fdfdfd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Profile Image */
.team-member-image {
    width: 150px;
    height: 150px;
    margin: 30px auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    border: 5px solid #005480;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Member Info */
.team-member-info {
    padding: 0 20px 30px;
}

.team-member-name {
    margin: 0 0 5px;
    font-size: 22px;
    font-weight: 700;
    color: #005480;
}

.team-member-title {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin: 0 0 15px;
}

.team-member-description {
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Info */
.team-member-contact {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.contact-item i {
    margin-right: 10px;
    color: #005480;
}

.contact-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #005480;
}

/* WhatsApp Button */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.whatsapp-button i {
    margin-right: 8px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .team-members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .meet-the-team-section .section-title {
        font-size: 36px;
    }
    
    .meet-the-team-section .section-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .team-members-grid {
        grid-template-columns: 1fr;
    }
    
    .meet-the-team-section {
        padding: 60px 0;
    }
    
    .meet-the-team-section .section-title {
        font-size: 30px;
    }
    
    .meet-the-team-section .section-subtitle {
        font-size: 18px;
    }
    
    .team-member-image {
        width: 120px;
        height: 120px;
    }
} 