* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #ffffff;
    color: #333;
}

header {
    background-color: #1e4a7a;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    color: #ffffff;
    font-size: 3rem;
    letter-spacing: 1.5rem;
    font-family: "Gantari", sans-serif;
    font-weight: 100;
}

main {
    max-width: 1400px;
    margin: 0 auto;
}

.hero {
    width: 100%;
    margin-bottom: 0;
}

.hero-image {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.gallery {
    padding: 0;
    position: relative;
    z-index: 10;
    transform: translateY(-60px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: center center;
}

.content {
    padding: 40px 60px 60px;
    text-align: center;
    margin-top: -60px;
}

.main-text {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.secondary-text {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    color: #2c2c2c;
}

/* Responsive Design */
@media (max-width: 1024px) {
    header h1 {
        font-size: 2rem;
        letter-spacing: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-text,
    .secondary-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
        letter-spacing: 0.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .content {
        padding: 30px 20px;
    }

    .main-text,
    .secondary-text {
        font-size: 1rem;
    }
}
