/* Global Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333; /* Default text color */
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #003366;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 36px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #007bff; /* Button background color */
}

nav ul li a:hover {
    color: #ffcc00; /* Highlight color on hover */
    background-color: #0056b3; /* Darken button background color on hover */
}

/* Section Styles */
section {
    padding: 40px 20px; /* Increased padding for better spacing */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

section h2 {
    font-size: 28px;
    margin-bottom: 20px; /* Increased spacing between heading and content */
    color: #003366;
}

section p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px; /* Increased spacing between paragraphs */
}

section img {
    max-width: 100%; /* Ensure images don't exceed container width */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.section-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #003366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.section-button:hover {
    background-color: #001a33; /* Darken button background color on hover */
}

/* Footer Styles */
footer {
    background-color: #003366;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

.service-areas {
    margin-top: 20px;
    font-size: 16px;
}

/* Media Query for Small Screens */
@media (max-width: 600px) {
    header h1 {
        font-size: 24px;
    }

    nav ul li {
        display: block;
        margin-bottom: 10px;
    }

    section h2 {
        font-size: 22px;
    }
}

/* Contact Form Styles */
#contact {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#contact h2 {
    text-align: center;
    color: #003366;
    margin-bottom: 30px;
    font-size: 32px;
}

#contact form {
    display: grid;
    grid-gap: 20px;
}

#contact label {
    font-weight: bold;
    color: #333;
    display: block;
    font-size: 16px;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea,
#contact select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease;
}

#contact input[type="text"]:focus,
#contact input[type="email"]:focus,
#contact input[type="tel"]:focus,
#contact textarea:focus,
#contact select:focus {
    border-color: #003366;
}

#contact input[type="submit"] {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #003366;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 18px;
}

#contact input[type="submit"]:hover {
    background-color: #001a33;
}

#contact input[type="checkbox"] {
    margin-right: 5px;
}

@media only screen and (min-width: 768px) {
    #contact form {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (min-width: 992px) {
    #contact form {
        grid-template-columns: repeat(3, 1fr);
    }
}
