/* Genel stil ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    text-align: center; /* İçeriği ortalayarak daha düzgün bir görünüm sağlar */
}

header {
    background-color: #007bff;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
}

main {
    margin-top: 30px;
}

.terms h2 {
    font-size: 24px;
    margin-top: 20px;
    color: #007bff;
}

.terms p {
    font-size: 16px;
    margin-bottom: 10px;
}

.terms ul {
    list-style-type: none;
    margin-left: 20px;
}

.terms ul li {
    font-size: 16px;
    margin-bottom: 8px;
    padding-left: 10px;
    position: relative;
}

.terms ul li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 30px;
}

footer p {
    font-size: 14px;
}

/* İletişim Butonu Stili */
.contact-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #0056b3;
}

/* Butonları yatay hale getirmek için flexbox kullanıyoruz */
.button-list {
    list-style-type: none; /* Liste işaretlerini kaldırıyoruz */
    padding: 0; /* Varsayılan padding'i sıfırlıyoruz */
    display: flex; /* Flexbox düzeni */
    gap: 10px; /* Butonlar arasına boşluk ekliyoruz */
    justify-content: center; /* Butonları ortalar */
}

.header-button {
    padding: 10px 20px; /* Butonlar için padding */
    text-decoration: none; /* Bağlantı altını çizgiyi kaldırıyoruz */
    background-color: #007bff; /* Buton rengi */
    color: white; /* Metin rengi */
    border-radius: 5px; /* Köşeleri yuvarlıyoruz */
    transition: background-color 0.3s ease; /* Hover efektine yumuşak geçiş */
    display: inline-block; /* Butonları yan yana hizalamak için */
}

.header-button:hover {
    background-color: #0056b3; /* Hover durumunda buton rengini değiştiriyoruz */
}
