<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f0f8ff, #e0f0ff);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 90%;
    box-sizing: border-box;
    animation: fadeIn 1s ease-in-out;
    position: relative;
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.language-switcher {
    position: absolute;
    top: 15px;
    right: 15px;
}

.language-switcher a {
    color: #555;
    text-decoration: none;
    font-weight: bold;
    padding: 4px 8px;
    font-size: 14px;
}

.language-switcher a:hover {
    color: #007bff;
}

h1 {
    color: #333;
    margin-bottom: 10px;
    font-size: 26px;
}

p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.button {
    display: inline-flex; /* Changed from inline-block to inline-flex */
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    text-align: center; /* Ensures text alignment */
    margin: 10px;
    padding: 12px 24px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    transition: background 0.3s, transform 0.2s;
    flex: 1 1 200px;
    box-sizing: border-box;
    min-height: 60px; /* Adjust minimum height if needed */
}

.button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.rtl {
    direction: rtl;
}

/* Responsive adjustments for Tablets */
@media (max-width: 768px) {
    .container {
        padding: 30px;
    }

    .logo {
        max-width: 120px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 15px;
    }

    .button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Responsive adjustments for Mobile */
@media (max-width: 480px) {
    .container {
        padding: 24px;
        margin: 12px;
    }

    .button {
        font-size: 16px;
        padding: 12px 16px;
        width: 100%;
    }

    h1 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }
}

.footer-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #007bff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}</pre></body></html>