.lykke-process {
    background: #FCF8F5;
    padding: 80px 20px;
    font-family: "Inter", sans-serif;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.lykke-process h2 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 64px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.divider {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.divider-icon {
    width: 280px;
    height: auto;
    display: block;
}

.intro {
    text-align: center;
    font-size: 28px;
    line-height: 1.5;
    color: #444;
    max-width: 950px;
    margin: 0 auto 70px;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.number {
    width: 56px;
    height: 56px;
    background: #7f8d73;
    color: white;
    border-radius: 50%;
    margin: 0 auto -28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    z-index: 2;
    position: relative;
}

.icon-circle {
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: #f6f2ee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle img {
    width: 110px;
    height: auto;
}

.step h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 18px;
}

.step p {
    font-size: 24px;
    line-height: 1.5;
    color: #555;
}

.arrow {
    color: #bfc7b5;
    font-size: 50px;
    margin-top: 110px;
}

.cta-box {
    margin-top: 90px;
    background: #f7f3ef;
    border-radius: 40px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.cta-illustration img {
    max-width: 360px;
}

.cta-content {
    text-align: center;
}

.cta-content p {
    font-size: 25px;
    color: #444;
    margin-bottom: 30px;
}

.family-script {
    display: inline-block;
    height: 55px;
    width: auto;
    vertical-align: middle;
    margin-left: 8px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    height: 72px;
    background: #7f8d73;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #6d7a63;
}

@media (max-width: 1100px) {

    .steps {
        flex-direction: column;
    }

    .arrow {
        display: none;
    }

    .step {
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-box {
        flex-direction: column;
    }

    .lykke-process h2 {
        font-size: 46px;
    }

    .intro {
        font-size: 22px;
    }
}