.team-section { max-width: 1200px; margin: auto; padding: 40px 20px; display: flex; flex-direction: column; gap: 60px; }
.team-member { display: flex; align-items: stretch; gap: 30px; }
.team-member .member-img, .team-member .member-info { flex: 1; min-width: 300px; }
.team-member .member-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; max-height: 700px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.team-member .member-info { background: white; padding: 30px; border-radius: 12px; display: flex; flex-direction: column; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.team-member .member-info h2 { margin:0 0 8px; font-size:26px; color:#222; }
.team-member .member-info h4 { margin:0 0 16px; font-size:20px; color:#c62828; }
.team-member .member-info p { margin:0; line-height:1.6; color:#444; }
@media (max-width: 767px) { .team-member { flex-direction: column !important; } .member-img img { max-height:400px; } }