section.hero-standard.formalne-hero {
    background: #000;
}

/* Steps Section */
.formalne-steps {
    padding: 120px 0;
    background: #fff;
}

.formalne-steps__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.formalne-steps__header {
    text-align: center;
    margin-bottom: 80px;
}

.formalne-steps__header h2 {
    font-size: 2.8rem;
    color: #1e3a5f;
    margin-bottom: 20px;
}

.formalne-steps__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.formalne-step-card {
    padding: 50px;
    background: #f8fafc;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.formalne-step-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.formalne-step-card__number {
    font-size: 1rem;
    font-weight: 800;
    color: #00b1cf;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.formalne-step-card h3 {
    font-size: 1.8rem;
    color: #1e3a5f;
    margin-bottom: 20px;
}

.formalne-step-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Highlight Box */
.formalne-highlight-box {
    background: #fff;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 80px auto;
    border: 1px solid rgba(0, 177, 207, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.formalne-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #00b1cf;
}

.formalne-highlight-box h2 {
    font-size: 2.2rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.formalne-highlight-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Mobile */
@media (max-width: 1024px) {
    .formalne-steps__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .formalne-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .formalne-hero__container {
        padding: 0 1.5rem;
    }

    .formalne-hero__title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .formalne-hero__subtitle {
        font-size: 0.9rem;
    }

    .formalne-hero__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .formalne-steps {
        padding: 60px 0;
    }

    .formalne-steps__header {
        margin-bottom: 40px;
    }

    .formalne-steps__header h2 {
        font-size: 1.8rem;
    }

    .formalne-step-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .formalne-step-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .formalne-step-card p {
        font-size: 1rem;
    }

    .formalne-highlight-box {
        padding: 40px 20px;
        margin: 40px 15px;
    }

    .formalne-highlight-box h2 {
        font-size: 1.6rem;
    }

    .formalne-highlight-box p {
        font-size: 1rem;
    }
}