.koltseg-section {
    background-color: #F5F0E8;
    padding: 80px 20px;
    text-align: center;
}

.koltseg-focim {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 42px;
    color: #0A4B55;
    margin-bottom: 20px;
}

.koltseg-focim span {
    color: #996C2D;
}

.koltseg-alcim {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #0A4B55;
    max-width: 850px;
    margin: 0 auto 40px;
}

.koltseg-kiemelt-box {
    background-color: #0A4B55;
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: 26px;
    line-height: 36px;
    border-radius: 24px;
    padding: 24px;
    max-width: 707px;
    margin: 0 auto 42px;
}

.koltseg-sikerdij-cim {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 36px;
    color: #0A4B55;
    margin-bottom: 20px;
}

.koltseg-szoveg {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #0A4B55;
    max-width: 707px;
    margin: 0 auto 16px;
}

/* Hanghullám */
.koltseg-wave-wrap {
    margin: 40px auto;
    max-width: 952px;
    width: 100%;
    margin-bottom: 12px;
}

.koltseg-wave-svg {
    width: 100%;
    height: 100%;
}

.koltseg-wave-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gomb */
.koltseg-gomb-wrap {
    margin-top: 60px;
}

.koltseg-gomb {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0A4B55;
    border: 2px solid #0A4B55;
    border-radius: 50px;
    padding: 12px 36px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.koltseg-gomb:hover {
    background-color: #0A4B55;
    color: #ffffff;
}

/* Kiemelt box animáció */
.koltseg-box-anim {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.koltseg-box-anim.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Wave animáció */
.koltseg-wave-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.koltseg-wave-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .koltseg-focim {
        font-size: 30px;
    }

    .koltseg-kiemelt-box {
        padding: 24px 20px;
        font-size: 16px;
    }

    .koltseg-sikerdij-cim {
        font-size: 28px;
    }
}