/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background: #004080;
    color: white;
    padding: 10px 0;
}

.top-bar {
    text-align: center;
    background: #003366;
    padding: 10px 0;
}

.top-bar p {
    margin: 0;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 100px; /* Adjust as needed */
    margin-right: 20px;
}

/* Navigation Styles */
nav {
    margin: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav li {
    display: inline;
    margin: 0 10px;
}

nav a {
    color: white;
    text-decoration: none;
}

/* Main Content Styles */
main {
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info {
    margin-bottom: 20px;
}

.icon {
    width: 20px; /* Size of icons */
    vertical-align: middle; /* Align with text */
}

/* Form Container Styles */
.form-container {
    float: right; /* Align the form to the right */
    width: 45%; /* Adjust width as needed */
    background-color: #f9f9f9; /* Form background */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-left: 20px; /* Space between form and contact info */
}

h3 {
    clear: both; /* Ensures heading doesn't overlap with floated elements */
}

/* Contact Forms */
label {
    display: block; /* Make labels block level */
    margin: 10px 0 5px; /* Spacing around labels */
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%; /* Full width for inputs and textareas */
    padding: 10px; /* Padding for better usability */
    margin-bottom: 10px; /* Space between inputs */
    border: 1px solid #ccc; /* Border style */
    border-radius: 4px; /* Rounded corners */
}

button {
    background-color: #004080; /* Button color */
    color: white; /* Button text color */
    border: none; /* No border */
    padding: 10px 15px; /* Padding inside button */
    cursor: pointer; /* Pointer on hover */
    border-radius: 4px; /* Rounded corners */
}

button:hover {
    background-color: #003366; /* Darker shade on hover */
}

/* Map Styles */
.map-container {
    margin-top: 20px;
    text-align: center; /* Center the map */
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px 0;
    background: #004080;
    color: white;
    margin-top: 20px;
}
