* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #20B2AA;
    --secondary-color: #16A085;
    --accent-color: #fafaee;
    --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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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;
}


@font-face {
    font-family: 'YourCustomFont';
    src: url('./font/alfont_com_AlFont_com_Segoe.UI_DownloadSoftware.iR_.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}


p, .class-p {
    /* margin-bottom: 1rem; */
    font-family: 'YourCustomFont';
    font-size: 1.2rem;
    font-weight: 400;
}


.about {
    background-color: var(--light-bg);
}

.about-item {
    margin-bottom: 2rem;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    animation: fadeInUp 0.6s ease-out;
}

.about-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-item ul {
    list-style: none;
    padding-right: 20px;
}

.about-item li {
    padding: 5px 0;
    position: relative;
}

.about-item li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

.hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
    padding: 120px 40px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-tille {
    background: #16A085;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.section-header p {
    color: #16A085;
    font-size: 2rem;
    text-align: center;
}