/* Import all other CSS files */
@import url('base.css');
@import url("thank-you-popup.css");
@import url('contact-page.css'); 
@import url('services.css');
@import url('navbar.css');
@import url('hero.css');
@import url('testimonials.css');
@import url('partners.css');
@import url('footer.css');
@import url('service-detail-page.css');
@import url('consultation-form.css'); 
@import url('our-team.css'); 

/* Team Page Specific Styles */
.team-detail-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.team-member-profile {
    margin: 40px 0;
}

.profile-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.profile-photo {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-details h2 {
    color: #0A2463;
    font-size: 2.2em;
    margin-bottom: 30px;
    font-weight: normal;
}

.profile-details h3 {
    color: #333;
    font-size: 1.4em;
    margin: 25px 0 15px;
    font-weight: normal;
}

.profile-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-details li {
    margin: 10px 0;
    line-height: 1.6;
    color: #555;
}

.content-divider {
    margin: 60px 0;
    border: none;
    border-top: 1px solid #eee;
}

/* Responsive Design for Team Profiles */
@media (max-width: 900px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profile-photo {
        max-width: 400px;
        margin: 0 auto;
    }

    .profile-details h2 {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .team-detail-container {
        margin: 40px auto;
        padding: 0 15px;
    }

    .profile-details h2 {
        font-size: 1.8em;
    }

    .profile-details h3 {
        font-size: 1.2em;
    }
} 