html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #c6c5d3, #c6c5d3);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    text-align: center;
}

.header {
    margin-bottom: 30px;
}

.logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.title {
    font-size: 20px;
    color: #ffffff;
    margin: 0;
}

.grid-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.card {
    display: flex;
    align-items: center;
    background-color: #2907c2;
    padding: 15px 20px;
    border-radius: 40px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
    width: 100%;
    max-width: 100%;
    justify-content: center;
}

.card:hover {
    background-color: #8162ee;
}

.card img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.label {
    font-size: 16px;
    text-align: center;
}

/* Responsif untuk layar kecil */
@media (max-width: 480px) {
    .card {
        padding: 12px 15px;
    }

    .card img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .label {
        font-size: 14px;
    }
}
