body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f4f4f4; /* Light grey background for contrast */
}
#home {
    text-align: center;
    padding: 40px 20px;
    background-color:white;
}

#home-logo {
    max-width: 200px; /* Adjust the size as needed */
    height: auto;
    margin-bottom: 20px; /* Space between logo and text */
}

/* Additional styling for the caption text if needed */
#home p {
    font-size: 1.2em; /* Example font size */
    color: #333; /* Example text color */
}
header {
    background: linear-gradient(to right, #005f73, #0a9396); /* Gradient from dark blue to green */
    color: white;
    padding: 10px 0;
}

nav {
    text-align: center;
}

nav img {
    height: 50px; /* Adjust as needed */
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border: 2px solid transparent; /* Add border for transition effect */
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover,
nav ul li a:focus {
    background-color: #e9d8a6; /* Soft green for hover */
    border-color: #e9d8a6;
    border-radius: 5px;
    color: #005f73; /* Dark blue text on hover */
}

section {
    padding: 40px 20px;
    text-align: center;
}

section h2 {
    color: #3d405b; /* Dark blue for headings */
}

section p {
    color: #293241; /* Darker shade for text */
}

footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex-basis: 30%; /* Adjust as necessary */
    text-align: left;
}

.footer-column h4 {
    margin-top: 0;
}

/* Responsive design for smaller screens */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 20px;
        flex-basis: 100%;
    }
}


footer p {
    margin: 0;
}

.section-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    max-width: 1024px; /* Fixed width on larger screens */
    margin: 0 auto; /* Center the container */
}

.section-left {
    flex-basis: 30%; /* Adjust the width as necessary */
    text-align: left;
}

.section-right {
    flex-basis: 70%; /* Adjust the width as necessary */
    text-align: left;
}

/* Responsive design for smaller screens */
@media (max-width: 1024px) {
    .section-container {
        flex-direction: column;
        text-align: center;
        max-width: 100%; /* Full width on smaller screens */
    }

    .section-left, .section-right {
        flex-basis: 100%;
    }
}
.services-table {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    border-collapse: collapse;
}

.services-table td {
    background: #f4f4f4;
    padding: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-table {
        display: block;
    }

    .services-table td {
        display: block;
        width: 100%;
    }
}
.contact-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

#contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

button[type="submit"] {
    background-color: #0a9396; /* Green color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #005f73; /* Darker green */
}
