.losleben-three-boxes-buttons {
    padding: 80px 0;
    font-family: 'Quicksand', sans-serif;
    text-align: center;
}

.losleben-three-boxes-buttons h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
}

.losleben-three-boxes-buttons p.subtext {
    font-size: 20px;
    margin-bottom: 60px;
    color: #666;
}

.losleben-tbb-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.losleben-tbb-box {
    flex: 1;
    min-width: 320px;
    background: #f4f6f3; /* Light green-grey background */
    padding: 50px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.losleben-tbb-box.is-featured {
    background: #ffffff;
    border-color: #F2AE8F;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.losleben-tbb-box .badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #F2AE8F;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.losleben-tbb-box .box-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
}

.losleben-tbb-box .box-icon svg {
    width: 100%;
    height: 100%;
    fill: #F2AE8F;
}

.losleben-tbb-box h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.losleben-tbb-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
    flex-grow: 1;
}

.losleben-tbb-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 18px;
    color: #444;
}

.losleben-tbb-list li::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-top: 2px;
}

.losleben-tbb-button {
    display: block;
    padding: 15px 25px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: opacity 0.3s;
}

.losleben-tbb-button:hover {
    opacity: 0.9;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 991px) {
    .losleben-tbb-box.is-featured {
        transform: none;
        margin: 20px 0;
    }
}
