.layanan-card{
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    height: 100%;
    border: 1px solid #ddd;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.layanan-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.layanan-icon{
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #f7f7f7;
    padding: 8px;
    border-radius: 10px;
}

.layanan-card h4{
    font-size: 26px;
    color: #23234d;
}

.layanan-list li{
    margin-bottom: 12px;
    color: #555;
    font-size: 17px;
}

.layanan-list i{
    color: #23234d;
    margin-right: 10px;
}

.btn-layanan{
    display: block;
    width: 100%;
    background: #23234d;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 25px;
    transition: 0.3s;
}

.btn-layanan:hover{
    background: #111133;
    color: #fff;
}

.btn-layanan i{
    margin-right: 8px;
}