
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}
header {
    position: relative;
    text-align: center;
    color: white;
}
.banner {
    width: 100%;
    height: auto;
    display: block;
}
.overlay {
    position: absolute;
    top: 30%;
    width: 100%;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}
.overlay h1 {
    font-size: 2.5em;
    margin: 0;
}
.tagline {
    font-size: 1.2em;
    margin-top: 5px;
}
main {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
}
.hero p {
    margin-bottom: 20px;
    line-height: 1.6;
}
.gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}
.gallery img {
    width: 48%;
    height: auto;
    border-radius: 4px;
}
footer {
    text-align: center;
    padding: 15px;
    background-color: #eee;
    font-size: 0.9em;
}
a {
    color: #0077cc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
