* {
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    margin: 0;
    background: #f2f4f7;
}

.header {
    background: linear-gradient(135deg, #2196F3, #21CBF3);
    color: white;
    padding: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.header h2 {
    margin: 0;
}

.header p {
    margin: 5px 0 0;
    font-size: 14px;
}

.container {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.card-menu {
    background: white;
    border-radius: 18px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: 0.2s;
}

.card-menu:hover {
    transform: scale(1.03);
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
