* {
    box-sizing: border-box;
}
body {
    margin:0;
    font-family:Arial, sans-serif;
    background-color:rgb(4, 4, 37);
}

header {
    background:rgb(4, 4, 37);
    color: white;
    text-align: center;
    padding: 30px;
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 1rem 2rem;
    z-index: 10; 
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

nav {
    background-color: rgb(4, 4, 37);
    backdrop-filter: blur(5px);
}

nav ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

nav ul::after{
    content:"";
    display:block;
    clear:both;
}

nav ul li {
    float: left;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding:18px 20px;
    float: left;
    position: relative;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 0;
    height: 3px;
    background: limegreen;
    transition: 0.3s;
}

nav ul li a:hover::after {
    width:100%;
}

.map-section{
    width:100%;
    margin-top:30px;
}

.map-section iframe{
    width:100%;
    height:400px;
    border:none;
}

.contact-info{
    display: flex;
    margin:40px auto;
    text-align:center;
    background:white;
    color:#222;
    padding:2rem;
    gap: 2rem;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.contact-adress,
.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
} 

.contact-form button {
    padding: 0.8rem;
    background-color: #040425;
    color: white;
    border: none;
    cursor: pointer;
}

.contact-info h2{
    margin-bottom:20px;
    font-size:28px;
}

.contact-info p{
    margin:10px 0;
}


footer {
    clear: both;
    background-color: #040425;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    max-width:1100px;
    margin:auto;
    margin-bottom: 1rem;
}

.footer-content a {
    color: limegreen;
    text-decoration: none;
}

.footer-content form input,
.footer-content form textarea {
    width: 100%;
    max-width: 250px;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    border: none;
}

.footer-content form button {
    padding: 0.5rem 1rem;
    background-color: limegreen;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-content form button:hover {
    background-color: #32cd32;
}

.footer-bottom {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}