@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

body {
    font-family: 'Cairo', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    direction: rtl;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

nav {
    background-color: #283593;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

nav .logo h1 {
    color: #fff;
    margin: 0;
    font-size: 2em;
    text-align: center;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

header h1 {
    font-size: 2.8em;
    color: #283593;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #555;
    margin: 0;
}

.content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    font-size: 1.8em;
    color: #283593;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #ff7043;
    bottom: 0;
    right: 0;
}

.policy-section p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #444;
    margin: 0;
    text-align: justify;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #283593;
    color: #fff;
    border-radius: 8px;
    margin-top: 40px;
}
