/* ===============================
   Privacy Policy Page Styles
   سياسة الخصوصية
   =============================== */

.pages {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.pages .container {
    max-width: 900px;
    margin: auto;
}

/* ===== Main Title ===== */
.pages h1 {
    font-size: 34px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 28px;
    text-align: center;
    position: relative;
}

.pages h1::after {
    content: "";
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #22c55e);
    display: block;
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ===== Section Titles ===== */
.pages h2 {
    font-size: 23px;
    font-weight: 700;
    color: #111827;
    margin: 42px 0 16px;
    position: relative;
    padding-right: 14px;
}

.pages h2::before {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    width: 4px;
    height: 70%;
    background-color: #0ea5e9;
    border-radius: 3px;
}

/* ===== Paragraphs ===== */
.pages p {
    font-size: 16.5px;
    line-height: 1.95;
    color: #374151;
    margin-bottom: 18px;
    text-align: justify;
}

/* ===== Lists ===== */
.pages ul {
    margin: 22px 0 32px;
    padding: 0;
    list-style: none;
}

.pages ul li {
    background: #ffffff;
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 12px;
    font-size: 15.5px;
    color: #1f2937;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

/* ===== Soft Entrance Animation ===== */
.pages h1,
.pages h2,
.pages p,
.pages ul li {
    opacity: 0;
    animation: fadeUpSoft 0.6s ease forwards;
}

/* stagger effect */
.pages h2 { animation-delay: 0.05s; }
.pages p  { animation-delay: 0.08s; }
.pages ul li { animation-delay: 0.12s; }

/* ===== Animation ===== */
@keyframes fadeUpSoft {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .pages {
        padding: 90px 16px 40px;
    }

    .pages h1 {
        font-size: 26px;
    }

    .pages h2 {
        font-size: 19px;
    }

    .pages p {
        font-size: 15.5px;
        line-height: 1.85;
    }
}

/* ===== End of CSS ===== */