/* ===========================
   Products Page Styles
   =========================== */

.products-banner {
    background-color: #0f2457;
    padding: 100px 0;
    text-align: center;
}

.products-banner h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 0;
}

.products-intro {
    padding: 80px 0 30px;
    background: #fff;
}

.products-intro .section-title {
    max-width: 800px;
    margin: 0 auto;
}

.products-intro .section-title h2 {
    color: #0f2457;
    font-size: 32px;
    margin-bottom: 20px;
}

.products-intro .section-title p {
    font-size: 16px;
    line-height: 1.8;
    color: #606060;
    max-width: 900px;
    margin: 0 auto;
}

.product-row-area {
    padding: 100px 0;
}

.product-row-area.bg-f4f6fc {
    background-color: #f4f6fc;
}

.product-image {
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
}

.product-content {
    padding-left: 50px;
}

.product-row-area:nth-child(even) .product-content {
    padding-left: 0;
    padding-right: 50px;
}

.product-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #00afef;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-content h2 {
    font-size: 30px;
    color: #0f2457;
    margin-bottom: 20px;
    font-weight: 700;
}

.product-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.product-features-list {
    margin-bottom: 30px;
}

.product-feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #0f2457;
    font-weight: 600;
}

.product-feature-box i {
    color: #00afef;
    font-size: 20px;
}

.product-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00afef;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.product-quote-btn:hover {
    background: #0f2457;
    color: #fff;
}

/* Custom margins for the row */
.product-row-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 991px) {
    .product-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .product-row-area:nth-child(even) .product-content {
        padding-right: 0;
    }
}