h1,
h2 {
    margin: 20px 10px;
    font-size: 3rem;
    text-align: center;
    color: black;
    font-weight: 500;
}

/* Underline Style */
.description-section {
    font-size: 20px;
    box-sizing: border-box;
    /* margin-bottom: 5%; */
    /* background-color: #e3f2fd; */
}

/* Gallery Section */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.description-section p {
    width: 1400px;
    text-align: center;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .description-section p {
        width: 900px;
        font-size: 10px;
        text-align: center;
    }
    .headline-section h1,
    h2 {
        font-size: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Headline Section */
    .description-section p {
        width: 650px;
        font-size: 8px;
        text-align: center;
    }
    .headline-section h1,
    h2 {
        font-size: 1.5rem;
    }

    /* Gallery Section */
    .gallery img {
        max-width: 200px;
    }
}

@media (max-width: 320px) {
    /* Headline Section */
    .description-section p {
        width: 220px;
        font-size: 4px;
        text-align: center;
    }
    .headline-section h1,
    h2 {
        font-size: 1rem;
    }

    /* Gallery Section */
    .gallery img {
        max-width: 100px;
    }
}
