body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    direction: rtl;
    text-align: right;
}

h1, h2, h3 {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    margin: 0;
}

p {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    background-color: #928849;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    margin: 20px 0;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #6d6636;
}

/* Style for the header section */
.header {
    background: linear-gradient(135deg, #bdb060, #d8cd82); /* Modern gradient background */
    color: rgb(54, 54, 54);
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    margin-bottom: 30px; /* Add spacing below the header */
}

/* Content inside the header */
.header-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Modern h1 style */
.header-content h1 {
    font-size: 2.5em; /* Large font for title */
    font-weight: bold;
    margin-bottom: 15px; /* Spacing below the title */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Text shadow for depth */
}

/* Subtle paragraph style */
.header-content p {
    font-size: 1.2em; /* Larger font for better readability */
    margin: 0; /* Remove default margin */
}

/* Add spacing between list items */
ul {
    padding-right: 20px;
    list-style-type: square;
    margin: 10px 0; /* Add margin between sections */
}

ul li {
    line-height: 1.5;
    margin-bottom: 10px; /* Add space between list items */
}

/* Footer Styling */
.footer {
    width: 100%;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #333, #555);
    color: white;
    font-size: 1em;
    font-weight: bold;
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 40px; /* Ensures space between content and footer */
}


/* Email Link Styling */
.footer a {
    color: #FFD700; /* Golden email link */
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
    color: #FFA500; /* Orange on hover */
}
