/* Process Section Styles */
.process-section {
    /* padding: 5rem 15px; */
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;

}

.process-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.process-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem; /* Adjusted margin */
}

.process-subtitle {
    color: #5a6472;
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 4rem auto;
}

.process-timeline {
    position: relative;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

/* Alternating layout */
.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-illustration {
    flex: 1;
    padding: 0 2rem;
}

.step-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.step-content {
    flex: 1;
    text-align: left;
    padding: 0 2rem;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-badge {
    display: inline-block;
    background-color: #00305d; /* Bright red/orange */
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00305d;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6472;
}

/* Connecting Lines */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    height: 4rem; /* Same as margin-bottom */
    width: 2px;
    background-color: #e0e0e0;
    transform: translateX(-50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-step, .process-step:nth-child(even) {
        flex-direction: column;
        text-align: center !important;
    }

    .process-step .step-content, .process-step:nth-child(even) .step-content {
        text-align: center;
        margin-top: 2rem;
    }

    .process-step:not(:last-child)::after {
        display: none; /* Hide connecting lines on mobile */
    }
}
