body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #e9ecef;
    color: #333;
    margin: 0;
    padding: 0;
    direction: rtl;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #007bff;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

.description, .contact, .services {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.description h2, .contact h2, .services h2 {
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.services ul {
    list-style-type: none;
    padding: 0;
}

.services li {
    background-color: #f8f9fa;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    font-size: 1.2em;
}

.services li::before {
    content: "✅";
    margin-left: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #007bff;
    color: #fff;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .gallery img {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .gallery img {
        flex: 1 1 100%;
    }
}
