* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Navigation */
nav {
    background-color: #2e7d32;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

nav a:hover, nav a.active {
    color: #a5d6a7;
}

/* Header */
header {
    background: center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

header h1 {
    font-size: 3rem;
}

/* Content Sections */
.content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.text-left, .text-right {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.text-left .text-box {
    background-color: white;
    color: #333;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.text-right .text-box {
    background-color: #2e7d32;
    color: white;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
    order: 2;
}

.text-left img, .text-right img {
    flex: 1;
    max-width: 500px;
    height: auto;
    border-radius: 5px;
}

.text-right img {
    order: 1;
}

.text-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.text-box p {
    font-size: 1.1rem;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form input, form textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form button {
    padding: 1rem;
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
}

form button:hover {
    background-color: #1b5e20;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1.5rem;
}

footer a {
    color: #4caf50;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .text-left, .text-right {
        flex-direction: column;
        gap: 1rem;
    }

    .text-right .text-box, .text-right img {
        order: 0;
    }

    .text-box, img {
        max-width: 100%;
    }
}