
h2 span {
    color: #1B89FE;
}

.center-text {
    text-align: center;
}

.header-banner .platform-icons{
    margin-bottom: 30px;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 80px;
}

.products h3 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.products p {
    font-size: 16px;
    line-height: 28px;
    color: #000000;
}

.products_dec {
    text-align: center;
    max-width: max-content;
    margin: 0 auto 2rem;
}

.product-card {
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 380px;
    max-width: 380px;
}

.product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.card-bg {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 20px 20px;
}

.photo-text {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}

.use-cases {
    margin-top: 30px;
}

.container_cases .use-case-card {
    border-radius: 12px;
}

.container_cases .card-icon {
    height: 100px;
    padding-top: 20px;
}

.container_cases .card-text {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

/*double-column*/
.double-column {
    max-width: 1200px;
    margin: 0 auto;
}

.double-column .title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 80px;
}

.double-column .subtitle {
    text-align: center;
    font-size: 16px;
    color: #000000;
    margin-bottom: 40px;
}

.double-column .cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
}

.double-column .card {
    flex: 1 1 45%;
    display: block;
    background-color: #F9F9FA;
    border-radius: 10px;
    padding: 20px;
    min-width: 250px;
    text-align: center;
}

.double-column .top-image {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.double-column .card h2 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.double-column .card .text {
    font-size: 16px;
    color: #000000;
    min-height: 220px;
}

.double-column .bottom-card {
    background-color: #ffffff;
    text-align: center;
    position: relative;
    height: 550px;
}

.double-column .bottom-card .text {
    min-height: 100px;
    text-align: left;
}

.double-column .card .red-text {
    color: #FF3F1C;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
}

.double-column .card .number {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0px;
}

.double-column .top-img {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.double-column .card .title {
    font-size: 14px;
    font-weight: 400;
    margin-top: 0px;
}

.double-column .highlight {
    font-size: 32px;
    color: red;
    font-weight: bold;
    margin: 15px 0;
}

.double-column .small-text {
    font-size: 16px;
    color: #333;
    text-align: center;
}

.double-column .step-content1 {
    margin-left: 100px;
    margin-top: 60px;
}

.double-column .step-content2 {
    margin-left: 180px;
    margin-top: 60px;
}

.double-column .step-title {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

.double-column .step-text {
    text-align: left;
    line-height: 1.2;

}

/* Responsive */
@media (max-width: 767px) {
    .product-card {
        min-width: 100%;
        padding: 40px 10px;
    }

    .products_dec {
        text-align: left;
    }

    .center-text {
        text-align: left;
    }

    .photo-text {
        font-size: 14px;
    }

    .container_cases .use-cases {
        grid-template-columns:repeat(2, 1fr);
    }

    .double-column .cards {
        flex-direction: column;
        gap: 20px;
    }

    .double-column .bottom-card .text {
        min-height: 250px;
    }

    .double-column .bottom-card {
        min-height: 580px;
    }

    .double-column .subtitle {
        text-align: left;
    }


    .double-column .top-img {
        padding: 0 10px;
        width: 100%;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .double-column .step-content1 {
        margin-left: 20px;
        margin-top: 40px;
        position: absolute;
        bottom: 180px;
    }

    .double-column .step-content2 {
        margin-left: 60px;
        margin-top: 30px;
        position: absolute;
        bottom: 70px;
    }

    .double-column .step-title {
        font-size: 18px;
        font-weight: 500;
        text-align: left;
    }

    .double-column .step-text {
        text-align: left;
        line-height: 1.2;
    }

    .double-column .title{
        text-align: left;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .double-column .cards {
        display: grid;
    }

    .header-banner .platform-icons {
        margin-bottom: 60px;
    }

    .double-column .top-img {
        width: auto;
        bottom: 40px;
    }

    .double-column .step-content1 {
        left: 10%;
        position: absolute;
        bottom: 210px;
    }

    .double-column .step-content2 {
        left: 15%;
        position: absolute;
        bottom: 80px;
    }
}


.support-section {
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.support-section .desc {
    max-width: 750px;
    margin: 15px auto 40px;
    color: #000000;
    line-height: 1.6;
}

.support-section .card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.support-section .card {
    background: #fdfdfd;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}

/*.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}*/

.support-section .card img {
    width: 100%;
    margin-bottom: 20px;
}

.support-section .card h3 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.custom-tb {
    margin: 30px 0;
}

/* ----------- Mobile / Responsive ----------- */

@media (max-width: 767px) {

    .support-section .card-container {
        grid-template-columns: 1fr;
    }

    .support-section .desc{
        text-align: left;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        min-width: auto;
    }

    .support-section .card-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-section .card-container .card:nth-child(3) {
        grid-column: 1 / 3;
        justify-self: center;
        width: 50%;
    }
}


