/* EXACT DESIGN MATCH - How It Works Section */

/* Section with light gray background */
.how-it-works-section {
    background: #ffffff;
    padding: 40px 0 40px;
    margin-top: -100px;
    position: relative;
    z-index: 50;
}

/* White card with shadow */
.how-it-works-card {
    background: #ffffff;
    padding: 55px 65px 5px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    margin-top: -90px;
}

/* Title styling */
.how-title {
    font-size: 36px;
    font-weight: 400;
    color: #333333;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

/* Step container */
.step-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 45px;
    min-height: 100px;
}

/* Large light gray numbers - positioned to the left */
.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    font-weight: 500;
    color: #e8e8e8;
    line-height: 1;
    margin: 0;
}

/* Step title with orange line */
.step-title {
    font-size: 17px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    position: relative;
    padding-left: 14px;
}

/* Orange vertical line - spans title and description */
.step-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: calc(100% + 30px);
    background: #FF6B35;
}

/* Description text */
.step-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0;
    padding-left: 14px;
}

/* Button styling */
.hero-btn-secondary {
    background: white;
    color: #333333 !important;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid #d0d0d0;
    white-space: nowrap;
}

.hero-btn-secondary:hover {
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
    .how-it-works-section {
        padding: 80px 0 60px;
        margin-top: -80px;
    }

    .how-it-works-card {
        padding: 40px 20px;
    }

    .how-title {
        font-size: 28px;
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .how-it-works-card .btn {
        width: 100%;
        /* Full width button on mobile */
    }

    .step-item {
        margin-bottom: 40px;
        text-align: center;
        /* Center steps on mobile */
    }

    .step-number {
        font-size: 65px;
        margin: 0 auto 15px;
        /* Center number */
    }
}

@media (max-width: 767px) {
    .how-it-works-section {
        padding: 60px 0 40px;
        margin-top: -60px;
    }

    .how-it-works-card {
        padding: 35px 25px;
        border-radius: 30px;
    }

    .how-title {
        font-size: 26px;
    }

    .step-number {
        font-size: 55px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-desc {
        font-size: 13px;
    }

    .step-item {
        margin-bottom: 35px;
    }
}