body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #e0f7fa; /* Light cyan background */
}

header {
    text-align: center;
    padding: 100px 0;
    color: white;
    background-size: cover;
    background-position: center;
}

h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

section {
    margin: 20px 0;
}

.gallery {
    display: flex;
    justify-content: space-around;
}

.gallery img {
    max-width: 30%;
    height: auto;
}

form {
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1em;
}
