.about-page {
    padding-top: 80px;
    background-color: var(--light);
}

/* Director Section */
.director-section {
    background-color: #e3f2fd;
    padding: 4rem 0;
}

.director-profile {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.profile-image {
    flex: 0 0 300px;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-content {
    flex: 1;
}

.profile-content h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.credentials {
    margin-bottom: 1.5rem;
}

.credentials .title {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.credentials .qualifications {
    font-style: italic;
    color: var(--secondary);
}

.bio {
    margin-bottom: 2rem;
}

.bio p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.links a {
    display: inline-block;
    margin-right: 1rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.links a:hover {
    text-decoration: underline;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: white;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--text);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: auto;
    height: auto;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin: 1rem;
}

.team-member .position {
    color: var(--secondary);
    font-weight: 500;
    margin: 0 1rem;
}

.team-member .bio {
    padding: 1rem;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Updated hero styles */
.hero {
    height: 50vh; /* Further reduced from 60vh */
    margin-top: 5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .director-profile {
        flex-direction: column;
        text-align: center;
    }

    .profile-image {
        margin: 0 auto;
    }

    .links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}