body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #fff;
    text-align: center;
    padding: 2rem 0;
}

header .logo img {
    max-width: 100%;
    height: auto;
}

main {
    padding: 2rem;
}

.intro {
    text-align: center;
    margin-bottom: 2rem;
}

.intro h1 {
    margin-bottom: 1rem;
}

.gallery {
    margin-bottom: 2rem;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-container img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.details h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.details p {
    text-align: center;
    margin-bottom: 1rem;
}

.details ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.details ul li {
    background-color: #ddd;
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

footer a {
    color: #ffdb4d;
    text-decoration: none;
}
