
        .product-section {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            border-bottom: 1px solid #eee;
            padding-bottom: 40px;
            align-items: flex-start;
        }

        .product-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .product-image {
            flex: 0 0 40%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .product-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .product-content {
            flex: 1;
            padding: 20px 0;
        }

        .product-title {
            font-size: 30px;
            color: #007acc;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .product-desc {
            font-size: 14px;
            color: #333;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .service-title {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #ddd;
        }

        .service-list {
            display: flex;
            gap: 40px;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .service-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #666;
        }

        .service-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 16px;
            background-color: #031C6E;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 20px;
            color: #031C6E;
            margin-top: 10px;
        }

        .contact-icon {
            font-size: 24px;
        }

        .quote-btn {
            position: absolute;
            right: 0;
            top: 0px;
            background-color: #031C6E;
            color: white;
            border: none;
            padding: 5px 10px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
        }
 .quote-btn a{color:#fff;}
        .quote-btn:hover {
            background-color: #031C6E;
        }

        .product-header {
            position: relative;
            margin-bottom: 20px;
        }

        .top-btn {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 60px;
            height: 60px;
            background-color: #0099ff;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
        }

        .top-btn:hover {
            background-color: #007acc;
        }
			.footer{display:none}
			.footer-bg{display:block}
        @media (max-width: 959px) {
            .product-section {
                flex-direction: column;
            }
            .product-image {
                flex: 0 0 100%;
            }
            .quote-btn {
                position: static;
                margin-top: 20px;
            }
            .service-list {
                gap: 20px;
            }
			.footer{display:block}
			.footer-bg{display:none}
        }