@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

body {
    font-family: 'Cairo', sans-serif;
    background-color: #e0e0e0;
    margin: 0;
    padding: 0;
}

.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

h2 {
    color: #003366;
    font-size: 22px; /* تم تصغير الحجم هنا */
    margin-bottom: 30px;
}

.boxes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.box {
    background-color: #003366;
    color: white;
    text-decoration: none;
    padding: 30px;
    border-radius: 15px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.box:hover {
    background-color: #00509e;
}

.box i {
    margin-bottom: 15px;
}

.box span {
    font-size: 18px;
}
