/* Mesnevi Gümüş Özel Renk Paleti */
:root {
    --ana-koyu-yesil: #0b2414;    /* Arka plan ve ağır tonlar */
    --vurgu-yesili: #84a844;      /* Başlıklar ve önemli detaylar */
    --acik-gri: #f4f7f5;          /* Sayfa arka planı */
    --beyaz: #ffffff;             /* Kart arka planı */
    --metin-rengi: #2c3e50;       /* Gövde metni */
}

.privacy-policy-container {
    padding: 80px 20px;
    background-color: var(--acik-gri);
    color: var(--metin-rengi);
    font-family: 'Poppins', sans-serif; /* Sitenizde kullanılan fonta göre değiştirebilirsiniz */
    line-height: 1.8;
}

.privacy-policy-container .container {
    max-width: 950px;
    margin: 0 auto;
}

.privacy-card {
    background: var(--beyaz);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(11, 36, 20, 0.08);
    border-top: 5px solid var(--ana-koyu-yesil);
}

.entry-header {
    margin-bottom: 40px;
    text-align: center;
}

.entry-title {
    font-size: 2.8rem;
    color: var(--ana-koyu-yesil);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.last-updated {
    font-size: 0.9rem;
    color: #7f8c8d;
    display: block;
    margin-top: 10px;
}

.policy-section {
    margin-bottom: 45px;
}

.policy-section h2 {
    font-size: 1.6rem;
    color: var(--vurgu-yesili);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

/* Liste başlarına yeşil işaretleyici ekler */
.policy-section ul li::before {
    content: "•";
    color: var(--vurgu-yesili);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.notice-box {
    background-color: #0b24140a; /* Koyu yeşilin çok şeffaf hali */
    border-left: 4px solid var(--vurgu-yesili);
    padding: 20px;
    border-radius: 4px;
    font-style: italic;
    margin: 25px 0;
    color: var(--ana-koyu-yesil);
}

.contact-info {
    background: var(--ana-koyu-yesil);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.contact-info strong {
    color: var(--vurgu-yesili);
    margin-right: 10px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--vurgu-yesili);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .privacy-card {
        padding: 30px 20px;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .privacy-policy-container {
        padding: 40px 15px;
    }
}