/* Team Section */
.team-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    width: 100%;
}

/* Team Member Card */
.team-member {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.40);
    transition: transform 0.3s ease;
}

    .team-member:hover {
        transform: translateY(-5px);
        box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.60);
    }

.team-member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
}

.team-role {
    font-size: 1rem;
    color: #7d03a7;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.team-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    flex: 1;
}

/* Team Values Section */
.team-values {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.value-card {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 3rem;
    color: #7d03a7;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Section Title */
.section-title {
    width: 100%;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .team-section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .team-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-section {
        padding: 3rem 1rem;
    }

    .team-member-image {
        height: 250px;
    }

    .team-member-info {
        padding: 1.5rem;
    }

    .team-member-info h3 {
        font-size: 1.2rem;
    }

    .values-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-values {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .team-member-image {
        height: 200px;
    }

    .value-card i {
        font-size: 2rem;
    }
}
