/* استيراد الخطوط من Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Oswald:wght@300;400;500;700&family=Cairo:wght@400;700&display=swap');

/* تعريفات الخطوط العامة */
body {
    font-family: 'Lato', sans-serif; /* الخط الافتراضي للجسم */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif; /* خط العناوين */
    margin-top: 20px;
    margin-bottom: 10px;
    color: #222;
}

/* أمثلة على استخدام الخطوط */
.main-heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.5em;
    color: #0056b3;
    text-align: center;
}

.sub-heading {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.5em;
    color: #555;
    text-align: center;
}

.arabic-text {
    font-family: 'Cairo', sans-serif; /* مثال لخط عربي، إذا كان هناك نص عربي */
    font-weight: 400;
    font-size: 1.1em;
    direction: rtl; /* لتحديد اتجاه النص العربي */
    text-align: right;
}

p {
    margin-bottom: 1em;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* يمكنك إضافة المزيد من الأنماط حسب الحاجة */
