body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #c8dfef;
}

header {
    background-color: #333;
    padding: 10px;
    text-align: center;
    color: white;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #555;
    padding: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 5px;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #777;
}

.hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

footer a {
    color: white;
}

@media (max-width: 480px) {
    .hero {
        height: 300px;
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.contact-cointainer {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-titlle {
    font-weight: 600;
    color: #34c0eb;
    font-size: 40;
    margin-bottom: 5px;
}

.contact-left-titlle hr {
    border: none;
    width: 120px;
    height: 5px;
    background-color: #34c0eb;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 20px;
}

.contact-left textarea {
    height: 140px;
    padding-top: 15px;
    padding-left: 20px;
}

.contact-inputs:focus {
    border: 2px solid #555;
}

.contact-inputs::placeholder {
    color: #666;
}

.contact-left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #FFF;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #165264 0%, #0d6efd 100%);
    cursor: pointer;
}

.contact-left button img {
    height: 15px;
}

.contact-right img {
    width: 500px;
}

@media (max-width: 768px) {
    .contact-inputs {
        width: 80vw;
    }

    .contact-right {
        display: none;
    }
}