body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #e0f2ff; /* Light blue background */
    min-height: 100vh;
    margin: 0;
    text-align: center;
    color: #1e3a8a;
}

h1 {
    margin-top: 50px;
    font-size: 2.5rem;
    color: #1e3a8a;
}

.menu-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.card {
    background: white;
    color: #1e3a8a;
    width: 280px;
    height: 160px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card h2 {
    margin: 0;
    font-size: 1.6rem;
}

.card p {
    margin-top: 10px;
    font-size: 1rem;
    color: #2563eb;
}
