/* إعدادات الصفحة */
body {
    font-family: 'Arial', sans-serif;
    background-color: #2f3136;
    color: #dcddde;
    margin: 0;
    padding: 0;
}

/* الحاوية الرئيسية */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* رأس الصفحة */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #23272a;
    padding: 15px;
    border-radius: 8px;
}

.header-content i {
    font-size: 2rem;
    color: #7289da;
}

header h1 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-left: 10px;
}

/* محتوى الصفحة */
.content {
    margin-top: 30px;
}

h2 {
    color: #7289da;
    font-size: 1.3rem;
    margin-top: 20px;
}

p, ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #dcddde;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* أيقونات */
i {
    margin-right: 10px;
}

/* تذييل الصفحة */
footer {
    background-color: #23272a;
    padding: 15px;
    margin-top: 30px;
    text-align: center;
    color: #dcddde;
    font-size: 0.9rem;
    border-radius: 8px;
}

/* تنسيق الروابط */
a {
    color: #7289da;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
