.team-section {
    margin: 3rem 0;
}

.team-member {
    display: flex;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.team-member:last-child {
    border-bottom: none;
}

.team-member-image {
    flex: 0 0 200px;
    margin-right: 2rem;
}

.member-image-placeholder {
    width: 200px;
    height: 200px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #999;
    position: relative;
}

.member-image-placeholder::before {
    content: 'HC';
    font-weight: bold;
}

.member-image-placeholder.manus-ai::before {
    content: 'M';
}

.team-member-info {
    flex: 1;
}

.team-member-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-form {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.footer-credits {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
    text-align: center;
}

.footer-credits p {
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
    }
    
    .team-member-image {
        margin-right: 0;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
    }
}
