* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Trebuchet MS", Tahoma, sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: hsla(211, 96%, 25%, 0.1);
}
.navbar,
.dropdown-menu {
    background-color: #42abe3;
    border: none;
}
.navbar .navbar-brand,
.navbar .nav-link,
.navbar-toggler,
.dropdown-menu a {
    color: #ffffff !important;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #01284f !important;
    background-color: #ffd700;
}
.navbar img {
    height: 100px;
    margin-left: 20%;
}
.navbar .navbar-toggler {
    margin-right: 5%;
}
.navbar .navbar-nav {
    font-size: 1.25rem;
    font-weight: 600;
}
.dropdown-menu .dropdown-item:hover {
    background-color: #ffd700;
    color: #01284f;
}

.header-image {
    background-image: url("contact_header.jpg"); 
    background-size: cover;
    background-position: center;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}
/*
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: hsla(211, 96%, 25%, 0.35);
    z-index: 1;
}
*/
.header-text {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
}
.header-text h1 {
    font-size: 2.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.header-text h4 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
}
.info-section {
    padding: 3rem 0;
}
form {
    background-color: #f8f9fa;
    box-shadow: 0 0 20px rgba(1, 40, 79, 0.1);
}
form label {
    font-weight: 600;
    color: #01284f;
    text-transform: uppercase;
    font-size: 0.9rem;
}
form .form-control,
form .form-select {
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
}
form .btn-primary {
    background-color: #42abe3;
    border-color: #42abe3;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}
form .btn-primary:hover {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #01284f;
}

footer {
    background-color: #42abe3;
    color: white;
    padding: 1.15rem 0;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .navbar img {
        height: 75px;
        margin-left: 1%;
    }
}
