/* ضبط الخط والخلفية وتوسيط المحتوى */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* تنسيق الهيدر */
header {
    background-color: #007bff;
    color: white;
    padding: 20px;
    font-size: 24px;
}

/* ضبط أقسام الصفحة */
section {
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* تنسيق العناوين */
h1, h2 {
    margin: 10px 0;
}

/* تنسيق الفقرات */
p {
    font-size: 18px;
    color: #333;
}

/* تنسيق قائمة الروابط */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    display: inline-block;
    margin: 10px;
}

/* تنسيق الروابط */
a {
    text-decoration: none;
    font-weight: bold;
    color: #007bff;
    transition: 0.3s;
    padding: 10px;
    border-radius: 5px;
}

a:hover {
    background-color: #007bff;
    color: white;
}
