body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    color: #333;
}

header {
    background-color: #004d00;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.hero-section {
    background: url('hero-image.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-section .hero-text {
    max-width: 600px;
}

.hero-section .btn {
    background-color: #00b300;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
}

.events-section, .about-section, .news-section, .contact-section, .facilities-section {
    padding: 40px 20px;
    background-color: #e6f7e6;
}

h2 {
    color: #004d00;
    margin-bottom: 20px;
}

.events-list, .news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.event, .news {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 200px;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-section form input, .contact-section form textarea {
    padding: 10px;
    border: 1px solid #004d00;
    border-radius: 5px;
}

.contact-section form button {
    padding: 10px;
    background-color: #004d00;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    background-color: #004d00;
    color: white;
    text-align: center;
    padding: 10px 0;
}
