body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #E3F2FD;
    line-height: 1.6;
}

header {
    background-color: #2196F3;
    color: #FFF;
    padding: 15px 0;
    text-align: center;
}

nav a {
    color: #FFF;
    text-decoration: none;
    margin: 0 15px;
}

nav a:hover {
    text-decoration: underline;
}

#hero {
    position: relative;
    text-align: center;
    color: white;
}

#hero img {
    width: 100%;
    height: auto;
}

#hero .overlay {
    position: absolute;
    top: 67%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.0);
    padding: 20px;
    border-radius: 10px;
}

section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
}

form {
    display: flex;
    flex-direction: column;
    text-align: left;
}

form label {
    margin: 10px 0 5px;
}

form input,
form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    margin-top: 15px;
    padding: 10px;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #2196F3;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #E3F2HD;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.button:hover {
    background-color: #555;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #2196F3;
    color: white;
}
#video {
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

video {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-top: 20px;
}
