/* --- 1. CSS RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Trustworthy & Calming Colors */
    --color-primary: #1C5D9F; /* Strong Blue for main accents */
    --color-secondary: #00A693; /* Soft Teal/Green for buttons/links */
    --color-text: #333333; /* Dark Gray for readability */
    --color-background-light: #F4F4F9; /* Very light gray for section breaks */
    --color-white: #FFFFFF;
}

body {
    font-family: 'Open Sans', Arial, sans-serif; /* Highly readable font for body text */
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

.container {
    width: 90%;
    max-width: 1200px; /* Limits content width on large screens */
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif; /* Modern, professional font for headings */
    color: var(--color-primary);
    margin-bottom: 0.5em;
    font-weight: 700;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-primary);
}

/* --- 2. HEADER & NAVIGATION --- */
header {
    background-color: var(--color-white);
    border-bottom: 2px solid var(--color-background-light);
    position: sticky; /* Sticky header for easy navigation */
    top: 0;
    z-index: 1000;
}

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

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

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul a {
    color: var(--color-text);
    font-weight: 600;
    padding: 5px 0;
}

nav ul a:hover {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-secondary);
}

/* --- 3. SECTIONS & LAYOUT --- */
.content-section {
    padding: 80px 0;
    border-bottom: 1px solid #E0E0E0;
}

#services {
    background-color: var(--color-background-light);
}

/* Hero Section (Home) Styling */
.hero {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    color: var(--color-white);
    font-size: 2.8em;
    margin-bottom: 0.2em;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

/* Call-to-Action Button */
.button {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-white) !important;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
}

/* --- 4. CONTACT SECTION STYLES --- */
#contact h2 {
    text-align: center;
    margin-bottom: 40px;
}

.address-details {
    max-width: 600px;
    margin: 0 auto 30px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: var(--color-white);
}

.address-details p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.address-details a {
    font-weight: 600;
}

/* --- 5. FOOTER --- */
footer {
    background-color: var(--color-text);
    color: var(--color-white);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* --- 6. MEDIA QUERIES (Basic Responsiveness) --- */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    nav ul {
        margin-top: 10px;
        flex-direction: column;
        text-align: center;
    }
    nav ul li {
        margin: 5px 0;
    }
    .hero {
        padding: 80px 0;
    }
    .hero h2 {
        font-size: 2em;
    }
    .content-section {
        padding: 50px 0;
    }
}
/* Styling for the Service List */
.service-list {
    max-width: 800px;
    margin: 20px auto 0 auto;
    list-style: none; /* Remove default bullets */
    padding: 0;
}

.service-list li {
    background: var(--color-white);
    padding: 15px 20px;
    border-left: 5px solid var(--color-secondary); /* Highlight bar */
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    font-size: 1.05em;
}

.service-list li strong {
    color: var(--color-primary);
}
/* --- 5. FOOTER (UPDATED) --- */
footer {
    background-color: var(--color-text); /* Dark Gray background */
    color: var(--color-white);
    padding: 40px 0 10px 0; /* More padding top for content */
}

footer h3 {
    color: var(--color-secondary); /* Highlighted heading in teal */
    margin-bottom: 10px;
    font-size: 1.2em;
}

footer a {
    color: var(--color-white);
    text-decoration: underline;
}

footer a:hover {
    color: var(--color-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two main columns for contact/address */
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copy {
    grid-column: 1 / -1; /* Makes the copyright span both columns */
    text-align: center;
    font-size: 0.85em;
    padding-top: 15px;
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Stack columns vertically on small screens */
    }
    .footer-contact, .footer-address {
        text-align: center;
    }
}
/* --- 6. CONTACT FORM STYLES --- */
.intro-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: var(--color-white);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-primary);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit; /* Inherit body font */
}

.contact-form textarea {
    resize: vertical;
}

/* Style the submit button to match the overall design */
.form-submit-button {
    width: 100%;
    text-align: center;
    /* Uses the existing .button styles */
    border: none;
    cursor: pointer;
}


