body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #e0f2f7; /* Light skyblue shade for content */
}
header {
    background-color: #a7d9e7; /* Slightly darker skyblue for contrast */
    padding: 10px 20px; /* Adjusted padding for header */
    color: #333; /* Darker text for contrast */
    display: flex; /* Make header a flex container */
    align-items: center; /* Vertically align items in header */
    justify-content: center; /* Center content horizontally */
}

.header-grid {
    display: flex;
    align-items: center; /* Align items vertically in the grid */
    justify-content: flex-start; /* Align content to the start (left) */
    width: 100%; /* Take full width of the header */
    max-width: 1200px; /* Optional: limit max width of the header content */
}

.header-logo-column {
    flex-shrink: 0; /* Prevent logo from shrinking */
    padding-right: 20px; /* Space between logo and content */
}

.header-logo-column img {
    height: 60px; /* Adjusted logo height for better visibility */
    width: auto; /* Maintain aspect ratio */
    max-height: 100%;
}

.header-content-column {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Align text to the center */
    flex-grow: 1; /* Allow content column to take available space */
}

.site-title {
    margin: 0;
    font-size: 2.2em; /* Adjusted font size */
    line-height: 1.1;
}

.site-tagline {
    margin: 0;
    font-size: 1em; /* Adjusted font size */
    line-height: 1.1;
    color: #555;
}

.empty-row {
    height: 10px; /* Provide some vertical spacing */
}

.header-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px; /* Space between nav items */
}

.header-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.header-nav a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* --- Existing styles below --- */

main {
    flex: 1;
    text-align: center;
}
main p {
    padding: 20px;
}
main img.banner {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card h3 {
    margin-top: 0;
}
.card-link {
    text-decoration: none;
    color: inherit;
}
.about-section {
    padding: 20px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.team-member {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px;
    text-align: center;
}
.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: left;
}
.service-card h3 {
    margin-top: 0;
}
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-form, .contact-details {
    flex: none;
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-form h2, .contact-details h2 {
    margin-top: 0;
    border-bottom: 2px solid #a7d9e7;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.contact-form input[type="submit"] {
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-form input[type="submit"]:hover {
    background-color: #555;
}
.contact-details p {
    line-height: 1.8;
}
.contact-details strong {
    color: #333;
}
#form-status {
    margin-top: 15px;
    font-weight: bold;
}
footer {
    background-color: #a7d9e7; /* Slightly darker skyblue for contrast */
    padding: 20px;
    text-align: center;
    color: #333; /* Darker text for contrast */
}
