/* Global Styles & Variables */
:root {
    --brand-green: #0A9234;
    --brand-orange: #F47920;
    --white: #FFFFFF;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-color: #333;
    --font-family: 'Helvetica Neue', Arial, sans-serif; /* Example clean font */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    height: 100%; /* Ensure html takes full height */
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    min-height: 100vh; /* Make body at least full viewport height */
    margin: 0; /* Remove default body margin */
}

/* Target the main content area */
main {
    flex-grow: 1; /* Allow main content to grow and push footer down */
}

h1, h2, h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; text-align: center; margin-bottom: 2rem; }
h3 { font-size: 1.4rem; color: var(--brand-green); }

section {
    padding: 60px 20px;
}

a {
    color: var(--brand-orange);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container { /* Optional: Use for centered content */
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Add styles for generic content pages */
.page-content {
    max-width: 900px; /* Or your preferred content width */
    margin: 0 auto; /* Center the content block */
    padding-top: 160px; /* Adjust as needed for fixed navbar */
    padding-bottom: 40px; /* Space before footer */
    flex-grow: 1; /* Allow page content to grow */
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6,
.page-content p,
.page-content ul,
.page-content ol {
    text-align: left; /* Ensure all text content is left-aligned */
    margin-bottom: 1rem; /* Add some spacing below elements */
}

.page-content h1 {
    margin-bottom: 1.5rem; /* More space below main title */
    color: var(--brand-green); /* Optional: Style main title */
}

.page-content h2 {
    margin-top: 2rem; /* Add space above subheadings */
    color: var(--brand-green); /* Optional: Style subheadings */
}

.page-content a {
    color: var(--brand-orange); /* Style links within content */
}
.page-content a:hover {
    text-decoration: underline;
}

.service-page-image {
    display: block; /* Make it a block element for margin auto to work if needed */
    max-width: 100%; /* Ensure image is responsive and doesn't overflow */
    height: auto; /* Maintain aspect ratio */
    margin-top: 1.5rem; /* Space above the image */
    margin-bottom: 1.5rem; /* Space below the image */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}


.contact-info-box {
    /* Add or modify the background-color */
    background-color: #FF9900; /* Replace with your actual footer orange color */

    /* You might need to adjust text colors for contrast */
    color: #ffffff; /* Example: White text on orange background */
    padding: 2rem; /* Ensure padding is sufficient */
    border-radius: 8px; /* Keep rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Keep shadow */
}

/* Adjust link colors within the box if needed */
.contact-info-box a {
    color: #ffffff; /* Example: White links */
    text-decoration: underline; /* Optional: Add underline */
}

/* Adjust icon colors if needed */
.contact-info-box i {
    color: #ffffff; /* Example: White icons */
    margin-right: 0.5em;
}

/* Adjust heading color if needed */
.contact-info-box h2 {
    color: #ffffff; /* Example: White heading */
    margin-bottom: 1rem;
}
