/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #0f766e;
    color: white;
    padding: 1rem;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5rem;
}

nav {
    margin-top: 1rem;
}

nav a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
}

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

.hero {
    background-image: url('https://picsum.photos/1200/400?random=1');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
}

.about, .gallery, .downloads, .contact {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about h2, .gallery h2, .downloads h2, .contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.gallery {
    background-color: #fff;
}

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

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.downloads ul {
    list-style: none;
    text-align: center;
}

.downloads li {
    margin: 1rem 0;
}

.downloads a {
    background-color: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
}

.downloads a:hover {
    background-color: #0056b3;
}

.contact {
    background-color: #007bff;
    color: white;
    text-align: center;
}

.contact a {
    color: white;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    background-color: #0f766e;
    color: white;
    text-align: center;
    padding: 1rem;
}