/* 🌐 تصميم عام للصفحة */
.privacy-section {
    font-family: "Cairo", sans-serif;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    color: #333;
    line-height: 1.8;
    padding: 50px 25px;
    max-width: 950px;
    margin: 60px auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* 🏷️ العنوان الرئيسي */
.privacy-section h1 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--main-color, #007bff);
    margin-bottom: 40px;
    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: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* 📋 الفقرات والقوائم */
.privacy-section p {
    color: #444;
    margin-bottom: 15px;
    text-align: justify;
}

.privacy-section ul {
    list-style-type: disc;
    padding-left: 25px;
    color: #333;
    margin-bottom: 20px;
}

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

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

.privacy-section a:hover {
    text-decoration: underline;
}

/* ⚡ تأثيرات عامة */
section {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.85);
    border-left: 4px solid var(--main-color, #007bff);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

/* 📱 استجابة الشاشات الصغيرة */
@media (max-width: 768px) {
    .privacy-section {
        padding: 25px 15px;
        margin: 30px 10px;
    }

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

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

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