body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.divider {
    width: 80%;
    height: 2px;
    background-color: #a6872d;
    margin: 20px auto;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    width: 50px;
    height: 5px;
    background-color: #a6872d;
    position: absolute;
    top: -2px;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

h1 {
    color: #a6872d;
    font-size: 30px;
    margin-bottom: 40px;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse; /* عرض من اليمين لليسار */
    gap: 10px;
    justify-content: center;
}

.button-container a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #a6872d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.button-container a:hover {
    background-color: #bcbac7;
}

.button-container a.disabled {
    background-color: #ccc;
    color: #666;
    pointer-events: none;
    cursor: not-allowed;
}

