
        :root {
            --primary-color: #075cc1;
            --secondary-color: #053b7d;
            --accent-color: #4d9314;
            --light-bg: #f4f8f5;
            --dark-text: #212529;
            --border-color: #e9ecef;
        }

        * {
            font-family: 'Open Sans', sans-serif;
            box-sizing: border-box;
        }

        html,
        body {
            max-width: 100%;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        /* ========== HEADER ========== */
        .header-promo-bar {
            background: var(--primary-color);
            color: white;
            min-height: 58px;
        }

        .header-promo-inner {
            display: grid;
            grid-template-columns: minmax(220px, 28%) 1fr auto;
            align-items: stretch;
            min-height: 58px;
        }

        .header-promo-spacer {
            background: white;
            clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%);
        }

        .header-promo-text {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 0;
            padding: 0 24px;
            font-size: 14px;
            font-weight: 700;
            text-align: center;
        }

        .header-promo-links {
            display: flex;
            align-items: stretch;
            justify-content: flex-end;
            min-width: 0;
        }

        .header-promo-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 58px;
            padding: 0 18px;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            white-space: nowrap;
        }

        .header-promo-links a:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .header-main-bar {
            background: white;
        }

        .header-main-bar .container-fluid {
            display: flex;
            align-items: stretch;
            min-height: 100px;
            max-width: 1540px;
            margin: 0 auto;
            padding-left: 0;
            padding-right: 0;
        }

        .header-logo-link {
            display: flex;
            align-items: center;
            flex: 0 0 360px;
            justify-content: center;
            padding: 16px 28px;
            margin: 0;
            min-width: 0;
        }

        .mobile-header-phone {
            display: none;
        }

        .header-contact-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(150px, 1fr));
            flex: 1 1 auto;
            min-width: 0;
        }

        .header-contact-item {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
            padding: 18px 14px;
            border-left: 1px solid var(--border-color);
        }

        .header-contact-item span {
            margin-bottom: 5px;
            color: #333;
            font-size: 15px;
            font-weight: 600;
            text-transform: capitalize;
        }

        .header-contact-item a,
        .header-contact-item strong {
            color: #777;
            font-size: 15px;
            font-weight: 400;
            line-height: 1.3;
            text-decoration: none;
            word-break: break-word;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 24px;
            flex: 0 0 auto;
            padding: 18px 28px;
            border-left: 1px solid var(--border-color);
        }

        .quote-btn {
            background: #06488d;
            color: white;
            border: none;
            padding: 16px 24px;
            border-radius: 0;
            font-weight: 700;
            font-size: 14px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0;
            white-space: nowrap;
        }

        .quote-btn:hover {
            background: var(--accent-color);
        }

        .header-search-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border: none;
            background: transparent;
            color: #222;
            font-size: 24px;
            cursor: pointer;
        }

        /* ========== NAVBAR ========== */
        .navbar {
            background: var(--accent-color);
            box-shadow: none;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .category-navbar .container-fluid {
            max-width: 1540px;
            margin: 0 auto;
            padding-left: 18px;
            padding-right: 18px;
        }

        .category-navbar {
            background: #078000;
        }

        .navbar .container-fluid,
        .navbar-collapse {
            min-width: 0;
        }

        .navbar-logo {
            display: inline-flex;
            align-items: center;
            height: 78px;
            transition: transform 0.3s ease;
        }

        .navbar-logo img {
            height: 78px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .navbar-logo:hover img {
            transform: scale(1.05);
        }

        .navbar-nav .nav-link {
            color: white;
            font-weight: 600;
            margin: 0 7px;
            position: relative;
            transition: color 0.3s ease;
            font-size: 12px;
            white-space: nowrap;
            text-transform: uppercase;
            padding: 20px 8px !important;
        }

        .navbar-nav {
            flex: 1 1 auto;
            flex-wrap: wrap;
            min-width: 0;
            row-gap: 6px;
        }

        .navbar-nav .nav-link:hover {
            color: white;
            opacity: 0.82;
        }

        .navbar-nav .dropdown-toggle {
            padding-right: 20px;
        }

        .navbar-nav .dropdown-toggle::after {
            display: inline-block;
            margin-left: 8px;
            vertical-align: 0.255em;
            content: '';
            border-top: 0.35em solid white;
            border-right: 0.35em solid transparent;
            border-left: 0.35em solid transparent;
            border-bottom: 0;
            transition: transform 0.3s ease;
        }

        .navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            border-top: 3px solid var(--primary-color);
            animation: slideDown 0.3s ease;
            display: none;
        }

        .dropdown-menu.show {
            display: block;
        }

        .nav-item.dropdown:hover .dropdown-menu {
            display: block !important;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-item {
            color: var(--dark-text);
            font-weight: 500;
            padding: 10px 20px;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-item:hover {
            background: var(--light-bg);
            color: var(--primary-color);
            border-left-color: var(--accent-color);
            padding-left: 25px;
        }

        .category-dropdown-menu {
            min-width: 260px;
            max-width: 340px;
        }

        .category-dropdown-menu .dropdown-item {
            white-space: normal;
            line-height: 1.35;
        }

        .dropdown-view-more {
            color: var(--primary-color);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .search-box {
            flex: 0 0 260px;
            max-width: 260px;
            position: relative;
        }

        .search-box input {
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 8px 35px 8px 12px;
            font-size: 13px;
            transition: all 0.3s ease;
            width: 100%;
        }

        .search-box input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
        }

        .search-box button {
            position: absolute;
            right: 3px;
            top: 3px;
            background: transparent;
            border: none;
            color: var(--primary-color);
            cursor: pointer;
            padding: 5px 10px;
        }

        /* ========== FOOTER ========== */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #e0e0e0;
            padding: 60px 0 0 0;
            margin-top: 80px;
        }

        .footer-content {
            padding: 40px 0;
        }

        .footer-column h5 {
            color: white;
            font-size: 16px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
            display: inline-block;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #b0b0b0;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-column ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .footer-column ul li a:before {
            content: '→';
            margin-right: 8px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-column ul li a:hover:before {
            opacity: 1;
        }

        .footer-divider {
            background: rgba(255, 255, 255, 0.1);
            height: 1px;
            margin: 30px 0;
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid rgba(77, 147, 20, 0.3);
        }

        .footer-bottom p {
            margin: 0;
            font-size: 13px;
            color: #999;
        }

        .footer-bottom p strong {
            color: white;
        }

        .payment-methods {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .payment-methods img {
            height: 24px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .payment-methods img:hover {
            opacity: 1;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--accent-color);
            color: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .social-links a:hover {
            background: white;
            color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(77, 147, 20, 0.3);
        }

        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--accent-color);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .scroll-top.show {
            display: flex;
        }

        .scroll-top:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        /* ========== SHARED INNER PAGES ========== */
        .main-content {
            background: #fff;
        }

        .breadcrumb-area {
            background-color: #073d7f;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
        }

        .breadcrumb-area::before {
            background: rgba(5, 36, 75, 0.72);
            content: '';
            inset: 0;
            position: absolute;
        }

        .breadcrumb-height {
            min-height: 260px;
        }

        .breadcrumb-area .container {
            position: relative;
            z-index: 1;
        }

        .breadcrumb-item {
            align-items: center;
            color: #fff;
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: center;
            text-align: center;
        }

        .breadcrumb-heading {
            color: #fff;
            font-size: 46px;
            font-weight: 700;
            line-height: 1.2;
            margin: 0 0 18px;
        }

        .breadcrumb-item ul {
            align-items: center;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .breadcrumb-item ul li {
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
            font-weight: 600;
        }

        .breadcrumb-item ul li + li::before {
            color: rgba(255, 255, 255, 0.65);
            content: '/';
            margin-right: 10px;
        }

        .breadcrumb-item ul li a {
            color: #fff;
            text-decoration: none;
        }

        .section-space-y-axis-100 {
            padding-bottom: 90px;
            padding-top: 90px;
        }

        .blog-area {
            background: #f8fafc;
        }

        .blog-page-area .blog-item {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
            height: 100%;
            overflow: hidden;
            transition: box-shadow 0.25s ease, transform 0.25s ease;
        }

        .blog-page-area .blog-item:hover {
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .blog-page-area .blog-img {
            aspect-ratio: 31 / 22;
            background: #eef2f7;
            display: block;
            overflow: hidden;
            position: relative;
        }

        .blog-page-area .blog-img a {
            display: block;
            height: 100%;
        }

        .blog-page-area .blog-img .img-full,
        .img-full {
            height: 100%;
            object-fit: cover;
            width: 100%;
        }

        .blog-page-area .blog-content {
            padding: 24px;
        }

        .blog-page-area .blog-meta ul {
            align-items: center;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 14px;
            list-style: none;
            margin: 0 0 14px;
            padding: 0;
        }

        .blog-page-area .blog-meta li,
        .blog-page-area .blog-meta a {
            color: #758195;
            font-size: 13px;
            text-decoration: none;
        }

        .blog-page-area .title {
            font-size: 20px;
            line-height: 1.35;
            margin: 0 0 12px;
        }

        .blog-page-area .title a {
            color: var(--dark-text);
            text-decoration: none;
        }

        .blog-page-area .title a:hover {
            color: var(--accent-color);
        }

        .blog-page-area .short-desc {
            color: #64748b;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px !important;
        }

        .btn-pronia-primary {
            background: var(--accent-color);
            border: 1px solid var(--accent-color);
            border-radius: 4px;
            color: #fff;
            display: inline-flex;
            font-size: 13px;
            font-weight: 700;
            justify-content: center;
            padding: 11px 22px;
            text-decoration: none;
            text-transform: uppercase;
        }

        .btn-pronia-primary:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
        }

        .inner-btn-wrap {
            align-items: center;
            display: flex;
            inset: 0;
            justify-content: center;
            opacity: 0;
            position: absolute;
            transition: opacity 0.25s ease;
        }

        .inner-btn {
            align-items: center;
            background: var(--accent-color);
            border-radius: 50%;
            color: #fff;
            display: inline-flex !important;
            height: 44px !important;
            justify-content: center;
            text-decoration: none;
            width: 44px;
        }

        .img-hover-effect:hover .inner-btn-wrap {
            opacity: 1;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 992px) {
            .header-promo-inner {
                grid-template-columns: 1fr;
            }

            .header-promo-spacer {
                display: none;
            }

            .header-promo-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .header-promo-links a {
                min-height: 42px;
                padding: 0 12px;
            }

            .header-main-bar .container-fluid {
                flex-wrap: wrap;
                min-height: 0;
                padding: 0 16px;
            }

            .header-logo-link {
                flex: 1 1 100%;
                justify-content: flex-start;
                padding: 14px 0;
            }

            .header-contact-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                flex-basis: 100%;
                border-top: 1px solid var(--border-color);
            }

            .header-contact-item {
                border-left: none;
                border-bottom: 1px solid var(--border-color);
            }

            .header-actions {
                flex: 1 1 100%;
                justify-content: space-between;
                padding: 14px 0;
                border-left: none;
            }

            .navbar-nav {
                flex-wrap: nowrap;
            }

            .search-box {
                flex-basis: 100%;
                max-width: 100%;
                margin-left: 0 !important;
                margin-top: 10px;
            }

            .slider-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .slider-text h2 {
                font-size: 36px;
            }

            .slider-image {
                margin-top: 20px;
            }

            .carousel-item {
                padding: 40px 20px;
            }
        }

        @media (max-width: 768px) {
            .header-promo-bar,
            .header-contact-grid,
            .header-actions {
                display: none;
            }

            .header-main-bar {
                background: #fff;
                border-bottom: 1px solid var(--border-color);
            }

            .header-main-bar .container-fluid {
                align-items: center;
                flex-wrap: nowrap;
                min-height: 72px;
                padding: 8px 96px 8px 14px;
                position: relative;
            }

            .header-logo-link {
                flex: 0 1 auto;
                justify-content: flex-start;
                max-width: 48%;
                padding: 0;
            }

            .mobile-header-phone {
                display: flex;
                flex: 1 1 auto;
                flex-direction: column;
                justify-content: center;
                min-width: 0;
                padding-left: 10px;
                text-decoration: none;
            }

            .mobile-header-phone span {
                color: #333;
                font-size: 12px;
                font-weight: 700;
                line-height: 1.2;
            }

            .mobile-header-phone strong {
                color: #6f7479;
                font-size: 13px;
                font-weight: 600;
                line-height: 1.35;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .category-navbar {
                background: transparent;
                min-height: 0;
                position: relative;
            }

            .category-navbar .container-fluid {
                min-height: 0;
                padding: 0;
            }

            .category-navbar .navbar-toggler {
                align-items: center;
                background: #fff;
                border: 1px solid #d8dee9;
                border-radius: 6px;
                display: inline-flex;
                height: 46px;
                justify-content: center;
                margin: 0;
                padding: 0;
                position: absolute;
                right: 14px;
                top: -59px;
                width: 56px;
                z-index: 1010;
            }

            .category-navbar .navbar-toggler:focus {
                box-shadow: 0 0 0 3px rgba(7, 92, 193, 0.14);
            }

            .category-navbar .navbar-collapse {
                background: #fff;
                border-bottom: 1px solid var(--border-color);
                padding: 10px 16px 16px;
                width: 100%;
            }

            .navbar .container-fluid {
                padding-left: 16px;
                padding-right: 16px;
            }

            .category-navbar .container-fluid {
                padding-left: 0;
                padding-right: 0;
            }

            .header-promo-text {
                padding: 12px 16px;
            }

            .navbar-nav .nav-link {
                color: var(--dark-text);
                padding: 0.6rem 0 !important;
            }

            .dropdown-menu {
                background: white;
                border-radius: 0;
            }

            .navbar-nav .dropdown-toggle::after {
                border-top-color: var(--accent-color);
            }

            .navbar-logo,
            .navbar-logo img {
                height: 50px;
            }

            .footer-column {
                margin-bottom: 30px;
            }

            .social-links {
                justify-content: center;
            }
        }

        /* ========== PRODUCT SLIDER ========== */
        .product-slider {
            background: linear-gradient(135deg, #062142 0%, #0d47a1 100%);
            padding: 60px 0;
            overflow: hidden;
        }

        .carousel-inner {
            border-radius: 8px;
            overflow: hidden;
        }

        .carousel-item {
            padding: 60px 40px;
            min-height: 500px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #062142 0%, #0d47a1 100%);
        }

        .carousel-item.active {
            display: flex;
        }

        .slider-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }

        .slider-text {
            color: white;
        }

        .slider-text h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: white;
        }

        .slider-text p {
            font-size: 16px;
            color: #e0e0e0;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .slider-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 30px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-color);
        }

        .stat-label {
            font-size: 14px;
            color: #b0b0b0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .slider-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .slider-btn:hover {
            background: var(--accent-color);
            border-color: var(--accent-color);
            color: white;
            transform: translateX(5px);
        }

        .slider-image {
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
        }

        .slider-image img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
            transition: transform 0.5s ease;
        }

        .carousel-item.active .slider-image img {
            animation: slideInRight 0.6s ease;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px) rotateY(20deg);
            }
            to {
                opacity: 1;
                transform: translateX(0) rotateY(0);
            }
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--accent-color);
            border-radius: 50%;
            opacity: 1;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            z-index: 10;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: var(--primary-color);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 20px;
            height: 20px;
            background: transparent;
            border: none;
        }

        .carousel-control-prev::before,
        .carousel-control-next::before {
            display: none;
        }

        .carousel-indicators {
            bottom: -40px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            transition: all 0.3s ease;
            margin: 0 6px;
        }

        .carousel-indicators button.active {
            background-color: var(--accent-color);
            width: 12px;
        }

        .carousel-indicators button:hover {
            background-color: var(--accent-color);
        }

        /* ========== DEMO CONTENT ========== */
        .hero-section {
            background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
            padding: 80px 0;
            text-align: center;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-section h1 {
            color: var(--primary-color);
            font-size: 48px;
            margin-bottom: 20px;
        }

        .hero-section p {
            color: #666;
            font-size: 18px;
            margin-bottom: 30px;
        }

        /* ========== FEATURES SECTION ========== */
        .features-section {
            background: var(--light-bg);
            padding: 60px 0;
        }

        .feature-item {
            text-align: center;
            padding: 30px;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            color: var(--primary-color);
        }

        .feature-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark-text);
            margin: 0;
        }

        /* ========== PRODUCT FEATURES SECTION ========== */
        .product-features {
            padding: 80px 0;
        }

        .product-features-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .product-features-image {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-features-image img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
        }

        .product-features-text h2 {
            font-size: 42px;
            color: var(--dark-text);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .product-features-text > p {
            font-size: 16px;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .feature-list-icon {
            width: 50px;
            height: 50px;
            background: #e8f5e9;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 24px;
            color: var(--primary-color);
        }

        .feature-list-title {
            font-weight: 600;
            font-size: 16px;
            color: var(--dark-text);
            margin: 0;
        }

        .feature-list-desc {
            font-size: 14px;
            color: #999;
            margin: 0;
        }

        /* ========== BLOG SECTION ========== */
        .blog-section {
            background: #fafafa;
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 42px;
            color: var(--dark-text);
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 16px;
            color: #999;
        }

        .blog-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .blog-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .blog-card-image {
            display: block;
            width: 100%;
            height: 250px;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.1);
        }

        .blog-card-content {
            padding: 30px;
        }

        .blog-card-date {
            font-size: 13px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .blog-card-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-text);
            margin: 15px 0;
        }

        .blog-card-desc {
            font-size: 14px;
            color: #999;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .blog-card-link {
            color: var(--dark-text);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .blog-card-link:hover {
            color: var(--accent-color);
            gap: 12px;
        }

        .products-empty {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            color: #777;
        }

        /* ========== TESTIMONIALS SECTION ========== */
        .testimonials-section {
            padding: 80px 0;
        }

        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .testimonial-card {
            background: white;
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            font-size: 36px;
            color: var(--primary-color);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark-text);
            margin: 15px 0 10px;
        }

        .testimonial-rating {
            color: #ffc107;
            margin-bottom: 20px;
            font-size: 14px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 14px;
            color: #999;
            line-height: 1.8;
            margin: 0;
        }

        .testimonial-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .testimonial-nav button {
            width: 40px;
            height: 40px;
            border: 1px solid #e0e0e0;
            background: white;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-text);
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .testimonial-nav button:hover {
            background: var(--accent-color);
            border-color: var(--accent-color);
            color: white;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 992px) {
            .product-features-content {
                grid-template-columns: 1fr;
            }

            .blog-cards {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonial-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .blog-cards {
                grid-template-columns: 1fr;
            }

            .testimonial-cards {
                grid-template-columns: 1fr;
            }

            .product-features-text h2 {
                font-size: 32px;
            }

            .feature-item {
                padding: 20px;
            }
        }
    
