﻿/* الخط العام */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
    direction: rtl;
}

header {
    background-color: #004d7a;
    color: white;
    padding: 20px 0;
    text-align: center;
}

    header h1 {
        margin: 0;
    }

section#policy-content {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
    background-color: white;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

h2 {
    color: #004d7a;
}

footer {
    background-color: #004d7a;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

    footer p {
        margin: 0;
    }

a {
    color: #004d7a;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }
