/* --- Global Styles --- */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 15px;
}

/* --- Header & Navigation --- */
header {
    background: #004a7c; /* Primary Dark Blue */
    color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header h1 {
    float: left;
    margin: 0;
    font-size: 28px;
    letter-spacing: 1px;
}

header nav {
    float: right;
    margin-top: 5px;
}

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

header li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s;
}

header a:hover, header .active {
    color: #ff9900; /* Accent Orange */
    font-weight: bold;
}

/* --- Main Content: Hero Section (Home Page) --- */
.hero {
    background: #ffffff;
    color: #333;
    padding: 80px 0;
    text-align: center;
    border-bottom: 5px solid #ff9900;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #004a7c;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Call To Action Button */
.cta-button {
    display: inline-block;
    background: #ff9900;
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    transition: background 0.3s;
    text-transform: uppercase;
    font-weight: bold;
}

.cta-button:hover {
    background: #e68a00;
}

/* --- Content Sections (All Pages) --- */
.content-section {
    padding: 40px 0;
    background: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.content-section h2 {
    color: #004a7c;
    border-bottom: 3px solid #ff9900;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 32px;
}

/* Service List Layout */
.service-list h3 {
    color: #004a7c;
    margin-top: 25px;
    border-left: 5px solid #ff9900;
    padding-left: 10px;
}

/* Image Placeholder Styling */
.image-placeholder {
    width: 100%;
    height: 250px; /* Standard height for visual sections */
    background-color: #eee;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #888;
    border: 1px dashed #ccc;
}

/* --- Contact Form Styling --- */
.contact-form label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
    color: #004a7c;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; 
    font-size: 16px;
}

.contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

.contact-info a {
    color: #ff9900;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}

/* --- Footer --- */
footer {
    padding: 20px;
    margin-top: 30px;
    color: #ffffff;
    background-color: #002d4d; /* Darkest Blue */
    text-align: center;
    border-top: 5px solid #004a7c;
}

footer p {
    margin: 0;
}