:root {
    --primary-green: #2E4628;
    --earthy-brown: #5D4037;
    --accent-color: #FFC107;
    --text-light: #F4F4F4;
    --text-dark: #333333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Garamond', serif;
    color: var(--primary-green);
}

.hero-section {
    background: url('https://images.unsplash.com/photo-1586799342921-1419a4e03b84') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffd040;
}

main {
    padding: 2rem;
}

section {
    padding: 4rem 2rem;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.services-grid,
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
}

.service-card,
.why-us-point {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonials-section {
    background-color: #f1f1f1;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.contact-section {
    background-color: var(--primary-green);
    color: var(--text-light);
}

.contact-section h2,
.contact-section h3 {
    color: var(--text-light);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.contact-form-area,
.contact-info {
    flex: 1;
    min-width: 300px;
}

form {
    display: flex;
    flex-direction: column;
}

form input,
form textarea,
form button {
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: none;
}

form button {
    background-color: var(--accent-color);
    color: var(--text-dark);
    cursor: pointer;
    font-weight: bold;
}

.checkbox-group {
    margin-bottom: 1rem;
}

footer {
    background: var(--text-dark);
    color: var(--text-light);
    text-align: center;
    padding: 1.5rem 1rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    section {
        padding: 2rem 1rem;
    }
}