body {
    background: black;
    color: white;
    font-family: serif;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #222;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 2px solid white;
    background-color: #333;
}

.logo img {
    width: 110px;
    height: auto;
}

.navbar a {
    text-decoration: none; 
    color: white; 
    font-size: 20px;
    font-style: Sans-serif; 
    font-weight: bold; 
    padding: 5px 20px; 
    border-radius: 3px; 
    transition: background 0.2s, color 0.1s; 
}

.navbar a:hover {
    background: brown; 
    color: white; 
}


.navbar div button {
    padding: 10px 15px;
    margin-left: 10px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.navbar div button:hover {
    background: white;
    color: black;
}

.search {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 80px 100px;
}

.map {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.map img {
    width: 420px;
    border: 2px solid white;
}

.info {
    flex: 1;
    text-align: center;
    padding-left: 0;
}

.info h2 {
    text-align: center;
}

.section {
    margin-bottom: 30px;
}

.section h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons img {
    width: 30px;
}
