
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    margin: 0;
    padding: 0;
    background: #fff8f0;
    color: #333;
}

header {
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    color: #222;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

    header img.logo {
        width: 80px;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    header h1 {
        margin: 0;
        font-size: 42px;
    }

    header p {
        font-size: 20px;
        margin: 10px 0 0;
    }

.cta {
    text-align: center;
    margin: 30px 0;
}

    .cta button {
        background: #ff4081;
        color: white;
        padding: 15px 30px;
        font-size: 18px;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        transition: background 0.3s;
    }

        .cta button:hover {
            background: #f50057;
        }

.section {
    padding: 30px;
    background: #fff;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    font-size: 23px;
}

    .section h2 {
        margin-top: 0;
        color: #e65100;
    }

    .services ul, .section ul {
        list-style: none;
        padding: 0;
    }

    .services li, .section li {
        margin-bottom: 12px;
    }

        .services li::before, .section li::before {
            content: '\2714';
            margin-left: 10px;
            color: #4caf50;
        }

.why-us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

    .why-us .item {
        background: #fff3e0;
        padding: 20px;
        border-radius: 10px;
        border-right: 5px solid #ff9800;
        transition: transform 0.3s, box-shadow 0.3s;
    }

        .why-us .item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }

        .why-us .item h3 {
            margin-top: 0;
            font-size: 25px;
            color: #d84315;
        }

.contact-form input, .contact-form textarea {
    width: 96%;
    padding: 12px;
    margin: 10px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.contact-form button {
    background: #29b6f6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

    .contact-form button:hover {
        background: #0288d1;
    }

.certificate {
    text-align: center;
    margin: 40px 20px;
}

    .certificate img {
        max-width: 350px;
        border: 3px solid #ffa000;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        width: 100%;
    }

.profile-photo {
    text-align: center;
    margin: 40px 20px;
}

    .profile-photo img {
        max-width: 220px;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

footer {
    text-align: center;
    padding: 20px;
    background: #f1f1f1;
    color: #555;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 32px;
    }

    header p {
        font-size: 16px;
    }

    .cta button {
        width: 90%;
        font-size: 16px;
    }

    .why-us {
        grid-template-columns: 1fr;
    }

    .section {
        margin: 10px;
        padding: 20px;
    }
}
}

.cta-buttons {
    text-align: center;
    margin: 40px 0;
}

    .cta-buttons a {
        display: inline-block;
        margin: 10px;
        padding: 15px 25px;
        font-size: 18px;
        border-radius: 8px;
        text-decoration: none;
        color: #fff;
    }

.whatsapp {
    background-color: #25D366;
}

.telegram {
    background-color: #0088cc;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-list li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }

    .service-list .icon {
        color: green;
        flex-shrink: 0;
        padding-top: 3px;
    }

    .service-list .text {
        line-height: 1.6;
    }