/* General Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f7f3ed; /* Light Beige/Cream Background */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header .logo {
    height: 50px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

header nav a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    text-transform: uppercase;
}

main {
    padding: 2rem 5%;
}

h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #2c3e50; /* Navy Blue/Dark Color */
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #2c3e50;
    color: #fff;
    font-size: 0.8rem;
}

/* --- HERO SECTION STYLING (For Homepage and About Pages) --- */
.hero {
    display: flex;
    align-items: stretch; /* Stretches items to fill the container height */
    gap: 0; /* Remove gap for a seamless look */
    min-height: 60vh; /* Ensures a good vertical size */
    padding: 4rem 0;
}

.hero .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    padding: 40px;
}

.hero .image {
    flex: 1;
    overflow: hidden;
}

.hero .image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area without distortion */
    display: block;
}

/* Homepage Specific Styling (Overriding .hero for homepage alignment) */
.hero.homepage { /* If you want to customize the homepage hero */
    padding: 4rem 0;
}
.hero.homepage .text {
    order: 0; /* Text on the left */
}
.hero.homepage .image {
    order: 1; /* Image on the right */
}

/* About Page Specific Styling (If you want image and text to swap columns) */
.about-hero {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4rem 0;
}

.about-hero .text {
    flex: 1;
}

.about-hero .image {
    flex: 1;
}

.about-hero img {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Differentiators Section (Homepage) */
.differentiators {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    text-align: center;
    padding: 4rem 0;
}

.differentiator-box {
    flex: 1;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.differentiator-box h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.differentiator-box .icon {
    /* Placeholder for final icons */
    display: block;
    height: 50px;
    margin-bottom: 1rem;
}

/* Services Page Styles */
.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.services-list h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.service-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.service-item h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-top: 0;
}

/* Contact Page Styles */
.contact-section {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero,
    .about-hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .hero .image,
    .hero .text,
    .about-hero .image,
    .about-hero .text {
        max-width: 100%; /* Allows them to take full width on small screens */
    }
    .differentiators {
        flex-direction: column;
        gap: 2rem;
    }
}
/* --- Contact Page Form Styling --- */
.contact-section {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-section h1 {
    margin-bottom: 0.5rem;
}

.contact-section p {
    margin-bottom: 2rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
    text-align: left;
}

#contact-form label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    color: #333;
    font-size: 1rem;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 5px; /* Space between label text and input field */
}

#contact-form textarea {
    resize: vertical;
}

#contact-form button[type="submit"] {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #2c3e50; /* Navy Blue */
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-size: 1rem;
    margin-top: 10px;
}

#contact-form button[type="submit"]:hover {
    background-color: #1a2434;
}
/* Confirmation Message Styling */
#confirmation-message {
    padding: 20px;
    background-color: #e6f7ff;
    border: 1px solid #b3e0ff;
    color: #2c3e50;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.location-info h3 {
    margin-top: 2rem;
    color: #2c3e50;
}