﻿/* إعدادات عامة */
body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #ede7f6, #d1c4e9);
    color: #3a2a5a;
    line-height: 1.7;
}

/* رأس الصفحة */
header {
    text-align: center;
    padding: 3rem 1rem 2rem;
    background: linear-gradient(90deg, #9575cd, #7986cb);
    color: white;
    border-radius: 0 0 30px 30px;
}

    header h1 {
        font-size: clamp(1.8rem, 5vw, 2.3rem);
        margin-bottom: 0.5rem;
        color: white;
    }

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #f5f5f5;
    max-width: 800px;
    margin: auto;
}

/* قسم المحتوى */
.privacy-container {
    padding: 1rem;
}

.privacy-content {
    max-width: 900px;
    background: #ffffffdd;
    margin: 2.5rem auto;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(92, 107, 192, 0.25);
    line-height: 1.8;
}

    .privacy-content h2 {
        color: #5c6bc0;
        margin-top: 1.5rem;
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }

    .privacy-content p,
    .privacy-content li {
        margin: 1rem 0;
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
        color: #3a2a5a;
    }

    .privacy-content ul {
        padding-right: 1.2rem;
        list-style-type: disc;
    }

/* الزر للعودة */
.back-button {
    text-align: center;
    margin-top: 2rem;
}

    .back-button a {
        display: inline-block;
        background-color: #3a2a5a;
        color: white;
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

        .back-button a:hover {
            background-color: #4e61ab;
        }

/* التذييل */
footer {
    background-color: #4e61ab;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
    font-size: 0.9rem;
    box-shadow: inset 0 3px 6px #3c4a85;
    border-radius: 12px 12px 0 0;
}

    footer nav a {
        color: white;
        margin: 0 0.5rem;
        text-decoration: underline;
    }

/* متجاوب بشكل إضافي */
@media (max-width: 480px) {
    .privacy-content {
        padding: 1.5rem;
        margin: 1.5rem 1rem;
    }

    footer {
        font-size: 0.85rem;
    }

    .back-button a {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
}
