.tbsz-section {
    background-color: #0F4A55;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tbsz-felso-cim {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 38px;
    color: #ffffff;
    line-height: 51px;
}

.tbsz-focim {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 58px;
    line-height: 78px;
    color: #D7AF96;
    margin: 32px 0;
}

.tbsz-leiras {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin: 0 auto 32px;
    max-width: 850px;
}

.tbsz-alcim {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 51px;
    color: #ffffff;
    margin-bottom: 64px;
}

/* Kártyák */
.tbsz-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.tbsz-card {
    flex: 1 1 260px;
    padding: 20px;
    text-align: center;
}

.tbsz-ikon {
    width: auto;
    height: 100px;
    object-fit: contain;
    margin-bottom: 24px;
}

.tbsz-card-cim {
    font-family: 'Work Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: #FFF;
    margin-bottom: 16px;
}

.tbsz-card-hr {
    width: 100px;
    height: 2px;
    background-color: #D7AF96;
    border: none;
    margin: 0 auto 16px;
}

.tbsz-card-szoveg {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    opacity: 0.85;
}

/* Gombok */
.tbsz-gombok {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tbsz-gomb {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 12px 36px;
    text-decoration: none;
    min-width: 240px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
}

.tbsz-gomb-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.tbsz-gomb-outline:hover {
    background-color: #ffffff;
    color: #0F4A55;
}

.tbsz-gomb-solid {
    background-color: #3FE58C;
    border: 2px solid #3FE58C;
    color: #000000;
}

.tbsz-gomb-solid:hover {
    background-color: #2bc978;
    border-color: #2bc978;
}

@media (max-width: 768px) {
    .tbsz-focim {
        font-size: 42px;
    }

    .tbsz-alcim {
        font-size: 26px;
    }

    .tbsz-cards {
        flex-direction: column;
        align-items: center;
    }

    .tbsz-card {
        max-width: 100%;
    }

    .tbsz-gombok {
        flex-direction: column;
        align-items: center;
    }

    #tbszCarousel .carousel-item,
    .tbsz-card {
        height: 400px;
    }
}

/* Szöveg animáció - alulról fel */
.tbsz-anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s cubic-bezier(0.34, 1.3, 0.64, 1) var(--delay, 0s);
}

.tbsz-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Kártya animáció - balról jobbra */
.tbsz-card-anim {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease var(--card-delay, 0s), transform 0.8s cubic-bezier(0.34, 1.3, 0.64, 1) var(--card-delay, 0s);
}

.tbsz-card-anim.visible {
    opacity: 1;
    transform: translateX(0);
}

#tbszCarousel .carousel-indicators {
    position: relative;
    margin: 40px 0;
}