* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background: #fff;
    color: #333;
    direction: rtl;
    text-align: right;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 20;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #333;
}

.cta-btn {
    padding: 10px 20px;
    background: #0066cc;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    height: 80vh;
    background: url('image1.webp') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    color: #fff;
    text-shadow: 0px 3px 15px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 20px;
    color: #fff;
    margin-top: 10px;
}

.hero-btn {
    margin-top: 20px;
    display: inline-block;
    background: #0066cc;
    padding: 12px 30px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

/* Sections */
.services, .about, .reviews, .contact {
    padding: 80px 40px;
}

.service-boxes {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-box {
    width: 300px;
    background: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
}

.about {
    background: #e9f4ff;
}

.reviews {
    text-align: center;
}

.review-boxes {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.review {
    width: 280px;
    background: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

button {
    padding: 14px;
    background: #0066cc;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

footer {
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #0066cc;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.faq-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

