* {
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    background-color: #ffff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.director-header h1 {
    color: #551A8B;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.main-content-section {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.text-block {
    flex: 3;
}

.text-block p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    line-height: 2;
    margin-bottom: 1em;
}

.director-info {
    flex: 1;
    text-align: left;
    font-size: 0.9em;
    margin-top: -10px;
}

.director-info img {
    width: 100%;
    max-width: 150px; /* Control the size of the headshot */
    height: auto;
    display: block;
    margin-bottom: 5px;
}

.director-info .name {
    font-weight: bold;
    margin: 0;
}

.director-info .title {
    margin: 0;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: auto auto;
    gap: 10px;
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-top-left {
    height: 350px;
}

.director-info {
        margin-top: 20px;
        max-width: 200px;
    }