/* Header Image Section */
.header-image-section {
    width: 100%;
    height: 35vh;
    overflow: hidden;
    position: relative;
}

.header-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Split Content Section */
.split-content-section {
    display: flex;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 5rem;
    padding-right: 5rem;
    max-width: auto;
    margin: auto;
}

.image-container {
    flex: 0.4;
    height: 80%;
    width: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-container {
    flex: 1;
    padding-left: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-image-section {
        height: 70vh;
    }

    .header-image-section img {
        display: none;
    }

    .header-image-section {
        background-image: url('../../assets/images/about/new headshot.jpg');
        background-size: cover;
        background-position: center;
    }

    .split-content-section {
        flex-direction: column;
        padding: 2rem;
    }

    .text-container {
        padding: 1rem 0;
    }

    .image-container {
        display: none;
    }
} 