body {
    font-family: 'Inter', sans-serif;
}

.hero.is-light .hero-body {
    padding: 3rem 1.5rem;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1em 1.5em -0.5em rgba(10, 10, 10, 0.15), 0 0 0 1px rgba(10, 10, 10, 0.02);
}

.card.is-popular {
    border: 2px solid hsl(171, 100%, 41%); /* 'primary' de Bulma */
    box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
    transform: scale(1.05);
    z-index: 10;
}

.card.is-popular .card-header {
    background-color: hsl(171, 100%, 41%);
}

.card.is-popular .card-header-title {
    color: #fff;
}

.columns.is-centered .column {
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-left: 0;
    text-align: left;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.features-list li .fa-check-circle {
    color: hsl(141, 71%, 48%);
    margin-right: 0.5rem;
}