:root {
    --primary-color: #4f46e5;
    --secondary-color: #f59e0b;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #f3f4f6;
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: --bg-color;
    background: linear-gradient(135deg, #f3f4f6 0%, #eef2ff 100%);
    color: var(--text-color);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: var(--card-bg);
    box-shadow: var(--shadow-sm);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Main Content */
main {
    flex: 1;
    padding: 40px 0;
}

.policy-section {
    background-color: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
}

.section-header {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--bg-color);
    padding-bottom: 20px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Policy Items */
.policy-item {
    margin-bottom: 25px;
}

.policy-item:last-child {
    margin-bottom: 0;
}

.policy-item h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    padding-right: 15px;
}

.policy-item h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.policy-item p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.policy-item ul {
    list-style-type: none;
    padding-right: 20px;
}

.policy-item ul li {
    position: relative;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 1rem;
}

.policy-item ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    right: -15px;
}

.policy-item ul li strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Footer */
.main-footer {
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
    color: var(--text-light);
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-section {
        padding: 25px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .policy-item h3 {
        font-size: 1.2rem;
    }
}
