/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff;
    color: #333;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    padding: 50px 0;
    background-color: #4682b4;
    color: white;
}

header h1 {
    margin: 0;
    font-size: 3em;
}

header h2 {
    margin: 10px 0 0;
    font-size: 1.5em;
    font-weight: normal;
}

/* Main Content */
main {
    padding: 20px 0;
}

.description {
    text-align: center;
    margin-bottom: 30px;
}

.gallery {
    text-align: center;
    margin-bottom: 30px;
}

.gallery h3 {
    margin-bottom: 20px;
    font-size: 1.5em;
}

.gallery-item {
    display: inline-block;
    margin: 10px;
}

.gallery-item img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 2px solid #4682b4;
    border-radius: 10px;
}

/* Contact Section */
.contact {
    text-align: center;
    margin-bottom: 30px;
}

.contact h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

.contact a {
    color: #4682b4;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

/* Consent Banner */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.consent-banner p {
    margin: 0;
    padding-right: 20px;
}

.consent-banner a {
    color: #4CAF50;
    text-decoration: underline;
}

.consent-banner button {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
}

.consent-banner button:hover {
    background-color: #45a049;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #4682b4;
    color: white;
}
