/* إعدادات عامة لكل الصفحة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #F4F1EA;
    color: #2B3A4A;
    text-align: center;
    padding: 50px 20px;
}

/* الترويسة */
header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
    color: #6B7280;
}

/* المحتوى الرئيسي */
main {
    margin-top: 40px;
}

/* الزر */
button {
    background-color: #B5573B;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background-color: #9c4830;
}