/* 🌐 تصميم عصري لصفحات الشروط والسياسات */
.privacy-section {
    font-family: "Cairo", "Poppins", sans-serif;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    color: #2b2b2b;
    line-height: 1.8;
    padding: 60px 30px;
    max-width: 950px;
    margin: 70px auto;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* 🏷️ العنوان الرئيسي */
.privacy-section h1 {
    text-align: center;
    font-size: 2.3rem;
    color: var(--main-color, #007bff);
    font-weight: 700;
    margin-bottom: 45px;
    position: relative;
}

.privacy-section h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 3px;
    background: var(--main-color, #007bff);
}

/* 🧩 العناوين الفرعية */
.privacy-section h2 {
    color: var(--secondary-color, #0056b3);
    font-size: 1.25rem;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* 📋 النصوص */
.privacy-section p {
    color: #444;
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1rem;
}

/* 📜 القوائم */
.privacy-section ul {
    list-style-type: disc;
    padding-left: 25px;
    color: #333;
    margin-bottom: 25px;
}

.privacy-section li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* 🔗 الروابط */
.privacy-section a {
    color: var(--main-color, #007bff);
    text-decoration: none;
    transition: 0.2s;
    font-weight: 500;
}

.privacy-section a:hover {
    text-decoration: underline;
    color: var(--secondary-color, #0056b3);
}

/* 🧱 الأقسام */
section {
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--main-color, #007bff);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

section:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* 🕒 آخر تحديث */
.last-update {
    text-align: center !important;
    color: gray;
    margin-top: 40px;
    font-size: 0.9rem;
}

/* 🌗 الوضع الليلي */
body.dark-mode .privacy-section {
    background: #1e1e1e;
    color: #e0e0e0;
    box-shadow: none;
}

body.dark-mode .privacy-section h1,
body.dark-mode .privacy-section h2 {
    color: #00bcd4;
}

body.dark-mode .privacy-section a {
    color: #00bcd4;
}

body.dark-mode section {
    background: rgba(40, 40, 40, 0.95);
    border-left: 4px solid #00bcd4;
}

/* 📱 التجاوب */
@media (max-width: 768px) {
    .privacy-section {
        padding: 35px 18px;
        margin: 40px 10px;
    }

    .privacy-section h1 {
        font-size: 1.8rem;
    }

    .privacy-section h2 {
        font-size: 1.1rem;
    }

    section {
        padding: 15px;
    }

    .lang-switch {
        top: 15px;
        right: 15px;
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}