
h2 span {
    color: #1B89FE;
}

h3 {
    font-weight: 500;
    text-align: center;
    margin: 20px 0px;
}

.small-title {
    font-size: 20px;
    font-weight: 600;
    color: #3999ff;
    margin-bottom: 20px;
}

.header-banner .text-area {
    margin-right: 0px;
}

.header-banner .hero img {
    width: 60%;
}

.center-text {
    text-align: center;
}

.custom-order {
    order: 1;
}

.image-text {
    margin: 40px 0;
}

.image-text h3 {
    text-align: left;
}

@media (max-width: 1023px) {
    .custom-order {
        order: 0;
    }
}

.products_dec {
    text-align: center;
    max-width: max-content;
    margin: 0 auto 2rem;
}


/*three grid*/
.features-container {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
}

.features-container .feature-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.features-container .feature-icon {
    margin-bottom: 1rem;
    color: #0071e3;
}

.features-container .feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.features-container .feature-desc {
    line-height: 1.5;
}

.header-banner .platform-icons {
    margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-banner .platform-icons {
        margin-bottom: 60px;
    }

    h3 {
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .image-text {
        margin: 20px 0;
    }

    .image-text h3 {
        text-align: center;
    }
}

@media (max-width: 767px) {
    h2 {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    h3 {
        margin-bottom: 10px;
        text-align: left;
    }

    h4 {
        text-align: left;
        margin-bottom: 20px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .features-container .feature-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .products_dec {
        text-align: left;
    }

    .image-text {
        margin: 20px 0;
    }
}