:root {
    --primary-color-dark-cyan: #247b7b; /* Dark moderate cyan */
    --primary-color-dark-green: #6c8b59; /* Mostly desaturated dark green */
    --primary-color-orange: #d89350; /* Moderate orange */
    --text-color-dark: #2f2f2f; /* Very dark (mostly black) yellow */
    --background-color-light: #f8f7f5; /* Light grayish green */
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif; /* Approved font */
    margin: 0;
    padding: 0;
    background-color: var(--background-color-light);
    color: var(--text-color-dark);
    direction: rtl; /* Right-to-left for Arabic */
    text-align: right; /* Align text to the right */
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #ffffff; /* White background as recommended for logo clarity */
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    max-width: 300px; /* Adjust as needed for prominence */
    height: auto;
    display: block; /* Ensures proper spacing */
    margin: 0 auto; /* Center the logo */
}

h1 {
    font-weight: 700; /* Bold for titles */
    color: var(--primary-color-dark-cyan);
    margin-bottom: 20px;
}

p {
    font-weight: 400; /* Regular for content text */
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-us {
    padding: 50px 0;
}

footer {
    background-color: var(--text-color-dark);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    margin-top: 30px;
}

footer a {
    color: var(--primary-color-orange); /* Using an accent color for links */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}