                    /* ===== REMMERS PRODUCTS SECTION STYLES ===== */
                    .section {
                        padding: 50px 0;
                    }

                    .section .section-title {
                        font-size: 32px;
                        font-weight: 600;
                        margin: 0 0 12px 0;
                        color: #1a1a1a;
                        line-height: 1.2;
                    }

                    .section .section-title:after {
                        content: '';
                        display: block;
                        width: 60px;
                        height: 4px;
                        background: #e9b741;
                        margin-top: 10px;
                    }

                    .section .section-subtitle {
                        font-size: 18px;
                        color: #4a4a4a;
                        margin: 0 0 30px 0;
                        line-height: 1.5;
                    }

                    .section .section-subtitle strong {
                        color: #2c3e50;
                        font-weight: 600;
                    }

                    /* Recommendation box */
                    .recomendation-box {
                        background: #1a2b3c;
                        color: white;
                        padding: 24px 28px;
                        border-radius: 8px;
                        margin: 30px 0 40px 0;
                        border-left: 5px solid #e9b741;
                        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
                    }

                
                    .recomendation-box i {
                        color: #e9b741;
                        font-size: 28px;
                        margin-right: 8px;
                    }

                    .recomendation-box strong {
                        color: #e9b741;
                        font-weight: 700;
                        font-size: 16px;
                    }

                    .recomendation-box div div {
                        font-size: 16px;
                        line-height: 1.6;
                        flex: 1;
                    }

                    /* Products grid */
                    .products-grid {
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        gap: 20px;
                        margin: 30px 0 20px 0;
                    }

                    .product-card {
                        background: white;
                        border-radius: 8px;
                        overflow: hidden;
                        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
                        transition: all 0.3s ease;
                        border: 1px solid #eaeaea;
                    }

                    .product-card:hover {
                        border-color: #d0d0d0;
                        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
                        transform: translateY(-2px);
                    }



                    .card-header i {
                        font-size: 32px;
                        color: #1a2b3c;
                        background: white;
                        width: 60px;
                        height: 60px;
                        line-height: 70px;
                        border-radius: 50%;
                        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        /* text-align: center; */
                    }

                    .card-header h3 {
                        font-size: 22px;
                        font-weight: 600;
                        margin: 0 0 10px 0;
                        color: #1a1a1a;
                    }

                    .badge-small {
                        background: #e9b741;
                        color: #1a2b3c;
                        font-size: 13px;
                        padding: 5px 12px;
                        border-radius: 30px;
                        display: inline-block;
                        font-weight: 600;
                        letter-spacing: 0.3px;
                    }

                    .card-body {
                        padding: 24px 20px;
                    }

                    .product-desc {
                        font-size: 15px;
                        font-weight: 500;
                        margin-bottom: 18px;
                        color: #1e3f5c;
                        line-height: 1.5;
                    }

                    .feature-list {
                        list-style: none;
                        margin: 0 0 20px 0;
                        padding: 0;
                    }

                    .feature-list li {
                        padding: 8px 0;
                        border-bottom: 1px dashed #e5ecf3;
                        display: flex;
                        gap: 12px;
                        align-items: center;
                        font-size: 14px;
                        color: #4a4a4a;
                    }

                    .feature-list li:last-child {
                        border-bottom: none;
                    }

                    .feature-list i {
                        color: #e9b741;
                        width: 18px;
                        font-size: 14px;
                    }

                    .product-tags {
                        display: flex;
                        gap: 8px;
                        flex-wrap: wrap;
                        margin: 0 0 20px 0;
                    }

                    .tag {
                        background: #edf3f8;
                        padding: 4px 12px;
                        border-radius: 20px;
                        font-size: 12px;
                        font-weight: 600;
                        color: #1a2b3c;
                        letter-spacing: 0.2px;
                    }

                    .btn {
                        display: inline-block;
                        background: #1a2b3c;
                        color: white;
                        padding: 12px 28px;
                        border-radius: 40px;
                        text-decoration: none;
                        font-weight: 600;
                        transition: all 0.2s ease;
                        border: none;
                        cursor: pointer;
                        font-size: 15px;
                        border: 1px solid transparent;
                    }

                    .btn:hover {
                        background: #e9b741;
                        color: #1a2b3c;
                        transform: translateY(-1px);
                    }

                    .btn-small {
                        padding: 8px 20px;
                        font-size: 14px;
                    }

                    .section .btn:last-child {
                        margin-top: 20px;
                    }

                    /* Responsive design */
                    @media screen and (max-width: 1024px) {
                        .products-grid {
                            grid-template-columns: repeat(2, 1fr);
                            gap: 15px;
                        }
                    }

                    @media screen and (max-width: 768px) {
                        .section {
                            padding: 40px 0;
                        }

                        .section .section-title {
                            font-size: 28px;
                        }

                        .section .section-subtitle {
                            font-size: 16px;
                            margin: 0 0 25px 0;
                        }

                        .recomendation-box {
                            padding: 20px;
                            margin: 25px 0 35px 0;
                        }

                        .recomendation-box i {
                            font-size: 24px;
                        }

                        .recomendation-box div div {
                            font-size: 15px;
                        }

                        .card-header {
                            padding: 24px 15px 18px;
                        }

                        .card-header i {
                            width: 60px;
                            height: 60px;
                            line-height: 60px;
                            font-size: 30px;
                        }

                        .card-header h3 {
                            font-size: 20px;
                        }

                        .card-body {
                            padding: 20px 15px;
                        }
                    }

                    @media screen and (max-width: 600px) {
                        .products-grid {
                            grid-template-columns: 1fr;
                            gap: 15px;
                        }
                    }

                    @media screen and (max-width: 480px) {
                        .section {
                            padding: 30px 5px;
                        }

                        
                        .section .section-title {
                            font-size: 24px;
                        }

                        .section .section-title:after {
                            margin-top: 8px;
                        }

                        .section .section-subtitle {
                            font-size: 15px;
                            margin: 0 0 20px 0;
                        }

                        .recomendation-box {
                            padding: 16px;
                            margin: 20px 0 30px 0;
                        }

                        .recomendation-box div {
                            gap: 10px;
                        }

                        .recomendation-box i {
                            font-size: 22px;
                        }

                        .recomendation-box div div {
                            font-size: 14px;
                        }

                        .card-header {
                            padding: 20px 12px 15px;
                        }

                        .card-header i {
                            width: 50px;
                            height: 50px;
                            line-height: 50px;
                            font-size: 26px;
                            margin-bottom: 12px;
                        }

                        .card-header h3 {
                            font-size: 18px;
                            margin: 0 0 8px 0;
                        }

                        .badge-small {
                            font-size: 12px;
                            padding: 4px 10px;
                        }

                        .card-body {
                            padding: 18px 12px;
                        }

                        .product-desc {
                            font-size: 14px;
                            margin-bottom: 15px;
                        }

                        .feature-list li {
                            font-size: 13px;
                            padding: 6px 0;
                        }

                        .tag {
                            font-size: 11px;
                            padding: 3px 10px;
                        }

                        .btn {
                            padding: 10px 22px;
                            font-size: 14px;
                        }

                        .btn-small {
                               padding: 7px 16px;
        font-size: 13px;
        width: 100%;
        text-align: center;
        border-radius: 8px;
                        }
                    }

                    @media screen and (max-width: 360px) {
               

                        .recomendation-box i {
                            margin-right: 0;
                        }

                        .btn {
                            width: 100%;
                            text-align: center;
                        }
                    }