body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

header {
    background-color: #003366;
    color: white;
    padding: 20px;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    width: 150px;
    display: block;
    margin: 0 auto 20px auto;
}

.contact-info {
    text-align: center;
    margin: 20px auto;
}

.info p {
    font-size: 1.2em;
    margin: 10px 0;
}

.info a {
    color: #00509e;
    text-decoration: none;
}

.contact-form {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact-form fieldset {
    border: none;
    padding: 0;
    margin: 10px 0;
}

.contact-form legend {
    font-weight: bold;
}

.contact-form label input {
    margin-right: 10px;
}

.contact-form button {
    background-color: #00509e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #003d72;
}

.call-to-action {
    text-align: center;
    margin: 20px auto;
}

.call-button {
    background-color: #00509e;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2em;
    display: inline-block;
    transition: background-color 0.3s;
}

.call-button:hover {
    background-color: #003d72;
}

/* Existing styles... */

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: #00509e;
    transition: 0.3s;
}

.menu-toggle .bar:nth-child(1) {
    transform-origin: top left;
}

.menu-toggle .bar:nth-child(2) {
    opacity: 1;
}

.menu-toggle .bar:nth-child(3) {
    transform-origin: bottom left;
}

.menu-toggle .bar.active:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle .bar.active:nth-child(2) {
    opacity: 0;
}

.menu-toggle .bar.active:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.dropdown-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #003366;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    z-index: 1000;
}

.dropdown-menu.active {
    transform: translateX(0);
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    border-bottom: 1px solid #fff;
    font-size: 18px;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #00509e;
}
