/* Team Section Styles */
.our-perfect-team {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.our-perfect-team h1 {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
    margin: 30px 0;
}

.team-member {
    width: 40%;
    max-width: 350px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 15px;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

.team-member-info h3 {
    font-size: 24px;
    margin-bottom: 5px;
    margin-top: 15px;
}

.team-member-role {
    color: #ff5a5f;
    font-size: 16px;
    margin-bottom: 20px;
}

.team-member-description {
    color: #666;
    margin-bottom: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.team-social-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 20px;
}

.team-social-links a {
    color: #777;
    font-size: 18px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.team-social-links a:hover {
    color: #ff5a5f;
    border-color: #ff5a5f;
}

.attribution {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
    color: #777;
}

.learn-more-button {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #333;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.learn-more-button:hover {
    background: #333;
    color: #fff;
}

/* Responsive styles */
@media (max-width: 900px) {
    .team-members {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .team-member {
        width: 100%;
        max-width: 450px;
    }
    
    .our-perfect-team h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .team-members {
        gap: 0;
    }
}

/* Yellow accent bars on left and right */
.team-section-container {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.yellow-accent {
    position: absolute;
    top: 0;
    height: 100%;
    width: 35px;
    background-color: #fcb900;
    z-index: 0;
}

.yellow-accent-left {
    left: 0;
}

.yellow-accent-right {
    right: 0;
}