/* Genel ve Temel Ayarlar */
:root {
    --primary-color: #ffffff;
    --secondary-color: #000000;
    --background-color: #111111;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
}

/* BÖLÜM 1: HERO ALANI STİLLERİ */
.hero-section {
    height: 100vh; /* Ekranı tamamen kapla */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; /* Overlay için gerekli */
    overflow: hidden; /* Animasyon taşmalarını engelle */

    /* SEÇENEK A: Arka Plan Fotoğrafı */
    background-image: url('hero-background.jpg'); /* Kendi fotoğrafını ekle */
    background-size: cover;
    background-position: center;

    /* SEÇENEK B: Animasyonlu Gradient (Fotoğraf istemiyorsan bunu kullan) */
    /* background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite; */
}

/* Okunabilirliği artırmak için fotoğraf üzerine koyu bir katman */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative; /* Overlay katmanının üzerinde kalması için */
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
}

/* Animasyonlu Gradient için Keyframes (Eğer kullanırsan) */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* BÖLÜM 2: PARALLAX VE BENTO GRID STİLLERİ */
.parallax-section {
    padding: 6rem 2rem;
    
    /* PARALLAX EFEKTİ BURADA OLUŞUYOR */
    background-image: url('parallax-background.jpg'); /* Kendi fotoğrafını ekle */
    background-attachment: fixed; /* Arka planı sabitler */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bento-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* 3 sütunlu bir grid yapısı */
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; /* Kartlar arası boşluk */
}

.bento-card {
    padding: 2rem;
    border-radius: 16px;
    
    /* GLASSMORPHISM ETKİSİ */
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bento-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* Farklı boyutlardaki kartlar için stiller */
.card-wide {
    grid-column: span 2; /* 2 sütun kapla */
}

.card-tall {
    grid-row: span 2; /* 2 satır kapla */
}

/* Scroll Animasyonu için stiller */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* ... Genel ve Temel Ayarlar aynı kalıyor ... */

/* BÖLÜM 1: HERO ALANI STİLLERİ - GÜNCELLENDİ */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; /* İçerideki absolute elementler için gerekli */
    overflow: hidden; /* Dışarı taşan video kısımlarını gizle */
}

/* YENİ EKLENEN VİDEO STİLİ */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1; /* İçeriğin arkasında kalması için */
}

/* Okunabilirliği artırmak için video üzerine koyu bir katman */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2; /* Videonun üzerinde, yazının altında */
}

.hero-content {
    position: relative;
    z-index: 3; /* En üstte olması için */
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
}

/* ... Hero alanı ve diğer stiller aynı kalıyor ... */

/* BÖLÜM 2: PARALLAX VE BENTO GRID STİLLERİ - GÜNCELLENDİ */
.parallax-section {
    padding: 6rem 2rem;
    
    /* KALDIRILDI: Parallax fotoğrafını kaldırıyoruz */
    /* background-image: url('parallax-background.jpg'); */
    /* background-attachment: fixed; */

    /* YENİ EKLENDİ: Mavi tonlu Radyal Gradient arka plan */
    /* Ortada açık mavi, kenarlara doğru koyu lacivert/siyah */
    background: radial-gradient(circle at 50% 50%, #0d2a4c, #0b0f19);
}

.bento-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bento-card {
    padding: 2rem;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.05); /* Lüks bir görünüm için biraz daha şeffaf */
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    /* YENİ EKLENDİ: Işık efekti için hazırlık */
    position: relative; /* ::before pseudo-element'i için gerekli */
    overflow: hidden; /* Dışarı taşan ışığı gizle */
}

/* YENİ EKLENDİ: İmleç takip eden ışık efekti */
.bento-card::before {
    content: "";
    position: absolute;
    /* Pozisyonu JS ile kontrol edeceğimiz değişkenler */
    left: var(--mouse-x);
    top: var(--mouse-y);
    
    width: 250px;  /* Işığın boyutu */
    height: 250px;
    
    /* Işığın kendisi: Beyaz, dairesel ve bulanık bir gradient */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 80%);
    
    /* Işığı imlecin tam ortasına getirmek için */
    transform: translate(-50%, -50%);
    
    opacity: 0; /* Başlangıçta görünmez */
    transition: opacity 0.4s ease-out; /* Yumuşak bir geçişle belirsin */
}

/* İmleç grid'in üzerine geldiğinde TÜM kartlardaki ışığı görünür yap */
.bento-grid:hover .bento-card::before {
    opacity: 1;
}


.bento-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* ... geri kalan stiller aynı ... */

/* ... sitenin geri kalanı aynı ... */
.scrollytelling-section {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Sayfayı 2 eşit sütuna böl */
    gap: 3rem; /* Sütunlar arası boşluk */
    padding: 8rem 4rem;
    position: relative;
}

/* 1. SÜTUN: SABİT GÖRSEL ALANI */
.sticky-visual {
    /* Bu bölüm kendini bu yüksekliğe göre hizalayacak */
    height: 100vh; 
}

.image-container {
    width: 100%;
    height: 70vh; /* Görselin kaplayacağı alan */
    
    /* GÖRSELİ EKRANDA SABİTLEME (YAPIŞTIRMA) */
    position: sticky;
    top: 15vh; /* Ekranın üstünden %15 aşağıda yapışsın */

    border-radius: 20px;
    overflow: hidden;
    background-color: #1a1a1a; /* Resim yüklenirken görünecek renk */
}

#story-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi alana sığdır, kırp */
    transition: opacity 0.6s ease-in-out; /* Görsel değişiminde yumuşak geçiş */
}

/* 2. SÜTUN: KAYAN METİN ALANI */
/* 2. SÜTUN: KAYAN METİN ALANI - GÜNCELLENDİ */
.text-block {
    /* ESKİ KODU SİL: padding-bottom: 70vh; */
    
    /* YENİ KOD: Her metin bloğu tam ekran yüksekliğinde olacak */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* İçeriği dikeyde ortala */
    
    color: rgba(255, 255, 255, 0.7);
    
    /* Modern Teknik için eklenenler (Adım 2'de açıklanacak) */
    transition: opacity 0.5s ease-in-out;
    opacity: 0.3; /* Aktif olmayan metinler sönük görünecek */
}

/* YENİ: Aktif olan metin bloğu tam görünür olacak */
.text-block.is-active {
    opacity: 1;
}

.text-block h2 {
    font-size: 3rem; /* Font boyutunu büyüttük */
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2; /* Satır yüksekliğini ayarladık */

    /* Modern Teknik için animasyon hazırlığı */
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.text-block h2 {
    /* DEĞİŞTİ: Font boyutunu önemli ölçüde artırdık */
    font-size: 3.5rem; 
    margin-bottom: 2rem; /* Başlık ve paragraf arası boşluğu artırdık */
    color: #ffffff;
    line-height: 1.2;
    
    /* Animasyon stilleri aynı kalıyor */
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.text-block p {
    /* DEĞİŞTİ: Font boyutunu ve satır yüksekliğini artırdık */
    font-size: 1.3rem; 
    line-height: 1.9; 
    
    /* DEĞİŞTİ: Maksimum genişliği biraz artırarak metin bloğunu genişlettik */
    max-width: 550px; 
    
    /* Animasyon stilleri aynı kalıyor */
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
    
}

/* YENİ: Aktif metin bloğunun içindeki başlık ve paragraf görünür olacak */
.text-block.is-active h2,
.text-block.is-active p {
    transform: translateY(0);
    opacity: 1;
}
/* SCROLLYTELLING BÖLÜMÜ STİLLERİ - GÜNCELLENMİŞ KOD */
.scrollytelling-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 8rem 4rem;
    position: relative;
}

/* 1. SÜTUN: SABİT GÖRSEL ALANI - DEĞİŞTİ */
.sticky-visual {
    /* Yapışkanlık özelliğini doğrudan sütuna veriyoruz */
    position: sticky;
    top: 0; /* Sütun, ekranın en tepesine yapışsın */
    height: 100vh; /* Sütunun yüksekliği ekran yüksekliği kadar olsun */
    
    /* İçindeki görseli dikeyde ortalamak için flexbox kullanıyoruz */
    display: flex;
    align-items: center;
}

/* Görseli içeren kutu - DEĞİŞTİ */
.image-container {
    width: 100%;
    height: 70vh;
    
    /* ARTIK GEREKLİ DEĞİL: position: sticky buradan kaldırıldı */
    
    border-radius: 20px;
    overflow: hidden;
    background-color: #1a1a1a;
}

#story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease-in-out;
}
/* İLETİŞİM BÖLÜMÜ STİLLERİ */
#contact-section {
    padding: 8rem 2rem;
    background-color: #0c0f1a; /* Sitenin genel koyu tonuyla uyumlu */
}

/* Genel konteyner ve başlık stilleri */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* İletişim bilgilerini ve formu saran ana yapı */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Sol sütun daha dar, sağ sütun daha geniş */
    gap: 4rem;
    align-items: flex-start;
}

/* Sol Sütun: İletişim Bilgileri */
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.info-item svg {
    width: 24px;
    height: 24px;
    margin-right: 1.5rem;
    color: #4a69bd; /* Mavi tonuyla uyumlu bir ikon rengi */
}

.info-item p, .info-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #ffffff;
}

/* Sağ Sütun: İletişim Formu */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a69bd;
    box-shadow: 0 0 0 3px rgba(74, 105, 189, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #4a69bd;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #5d82df;
}


.horizontal-container {
    /* Artık bu konteyner kalan tüm dikey boşluğu dolduracak */
    flex-grow: 1;
    width: 100%; /* vw yerine % kullanmak daha tutarlı */
    height: auto; /* Yüksekliği esnek olsun */
    overflow: hidden;
}

.horizontal-track {
    display: flex;
    align-items: center; /* Kartları dikeyde ortala */
    height: 100%;
    width: max-content;
    padding-left: 4rem;
}

.h-card {
    width: 450px; /* Her kartın genişliği */
    height: 600px;
    flex-shrink: 0; /* Kartların küçülmesini engelle */
    margin-right: 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.h-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.h-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.h-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}
/* ... .scroll-text ve .text-block stilleri aynı kalıyor ... */
/* ... .text-block stillerinin altına ekleyin ... */

/* Sadece ilk metin bloğuna özel olarak, görselle hizalanması için üst boşluk veriyoruz */
.scroll-text .text-block:first-child {
    padding-top: 15vh;
}
/* YATAY KAYDIRMA BÖLÜMÜ STİLLERİ */
/* YATAY KAYDIRMA BÖLÜMÜ İÇİN TEK VE DOĞRU KURAL */
.horizontal-scroll-section {
    /* height'ı kaldırıp, bölümü bir flex konteyner yapıyoruz */
    /* ESKİ KODU SİLİN: height: 300vh; */
    height: 100vh; /* Pinned section'ın yüksekliği ekran kadar olsun */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* İçeriği (başlık) yukarıya yasla */
    
    background-color: #0c0f19;
    position: relative; 
    padding-top: 8rem;
    padding-bottom: 0; /* Alttaki padding'e gerek kalmadı */
    box-sizing: border-box; /* Padding'in yüksekliğe dahil olmasını sağla */
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    z-index: 1000;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

/* Header'ın kaydırıldıktan sonraki hali */
.site-header.scrolled {
    background-color: rgba(12, 15, 26, 0.7); /* Koyu mavi, yarı saydam */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Linklerin altına hover efekti */
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* PÜRÜZSÜZ SCROLL İÇİN */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Header'ın arkasında kalmaması için */
}

.logo {
    margin-right: auto; /* Logo, sağındaki tüm boşluğu doldurarak menüyü en sağa iter */
}

/* Hamburger menünün masaüstünde kesinlikle görünmemesini sağla */
.hamburger-menu {
    display: none;
}

/* =============================================== */
/* RESPONSIVE STYLES (TÜM CİHAZLAR İÇİN)           */
/* =============================================== */

/* Tablet ve Altı (1024px ve aşağısı) */
@media (max-width: 1024px) {
    /* --- Genel Ayarlar --- */
    html { font-size: 90%; }
    .section-header h2 { font-size: 2.5rem; }
    .site-header { padding: 1.5rem 2rem; }

    /* --- Özel İmleci Devre Dışı Bırak --- */
    body { cursor: auto; }
    .cursor-ring, .cursor-dot { display: none !important; }

       /* --- Scrollytelling (Yeni Dikey Yapı) --- */
    .scrollytelling-section {
        grid-template-columns: 1fr; /* Yapıyı tek sütuna düşür */
        padding: 6rem 2rem;
    }

    /* Masaüstündeki yapışkan görseli tamamen gizle */
    .sticky-visual {
        display: none;
    }

    /* Metin bloklarının mobil görünümünü düzenle */
    .text-block {
        height: auto; /* 100vh yüksekliğini iptal et */
        padding-bottom: 2rem; /* Metinler arası boşluk */
        opacity: 1; /* Sönükleştirme efektini iptal et, tüm metinler görünsün */
        justify-content: flex-start;
    }
    
    .scroll-text .text-block:first-child {
        padding-top: 0; /* Ekstra boşluğu kaldır */
    }

    /* Metin animasyonlarını ve sönükleştirme efektini mobilde iptal et */
    .text-block h2,
    .text-block p {
        transform: none;
        opacity: 1;
    }
    
    /* Mobil için dinamik olarak eklenen görsellerin stili */
    .mobile-story-image-container {
        width: 100%;
        margin-bottom: 5rem; /* Her görsel ve bir sonraki metin arası boşluk */
        border-radius: 16px;
        overflow: hidden;
    }
    
    .mobile-story-image-container img {
        width: 100%;
        display: block;
    }
    
    /* --- Yatay Kaydırma (Dikey Akışa Geçiş) --- */
    .horizontal-scroll-section { height: auto !important; padding: 4rem 2rem;}
    .horizontal-container { height: auto; overflow: visible; }
    .horizontal-track { flex-direction: column; width: 100%; padding-left: 0; gap: 2rem; }
    .h-card { width: 100%; max-width: 500px; height: auto; margin: 0 auto; }
    
    /* --- İletişim Formu --- */
    .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
}


/* Mobil Cihazlar (768px ve aşağısı) */
@media (max-width: 768px) {
    /* --- Header ve Hamburger Menü --- */
    .main-nav {
        position: fixed; top: 0; right: 0;
        width: 70%; height: 100vh;
        background: rgba(12, 15, 26, 0.9);
        backdrop-filter: blur(10px);
        flex-direction: column; justify-content: center; align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        display: flex;
    }
    .main-nav.is-open { transform: translateX(0); }
    .main-nav ul { flex-direction: column; text-align: center; gap: 2.5rem; }
    
    .hamburger-menu {
        display: flex; flex-direction: column; justify-content: space-around;
        width: 30px; height: 25px;
        background: transparent; border: none; cursor: pointer;
        z-index: 1001;
    }
    .hamburger-menu span { width: 100%; height: 3px; background-color: #fff; border-radius: 2px; }

    /* --- Hero Alanı --- */
    .hero-video { display: none; }
    .hero-section { background-image: url('/assets/images/mobil/mobil.png'); background-size: cover; background-position: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.2rem; }

     /* --- Scrollytelling (Mobil için İnce Ayarlar) --- */
    .scrollytelling-section {
        padding: 4rem 1rem;
    }
    
    .text-block h2 {
        font-size: 2rem;
    }
    
    .text-block p {
        font-size: 1.1rem;
    }
    
    .mobile-story-image-container {
        margin-bottom: 4rem;
        border-radius: 12px;
    }
    
    /* --- Bento Grid --- */
    .bento-grid { grid-template-columns: 1fr; }
    .card-wide, .card-tall { grid-column: auto; grid-row: auto; }
    
    /* --- İletişim Formu --- */
    #contact-section { padding: 4rem 1rem; }
}

/* style.css dosyanıza ekleyin */

/* Header'daki logo ve menüyü iki uca yaslamak için */
/* FOOTER STİLLERİ */
.site-footer {
    background-color: #0c0f19;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #fff;
}
/* GİZLİLİK POLİTİKASI SAYFASI STİLLERİ */
.policy-page {
    padding-top: 120px; /* Sabit header'ın arkasında kalmaması için */
    padding-bottom: 4rem;
}

.policy-page .container {
    max-width: 800px; /* Metinlerin okunabilirliği için daha dar bir alan */
}

.policy-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.policy-page p, .policy-page ul {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
}

.policy-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

.policy-page ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.policy-page a {
    color: #5d82df; /* Sitedeki mavi vurgu rengi */
    text-decoration: none;
    font-weight: bold;
}

.policy-page a:hover {
    text-decoration: underline;
}

/* Header'daki linkleri ana sayfaya yönlendirecek şekilde düzeltme */
.policy-page .site-header nav a {
    /* Hover efektini koru */
}