
.header-banner .hero {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.section {
    text-align: center;
    padding: 40px 0px 80px;
}

.section .title {
    margin-bottom: 10px;
    margin-top: 0;
}

.section .title span {
    color: var(--main-color);
}

.section .subtitle {
    margin-bottom: 50px;
}

/* Cards layout */
.section .cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.section .card {
    width: 380px;
    padding: 30px 25px;
    border-radius: 28px;
    color: #fff;
    text-align: left;
    box-sizing: border-box;
}

.section .card h2 {
    margin: 20px 0 10px;
    font-size: 22px;
    font-weight: 700;
}

.section .card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.section .card img {
    border-radius: 16px;
    width: 100%;
}

/* Icon box */
.section .icon-box {
    /* width: 55px;
     height: 55px;*/
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 20px;
}

.section .icon-box img {
    margin-right: 10px;
    width: auto;
}

/* Background gradient styles */
.section .card-blue {
    background: radial-gradient(
            circle at 0% 0%,
            #9A49EC 0%,
            #5B76FE 100%
    );
}

.section .card-pink {
    background: radial-gradient(
            circle at 0% 0%,
            #BD23F3 0%,
            #EA5ED0 100%
    );
}

.section .card-green {
    background: radial-gradient(
            circle at 0% 0%,
            #13E3F8 0%,
            #22D2AB 100%
    );
}


.section-desc {
    text-align: center;
    margin-bottom: 40px;
}


.feature-box {
    margin: 0 auto 80px;
    background: #111;
    color: #fff;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
}


.feature-box img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.feature-box .title {
    color: white;
    font-weight: 500;
    display: flex;
    margin-top: 20px;
}

.feature-box .text {
    opacity: 0.5;
    font-size: 14px;
    min-height: 90px;
    margin-bottom: 20px;
}

.feature-box .title img {
    width: auto;
    margin-right: 5px;
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.feature-item {
    /*background: #1c1c1c;*/
    padding: 10px 20px;
    border-radius: 14px;
}

.feature-item .title {
    color: white;
    font-weight: 500;
    display: flex;
    margin-top: 0px;
    align-items: center;
}

.feature-item .title img {
    width: auto;
    margin-right: 5px;
}

.feature-item .text {
    opacity: 0.5;
    font-size: 14px;
    min-height: auto;
    margin-bottom: 0px;
    line-height: 1.5;
}

.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.review-container .review-text {
    margin-top: 20px;
}

.p-title {
    font-weight: 500;
    margin-bottom: 20px;
}

.steps-container {
    display: flex;
    gap: 30px;
    background: #000000;
    border-radius: 12px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 40px;
    margin-bottom: 40px;
}

.custom-bottom {
    padding-bottom: 0px;
}

.steps-container .steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 520px;
}

.steps-container .step {
    padding: 15px 20px;
    cursor: pointer;
    background-color: #2C3035;
    border-radius: 12px;
}

.steps-container .step:hover {
    /*border-color: #1B89FE;*/
}

.steps-container .step.active {
    /* border: 1px solid #1B89FE;
     border-radius: 12px;*/
    background-color: #963041;
}

.steps-container .step.active .step-content h3 {
    color: white;
}

.steps-container .step-content h3 {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.steps-container .step-content h3 img {
    margin-right: 10px;
}

.steps-container .step p {
    margin: 0;
    color: #374151;
    line-height: 1.5;
    font-size: 14px;
    max-width: max-content;
    display: none;
}

.steps-container .step.active p {
    color: white;
    opacity: 0.5;
    display: block;
}

.steps-container .images {
    flex: 1;
    position: relative;
}

.steps-container .images img {
    width: 100%;
    border-radius: 10px;
    display: none;
}

.steps-container .images img.active {
    display: block;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-banner .hero {
        margin-bottom: 0px;
    }
    .section .card {
        width: 300px;
    }

    .steps-container .steps {
        width: 100%;
    }

    .steps-container .step {
        max-width: 100%;
        text-align: left;
        align-items: flex-start;
    }

    .steps-container .step.active p {
        text-align: left;
    }

    .steps-container .step-content h3 {
        text-align: left;
    }

    .feature-box {
        flex-direction: column;
        padding: 30px;
    }

    .two-cols {
        grid-template-columns: 1fr;
    }

    .feature-box .text {
        min-height: 40px;
    }
}


@media (max-width: 767px) {
    .header-banner .hero {
        margin-bottom: 0px;
    }

    .section .card {
        padding: 20px;
    }

    .section .subtitle {
        text-align: left;
        margin-bottom: 20px
    }

    .section-desc {
        text-align: left;
        margin-bottom: 20px;
    }

    .steps-container {
        padding-top: 20px;
        padding-bottom: 20px;
        gap: 10px;
    }

    .steps-container .steps {
        width: 100%;
    }

    .steps-container .step {
        max-width: 100%;
        text-align: left;
        align-items: flex-start;
    }

    .steps-container .step.active p {
        text-align: left;
    }

    .steps-container .step-content h3 {
        text-align: left;
    }

    .steps-container .steps {
        padding: 0rem 0rem 0rem;
    }

    .feature-item {
        padding: 0;
    }

    .feature-text {
        gap: 10px;
    }

    .feature-box {
        flex-direction: column;
        padding: 20px;
    }

    .two-cols {
        grid-template-columns: 1fr;
    }
}
