/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Team Stats */
.team-stats {
    padding: 4rem 0;
    background: linear-gradient(45deg, #B4A284 0%, #A2A595 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #F6EAD4;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #1D1D1B;
    font-weight: 500;
}

/* Team Members */
.team-members {
    padding: 4rem 0;
    background: linear-gradient(90deg, #B4A284 0%, #A2A595 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2d3748;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: #B4A284;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px #1D1D1B;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #1D1D1B 10%;
}

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

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    /* background: linear-gradient(135deg, #667eea, #764ba2); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    /* color: white; */
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1D1D1B;
    margin-bottom: 0.5rem;
}

/* .member-role {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
} */

.member-bio {
    color: #1D1D1B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: transparent;
    color: #1D1D1B;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid #1D1D1B;
    font-size: 0.85rem;
    font-weight: 500;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0077B5;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

.linkedin-logo {
    width: 20px;
    height: 20px;
}