/* General Styles */
body {
    font-family: sans-serif; /* Simple, clean web-safe font */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333; /* Dark gray for text */
    background-color: #f9f9f9; /* Light background */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2 {
    color: #2e7d32; /* Primary green color */
}

a {
    color: #4caf50; /* Lighter green for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background-color: #ffffff; /* White background for header */
    border-bottom: 2px solid #e0e0e0; /* Light gray border */
    padding: 10px 0;
}

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

header h1 {
    margin: 0;
    font-size: 1.8em;
}

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

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

header nav ul li a {
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 450px; /* Limit hero image height */
    object-fit: cover; /* Cover the area nicely */
    display: block;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
    padding: 15px 25px;
    border-radius: 5px;
}

.hero-text h2 {
    margin: 0;
    font-size: 2em;
    color: #ffffff;
}

/* About Section */
.about {
    padding: 40px 0;
    text-align: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    margin-top: 20px;
    border: 1px solid #ccc; /* Simple border for placeholder feel */
    border-radius: 5px;
}

/* Testimonials Section */
.testimonials {
    background-color: #e8f5e9; /* Light green background */
    padding: 40px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 30px;
}

.review {
    background-color: #ffffff;
    border: 1px solid #c8e6c9; /* Slightly darker green border */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.review p:last-child {
    font-style: italic;
    text-align: right;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Call to Action (CTA) Section */
.cta {
    text-align: center;
    padding: 40px 0;
}

.btn {
    display: inline-block;
    background-color: #2e7d32; /* Primary green */
    color: #ffffff;
    padding: 12px 25px;
    font-size: 1.1em;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #1b5e20; /* Darker green on hover */
    text-decoration: none;
}

/* Contact Page */
.contact-info {
    padding: 40px 0;
    text-align: center;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.phone-number {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 20px;
    color: #333;
}

.phone-number a {
    color: #2e7d32; /* Green for the phone link */
}

/* Footer */
footer {
    background-color: #333; /* Dark footer */
    color: #ccc;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
}

footer p {
    margin: 0;
}

footer a {
    color: #a5d6a7; /* Light green for footer link */
}

/* Basic Responsiveness */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        margin-top: 10px;
    }

    header nav ul li {
        margin: 0 10px;
    }

    .hero-text h2 {
        font-size: 1.5em;
    }

    .container {
        width: 95%;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    .hero-text {
        padding: 10px 15px;
    }

    .hero-text h2 {
        font-size: 1.2em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .phone-number {
        font-size: 1.2em;
    }
}

