body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

h1, h2, h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    line-height: 1.6;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.card {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-text {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .header, .footer {
        padding: 15px;
    }

    .button {
        width: 100%;
        text-align: center;
    }
}

/* Çerez Bilgilendirme Ekranı Stilleri */
#cookieConsentBanner {
  transition: transform 0.4s ease-in-out;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Karanlık mod geçişi */
@media (prefers-color-scheme: dark) {
  #cookieConsentBanner {
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.3), 0 -2px 4px -1px rgba(0, 0, 0, 0.2);
  }
}

/* Buton hover efektleri */
#acceptCookies, #rejectCookies {
  transition: all 0.2s ease;
}

#acceptCookies:hover, #rejectCookies:hover {
  transform: translateY(-1px);
}

#acceptCookies:active, #rejectCookies:active {
  transform: translateY(0);
}