html, body {
    min-height: 100vh;
    height: -webkit-fill-available;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-color: #ffffff; /* Ensure consistent background */
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #004d40;
    background-color: #ffffff; /* White background */
    display: flex;
    flex-direction: column;
}

/* Make the main content flex-grow to fill the viewport */
main {
    flex: 1;
}

/* Header Styles */
header {
    background: #004d40;
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header h1 {
    font-size: 24px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

header nav ul li a {
    color: #b2dfdb;
    text-decoration: none;
}

header nav ul li a:hover {
    color: #004d40;
    background: #ffffff;
    padding: 2px 5px;
    border-radius: 5px;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    body {
        background: #ffffff;
    }
    header nav ul {
        position: absolute;
        top: 60px;
        right: 0;
        background: #004d40;
        width: 200px;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        display: none;
    }

    header nav ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Content Section Styles */
.content-section {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align content to the top */
    padding: 40px 20px;
    background: #fff;
    min-height: 100vh;
    box-sizing: border-box;
    width: 100%;
}

.content-section .container {
    max-width: 800px; /* Limit width for a document-like feel */
    margin: 0 auto;
    text-align: left; /* Align text to the left */
    line-height: 1.6; /* Improve readability */
}

.content-section h2 {
    margin-bottom: 20px;
    color: #004d40;
}

.content-section p {
    margin-bottom: 20px;
    color: #004d40;
}

/* Footer Styles */
footer {
    background: #004d40;
    color: #e0f2f1;
    text-align: center;
    padding: 20px 0;
    margin-top: auto; /* Push the footer to the bottom */
    width: 100%;
}
/* Hero Section Styles */
.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    color: #e0f2f1;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 600px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #004d40;
    color: #e0f2f1;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background: #00251a;
    color: #b2dfdb;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5em;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.contact-form input, .contact-form textarea, .contact-form button {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}


.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Adjust as needed */
    padding-bottom: 25px;
}





