body {
    font-family: Arial, sans-serif;
    text-align: center;
    direction: rtl;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 20px;
}

.service-details img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

h2 {
    color: #333;
}

.description {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.order-controls {
    margin-bottom: 15px;
}

.order-controls label {
    font-size: 16px;
    font-weight: bold;
}

.order-controls input {
    width: 60px;
    padding: 5px;
    font-size: 16px;
    text-align: center;
    margin-top: 5px;
}

.whatsapp-btn {
    display: block;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe57;
}