/* ===============================
   About Page Styles | من نحن
   =============================== */

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

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

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

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

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

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

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

/* Highlight brand name */
.pages strong {
    color: #111827;
    font-weight: 700;
}

/* ===== Bullet List ===== */
.pages ul {
    margin: 20px 0 30px;
    padding: 0;
    list-style: none;
}

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

/* ===== Smooth entrance feel ===== */
.pages p,
.pages h2,
.pages ul li {
    animation: fadeUp 0.6s ease forwards;
}

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

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

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

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

    .pages p {
        font-size: 16px;
        line-height: 1.8;
    }
}

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