* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.page-container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

.intro-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
}

.intro-text {
    flex: 1;
}

.intro-text h1 {
    font-size: 4.5rem;
    color: #5b2c83;
    margin-bottom: 20px;
    font-weight: bold;
}

.intro-text p {
    font-size: 2.1rem;
}

.director-card img {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    margin-top: 135px;
}

.director-card h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.director-card p {
    font-size: 0.95rem;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

.gallery-grid img {
    width: 100%;
    display: block;
}