body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
}
header {
    background: #2d5d34;
    color: white;
    padding: 15px;
    position: sticky;
    top: 0;
}
header nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}
header nav a:hover {
    text-decoration: underline;
}
.hero {
    background: url('../assets/hero-containers.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.hero-text h1 {
    font-size: 2.5em;
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}
.hero-text p {
    font-size: 1.2em;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}
section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}
footer {
    background: #2d5d34;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.gallery img {
    width: 100%;
    border-radius: 8px;
}