* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #20B2AA;
    --secondary-color: #16A085;
    --accent-color: #F5F5DC;
    --text-color: #2C3E50;
    --light-bg: #FAFAFA;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --sidebar-width: 280px;
    --sidebar-bg: linear-gradient(135deg, #20B2AA 0%, #16A085 100%);
    --sidebar-link-color: rgba(255, 255, 255, 0.8);
    --sidebar-link-hover-bg: rgba(255, 255, 255, 0.2);
    --sidebar-link-active-color: white;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--accent-color);
    direction: rtl;
    overflow-x: hidden;
    transition: margin-right 0.4s ease;
}

.container {
    max-width: auto;
    margin: 0 auto;
    padding: 0 auto;
}

h1 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 3rem;
}

h2 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

h3 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2rem;
}

h4 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h5 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact {
    background-color: var(--light-bg);
}


.contact-item {
    display: flex;
    align-items: flex-start;
    /* لضبط ارتفاع العناصر من الأعلى */
    gap: 10px;
    /* المسافة بين الأيقونة والنص */
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);    
}
.contact-item1 {
    justify-content: space-around;    
}



.contact-item i {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    /* حجم الأيقونة */
    flex-shrink: 0;
    /* منع الأيقونة من التقلص */

}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item div {
    flex: 1;
    /* يجعل النص يأخذ المساحة المتبقية */
}


.contact-section {
    /* background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%); */
    padding-top: 15px;
    align-items: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    background-color: var(--primary-color);
    padding: 20px 20px;

}

.section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: #16A085;
    margin-bottom: 40px;
}