
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background-color: #0a2c4d;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo {
    height: 50px;
}
nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
}
.hero {
    padding: 40px 20px;
    background-color: #f0f0f0;
    text-align: center;
width: 100%;
position: relative;
}

.hero-img {
width: 100%;
height:500px;
object-fit: cover;
}
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 20px;
    background-color: #0a2c4d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.services, .contact {
    padding: 30px 20px;
}
.services ul {
    list-style: none;
    padding-left: 0;
}
.services li {
    margin: 10px 0;
}
form {
    display: flex;
    flex-direction: column;
}
input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1em;
    width: 100%;
    max-width: 500px;
}
button {
    padding: 10px;
    background-color: #0a2c4d;
    color: white;
    border: none;
    cursor: pointer;
}
footer {
    background-color: #e0e0e0;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
}
@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    nav {
        margin-top: 10px;
    }
}
