body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.row{
    width: 100%;
    background-color: black;
    position: fixed;
    top: 0;
    height: 8vh;
    display:flex;
    justify-content:center;
    align-items: center;
    text-align: center;
    overflow-x: auto;
    z-index: 2;
}
.headers{
    color: white;
    cursor: pointer;
    font-size: 1.7vw;
    font-family: 'consolas';
    transition: 0.6s;
}
.headers:hover{
    color:black;
    font-size: 100%;
    font-style: bold;
    background-color: #fff;
    padding:10px ;
    border: 1px solid white;
    border-radius: 7px;
    box-shadow: 0px 0px 10px white,0px 0px 20px white;
    width: 50px;
    height: 50px;
    transition: 0.4s;
}
.logo{
    width: 50px;
}
hr{
    border: 1px solid gray;
}
li{
    font-size: 25px
}

.hero {
    background: url('https://cdn.pixabay.com/photo/2016/09/19/22/46/lake-1681485_1280.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero .overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 50px;
    margin: 0;
}

.hero .btn {
    background: #ff9f43;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
}

.services{
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta {
    text-align: center;
    padding: 50px;
    background: white;
}

.services h2, .cta h2 {
    color: #0a3d62;
}

.services ul {
    list-style: disc;
    padding: 0;
}

.cta {
    background: #ff9f43;
    color: white;
}

.cta .btn {
    background: white;
    color: #ff9f43;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

footer {
    background: #0a3d62;
    color: white;
    text-align: center;
    padding: 20px;
}
.input{
    width: 100%;
    height:30px;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    font-weight: 700;
}
.form{
    border:2px solid black;
    width:300px;
    height: 330px;
    margin-top: 9%;
    padding: 10px;
    display:inline-block;
    text-align: center;
}
.button{
    border:1px solid blue;
    border-radius:8px;
    width:140px;
    height: 40px;
    font-size: 20px;
    color: white;
    background-color: blue;
}
textarea{
    width: 100%;
}
.info-label{
    color: #fff;
    font-size: 18px;
}
.contact-form {
    padding: 50px;
    background: #333;
    color: black;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.contact-form button {
    background: #555;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #777;
}