/* Base Styles and CSS Variables */
:root {
    /* Color Palette */
    --primary-color: #347494;
    --secondary-color: #eaf5f7;
    --text-color: #50555c;
    --heading-color: #1D2023;
    --highlight-color: #d6d939;
    --background-color: #ffffff;
    --background-light: #f8f8f8;
    --overlay-color: rgba(0, 0, 0, 0.45);
    --border-color: rgba(0, 0, 0, 0.08);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    direction: rtl;
    text-align: right;
    padding-top: 60px; /* Space for the fixed header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--heading-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--heading-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 15px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 20px;
}

/* Common utility styles */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
}