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

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

/* Başlık */
header {
    background-color: #0074D9; /* Mavi */
    padding: 1rem;
    text-align: center;
    color: #fff;
}

header h1 {
    font-size: 1.5rem;
}

/* Banner Stili */
.banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.banner p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

/* Küçük Ekranlar İçin Banner Yüksekliği */
@media (max-width: 768px) {
    .banner {
        height: 200px;
    }
}

.banner p {
    font-size: 1.2rem;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

/* Ana İçerik Alanı */
main {
    padding: 2rem;
}

/* Bölüm Stilleri */
.section {
    margin-bottom: 1.5rem;
    text-align: left;
}

.section h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Liste Stili */
ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Address Bölümü */
.address-section {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.address-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.address-content {
    font-size: 1rem;
    color: #333;
}

/* Çağrı Butonu */
.cta {
    background-color: #0074D9; /* Mavi */
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-weight: bold;
    text-decoration: none;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 1rem auto;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #005BB5; /* Koyu Mavi */
}

/* Yapışkan Buton */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0074D9; /* Mavi */
    text-align: center;
    padding: 0.25rem 0;
    z-index: 1000;
}

.sticky-cta .cta {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: inline-block;
}

.sticky-cta .cta:hover {
    background-color: #005BB5; /* Koyu Mavi */
}

/* Sayfanın içeriği butonun arkasında kalmasın diye daha fazla alt boşluk ekliyoruz */
main {
    padding-bottom: 4rem;
}
.cta-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.cta-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.cta-button:hover {
    background-color: #0056b3;
}
