.process-hero {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 20px 24px 80px;
}
.process-like {
    margin-bottom: 40px;
}
.process-label {
    display: inline-block;
    background: #e8e2d6;
    color: #3a1448;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 18px;
}

.process-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #5a2d82;
}

.process-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    color: #555;
}

.process-timeline::before {
    display: none;
}

.step-marker.done {
    background: #3b7f5c;
    color: #fff;
    border-color: #3b7f5c;
}

.process-step {
    margin-bottom: 64px;
}

.step-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.step-card.beige {
    background: #f6f2ec;
    border-color: rgba(0, 0, 0, 0.04);
}

.step-card.success {
    background: #f3eef8;
    border-color: rgba(75, 28, 92, 0.08);
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
    align-items: center;
}
.step-card.successCTA{
    background: #f3eef8;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.step-card.success h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-card.success p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
}

.step-text h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step-text p {
    font-size: 16px;
    color: #444;
}

.step-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: -64px -64px -64px 0;
}

.step-image img {
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
    transform: translateX(1px);

    mask-image: linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,0.4) 15%,
            black 30%
    );

    -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,0.4) 15%,
            black 30%
    );
}

.process-cta-section {
    padding: 20px 24px 20px;
    text-align: center;
    background: #fff;
}

.process-cta {
    max-width: 1100px;
    margin: 0 auto;
}

.btn-process {
    display: inline-block;
    background: #4b1c5c;
    color: #fff;
    padding: 18px 52px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-process:hover {
    background: #3a1448;
}

.process-cta-sub {
    margin-top: 18px;
    font-size: 14px;
    color: #333;
}
.eu-advantages {
    max-width: 1100px;
    margin: 30px auto 80px;
    padding: 0 20px;
}

.eu-advantages-title {
    text-align: center;
    color: #5a2d82;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.eu-advantages-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.eu-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.eu-advantage-icon img {
    width: 56px;
    height: auto;
}

.eu-advantage-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.eu-advantage-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.eu-advantages-cta {
    margin-top: 40px;
    text-align: center;
    font-size: 17px;
    color: #5a2d82;
}
.info {
    font-family: 'Montserrat', sans-serif;
}

.info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #5a2d82;
    text-align: center;
    margin-bottom: 4px;
}

.info p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.step-card.reverse .step-image {
    order: 1;
    justify-content: flex-start;
    margin: -64px 0 -64px -64px;
}

.step-card.reverse .step-text {
    order: 2;
}

.step-card.reverse .step-image img {
    mask-image: linear-gradient(
            to left,
            transparent 0%,
            rgba(0,0,0,0.4) 15%,
            black 30%
    );

    -webkit-mask-image: linear-gradient(
            to left,
            transparent 0%,
            rgba(0,0,0,0.4) 15%,
            black 30%
    );
}

@media (max-width: 768px) {

    .process-hero {
        padding: 20px 16px 40px;
    }

    .process-hero h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .process-hero p {
        font-size: 15px;
        padding: 0 6px;
    }


    .step-card {
        grid-template-columns: 1fr !important; /* było 1fr 1fr */
        padding: 24px !important;             /* było 64px */
        gap: 18px !important;                 /* było 48px */
        border-radius: 18px;
    }

    .step-text h3 {
        font-size: 18px;
        line-height: 1.25;
    }

    .step-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .step-image {
        justify-content: center !important;
        margin: 0 !important;
        width: 100%;
    }

    .step-image img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    .step-card.reverse .step-image,
    .step-card.reverse .step-text {
        order: unset !important;
        margin: 0 !important;
    }

    .step-card.successCTA {
        padding: 28px 20px !important;
    }

    .eu-advantages-title {
        font-size: 26px;
        margin-bottom: 26px;
    }
}
.process-hero .section-title-serif{
    color: #590F64;
}



