/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Header */
header {
    background: #2d572c;
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 5px solid #1e3a1b;
}

header h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Logo */
#logo {
    max-width: 150px;
    margin-bottom: 15px;
}

/* Navigation */
nav {
    background: #1e3a1b;
    padding: 15px 0;
    text-align: center;
}

nav h2 {
    color: white;
    font-size: 1.5em;
    margin-bottom: 10px;
}

nav .services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.service {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 45%;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service:hover {
    transform: translateY(-5px);
}

.service h3 a {
    text-decoration: none;
    color: #2d572c;
    font-size: 1.2em;
}

.service p {
    margin-top: 5px;
    font-size: 0.95em;
}

/* Sections */
main {
    margin-top: 30px;
}

section {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 1.8em;
    color: #2d572c;
    margin-bottom: 10px;
}

section p {
    font-size: 1em;
    margin-bottom: 15px;
}

section ul li {
    padding-left: 1%;
    text-align: left;
}

/* Buttons */
button {
    display: inline-block;
    background: #2d572c;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background: #1e3a1b;
}

/* Contact Form */
.contact-form {
    text-align: center;
    max-width: 600px;
    margin: auto;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    margin-top: 10px;
    width: 100%;
}

/* Footer */
footer {
    background: #2d572c;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service {
        width: 100%;
    }

    header h1 {
        font-size: 1.8em;
    }

    section {
        padding: 20px;
    }
}
