.process-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.process-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.process-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.process-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #424955FF;
    margin-bottom: 1rem;
    white-space: normal;
}

.process-subheadline {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #424955FF;
    margin-bottom: 0;
    white-space: normal;
    font-weight: 400;
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 0;
    text-align: left;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #fede04;
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.25rem;
}

.step-content {
    flex: 1;
}

.step-title {
    color: #ef4444;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-gray-dark);
    margin: 0;
    font-weight: 500;
}

.step-divider {
    border: none;
    border-top: 2px dashed #9ca3af;
    /* Slightly thicker, more defined gray */
    margin: 0;
    opacity: 0.8;
    /* Increased opacity for better visibility */
}

@media (max-width: 1024px) {

    .process-headline,
    .process-subheadline {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: var(--spacing-lg) 0;
    }

    .process-container {
        padding: 0 0.75rem;
    }

    .process-headline {
        font-size: 1rem;
        /* Significantly reduced to attempt single line */
        white-space: nowrap;
        /* Force one line */
        margin-bottom: 0.5rem;
    }

    .process-subheadline {
        font-size: 0.85rem;
        white-space: nowrap;
        /* Force one line */
    }

    .step-item {
        gap: 0.75rem;
        padding: 1rem 0;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .step-description {
        font-size: 0.95rem;
    }
}