
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f2f2f2;
    color: #333;
}
.hero {
    position: relative;
    text-align: center;
    background-color: #000;
}
.hero-img {
    width: 100%;
    height: auto;
    opacity: 0.8;
}
.hero h1 {
    position: absolute;
    top: 40%;
    width: 100%;
    color: white;
    font-size: 2.5em;
}
section {
    padding: 2em;
    background: white;
    margin: 1em auto;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
.gallery .images {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
}
.gallery img {
    max-width: 280px;
    height: auto;
    border-radius: 6px;
}
.contact form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.contact input, .contact textarea {
    padding: 0.8em;
    font-size: 1em;
}
.contact button {
    padding: 1em;
    background-color: #333;
    color: white;
    border: none;
    font-size: 1em;
    cursor: pointer;
}
footer {
    text-align: center;
    padding: 1em;
    background: #ddd;
    margin-top: 2em;
}
