/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}
.navbar {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    z-index: 1000;
    position: absolute;
    margin-top: 50px;
}
.navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.navbar li {
    margin: 0 15px;
}
.navbar a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
}
.navbar a:hover {
    color: #ff0000;
}
footer {
    background-color: #111;
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
}
.footer-logo img {
    max-width: 150px;
}
.section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
    border-bottom: 1px solid #ddd;
}
.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
}
.footer-section {
    width: 250px;
    text-align: left;
}
.footer-section h3 {
    border-bottom: 2px solid red;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin: 8px 0;
}
.footer-bottom {
    background: #000;
    padding: 15px 0;
    font-size: 14px;
}
.footer-bottom a {
    color: rgb(250, 247, 247);
    text-decoration: none;
}
#map-container {
    width: 100%;
    height: 450px; /* Haritanın yüksekliğini ayarlayın */
    margin-top: 20px; /* Üst boşluk ekleyin */
    margin-bottom: 300px; /* Alt boşluk ekleyin */
    text-align: center; /* Başlığı ortala */
}

#map-container h2 {
    margin-bottom: 10px; /* Başlık ile harita arasındaki boşluk */
    font-size: 24px; /* Başlık boyutu */
    color: #333; /* Başlık rengi */
    padding-bottom: 10px;
}

#map-container p {
    margin: 5px 0; /* Paragraflar arasındaki boşluk */
    font-size: 18px; /* Yazı boyutu */
    color: #333; /* Yazı rengi */
    padding-bottom: 30px;
}

#map-container a {
    color: #333; /* E-posta bağlantı rengi */
    text-decoration: none; /* Alt çizgiyi kaldır */
}

#map-container a:hover {
    text-decoration: underline; /* Üzerine gelindiğinde alt çizgi ekle */
}