/* التنسيق العام */
body {
    font-family: 'Arial', sans-serif;
    direction: rtl;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* الهيدر */
header {
    background-color: #0099cc;
    color: white;
    padding: 20px;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo {
    width: 50px;
}

h1 {
    font-size: 24px;
    font-weight: bold;
}

/* الصفحة الرئيسية */
.main-content {
    margin: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 28px;
    color: #333;
}

.packages {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.package {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 10px;
    width: 220px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.package h3 {
    font-size: 20px;
    color: #0099cc;
}

.package p {
    font-size: 16px;
    color: #555;
}

.buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.btn {
    background-color: #0099cc;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.btn:hover {
    background-color: #0077b3;
}

/* زر الرجوع */
.back-btn {
    background-color: #ff9900;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
}

.back-btn:hover {
    background-color: #e68a00;
}

/* الفوتر */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
