.waldbyg-packages {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
}

.waldbyg-packages .package {
    width: 100%;
}

.waldbyg-packages .package .info {
    border-radius: 1rem;
    color: #ffffff;
    padding: 2rem;
}

.waldbyg-packages .package .name {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.waldbyg-packages .package .price {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 2.5rem;
    margin-top: 1.5rem;
}

.waldbyg-packages .package .conditions {
    margin-top: 1.5rem;
    min-height: 40px;
    font-weight: 600;
}

.waldbyg-packages .package .features {
    padding: 0 1rem;
}

.waldbyg-packages .package .features-heading {
    align-items: center;
    color: #3F7FC9;
    cursor: pointer;
    display: flex;
    font-size: 1.5rem;
    gap: 1.25rem;
    margin: 1rem 0;
}

.waldbyg-packages .package .features .features-heading .icon {
    transform: rotate(-90deg);
}

.waldbyg-packages .package .features.open .features-heading .icon {
    transform: rotate(0deg);
}

.waldbyg-packages .package .features-intro {
    color: #294792;
    font-weight: 600;
    margin-bottom: 1rem;
}

.waldbyg-packages .package .features-list {
    color: #294792;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.waldbyg-packages .package .features-list li {
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}

.waldbyg-packages .package .features-list li:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 840px) {
    .waldbyg-packages {
        gap: 20px;
        justify-content: start;
    }

    .waldbyg-packages .package {
        max-width: none;
        width: calc(50% - 10px);
    }

    .waldbyg-packages .package .description {
        min-height: 100px;
    }

    .waldbyg-packages .package .features {
        padding: 0 2em;
    }

    .waldbyg-packages .package .features-heading {
        margin: 2rem 0;
    }
}

@media screen and (min-width: 1280px) {
    .waldbyg-packages .package {
        max-width: none;
        width: calc(25% - 20px);
    }

    .waldbyg-packages .package .description {
        min-height: 155px;
    }
}