.banner {
            width: 98%;
            height: 66px;
            background: linear-gradient(135deg, #2e7d32, #388e3c, #4caf50);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 25px;
            color: white;
            font-family: "Segoe UI", Arial, sans-serif;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            border-bottom: 3px solid #ff9800;
        }

        .banner-left {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: -40px;
        }

        .banner-left .fa-seedling {
            font-size: 24px;
            color: #ffeb3b;
        }

        .logo {
            text-align: left;
        }

        .main-logo {
            font-size: 14pt;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .sub-logo {
            font-size: 12pt;
            font-weight: 500;
            color: #e8f5e9;
            opacity: 0.9;
            line-height: 1.1;
            margin-top: 2px;
        }

        .banner-center {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .banner-center .fa-tractor,
        .banner-center .fa-leaf {
            font-size: 20px;
            color: #c8e6c9;
        }

        .tagline {
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            padding: 0 10px;
        }

        .banner-right {
            display: flex;
            gap: 15px;
            margin-bottom: -40px;
        }

        .promo-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.2);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .promo-badge .fa-shipping-fast {
            color: #4fc3f7;
        }

        .promo-badge .fa-money-bill-wave {
            color: #aed581;
        }
        
        /* Hover Effects */
        .banner-left .fa-seedling:hover {
            transform: scale(1.2);
            transition: transform 0.3s;
        }

        .promo-badge:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            transition: all 0.3s;
        }
        
        /* Responsive */
        @media (max-width: 1000px) {
            .banner {
                width: 95%;
                padding: 0 15px;
                flex-wrap: wrap;
                height: auto;
                min-height: 66px;
            }
            .banner-center .fa-tractor,
            .banner-center .fa-leaf {
                display: none;
            }
        }

        .tagline {
            text-align: center;
            padding: 0 15px;
        }

        .main-tagline {
            font-size: 17px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }

        .sub-tagline {
            font-size: 13px;
            font-weight: 500;
            color: #e8f5e9;
            opacity: 0.9;
            line-height: 1.2;
        }

        .sector-icons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .sector-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .sector-item i {
            font-size: 20px;
            color: #f0efe8;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .sector-item span {
            font-size: 10px;
            font-weight: 600;
            color: #e8f5e9;
            text-align: center;
            white-space: nowrap;
        }

        .sector-item:hover i {
            transform: scale(1.2);
            background: rgba(255, 255, 255, 0.2);
            border-color: #ff9800;
        }

        .sector-item:hover span {
            color: #ffeb3b;
        }
        
        /* Warna khusus untuk setiap ikon */
        .sector-item:nth-child(1) i {
            color: #4caf50;
        } /* Pertanian - Hijau */
        .sector-item:nth-child(2) i {
            color: #8bc34a;
        } /* Perkebunan - Hijau muda */
        .sector-item:nth-child(3) i {
            color: #ff9800;
        } /* Peternakan - Orange */
        .sector-item:nth-child(4) i {
            color: #03a9f4;
        } /* Perikanan - Biru */

        .sector-icons-compact {
            display: flex;
            gap: 15px;
        }

        .sector-icon {
            font-size: 18px;
            color: #ebe9dc;
            background: rgb(41 104 45);
            padding: 8px;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .sector-icon:hover {
            transform: scale(1.2);
            background: white;
            border-color: #ff9800;
            color: black;
        }
        
        /* Gaya untuk sektor dengan teks */
        .sector-with-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }
        
        .sector-text {
            font-size: 10px;
            font-weight: 600;
            color: #e8f5e9;
            text-align: center;
            white-space: nowrap;
        }