/* Reset Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* الهيدر */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    position: relative;
}

.navbar .logo img {
    width: 120px;
}

.menu-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu-links li {
    margin: 0;
}

.menu-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.menu-links a:hover {
    color: #f39c12;
}

#hamburger-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

#close-menu-btn {
    display: none;
}
/* التنسيق للصفحة */
.about-section {
    padding: 40px 15px;
    background-color: #f4f4f4;
    text-align: center;
}

.about-section h1, .about-section h2 {
    color: #333;
    font-size: 24px;
}

.contact-info {
    list-style: none;
    padding: 0;
    text-align: center;
}

.contact-info li {
    margin: 8px 0;
    font-size: 16px;
}

/* Privacy Section */
.privacy-section {
    text-align: center;
    padding: 40px 15px;
}

.container {
    max-width: 90%;
    margin: auto;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #004085;
    font-size: 22px;
}

p {
    font-size: 16px;
    line-height: 1.5;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 16px;
    padding: 6px 0;
}

/* Contact Info */
.contact-info {
    margin-top: 15px;
}

.contact-info li a {
    color: #004085;
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 12px;
    background: #004085;
    color: #fff;
    margin-top: 20px;
}

/* تحسين عرض الهاتف */
@media (max-width: 900px) {
    #hamburger-btn {
        display: block;
    }

      .menu-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 0px;
        width: 26%;
       
        background-color: #333;
        padding: 10px 0;
        text-align: center;
    }

    .menu-links.active {
        display: flex;
    }
	
	
}
