/* Basic Reset and Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5dc; /* Beige color for a natural feel */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: #4b6f4c; /* Deep green */
    color: #fff;
    padding: 1em 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
}

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

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

header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4em 0;
    background-color: #7f9f7f; /* Lighter green */
    color: #fff;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

.hero-image {
    max-width: 50%;
    margin-left: 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

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

.cta-button {
    display: inline-block;
    background-color: #6699cc; /* Muted blue */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1em;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #5588bb;
}

/* Other Sections */
section {
    padding: 4em 0;
}

.introduction {
    text-align: center;
    background-color: #fff;
}

/* Footer */
footer {
    background-color: #36454F; /* Dark slate gray */
    color: #fff;
    padding: 2em 0;
    text-align: center;
}

footer .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer .legal-info {
    margin-top: 1em;
    font-size: 0.8em;
    opacity: 0.7;
}

/* Page Headers (for About, Services, Contact) */
.page-header {
    background-color: #4b6f4c;
    color: #fff;
    text-align: center;
    padding: 3em 0;
}

.page-header h2 {
    font-size: 2.5em;
    margin: 0;
}

/* Specific Page Styling */
.about-content, .contact-content {
    background-color: #fff;
    padding: 2em 0;
}

.about-section {
    margin-bottom: 2em;
    padding-bottom: 1em;
    border-bottom: 1px solid #ccc;
}

.about-section:last-child {
    border-bottom: none;
}

/* Contact Form Styling */
.contact-details p {
    font-size: 1.1em;
}

.contact-form {
    background-color: #f5f5dc;
    padding: 2em;
    border-radius: 8px;
    margin-top: 2em;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-top: 1em;
    font-weight: bold;
}

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

.contact-form .cta-button {
    align-self: flex-start;
    margin-top: 1.5em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
    .hero-image {
        max-width: 100%;
        margin-top: 20px;
    }
}
