        /* Header Container */
        .header {
            background:linear-gradient(135deg,#1a3f14 0%, #2c6823 100%);
            color: white;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            width: 100%;
        }
        
        .container-header {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            position: relative;
            
        }
        
        /* Logo Styles */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
            min-width: 180px;
            text-decoration: none;
            color: white;
            -webkit-tap-highlight-color: transparent;
        }
        
        .logo {
            height: 48px;
            width: auto;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-title {
            font-size: 22px;
            font-weight: 700;
            line-height: 1.1;
            white-space: nowrap;
        }
        
        .logo-slogan {
            font-size: 11px;
            opacity: 0.9;
            margin-top: 3px;
        }
        
        /* Navigation Styles */
        .nav-container {
            flex-grow: 1;
            display: flex;
            justify-content: center;
            margin: 0 15px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 5px;
            position: relative;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffcc00;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: #ffcc00;
        }
        
        /* Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        
        .search-outer {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .search-input {
            padding: 8px 12px;
            border-radius: 4px;
            border: none;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            width: 180px;
            transition: all 0.3s ease;
        }
        
        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.25);
            width: 220px;
        }
        
        .search-btn {
            background: transparent;
            border: none;
            color: white;
            cursor: pointer;
            /* padding: 8px; */
            margin-left: -36px;
            z-index: 1;
        }
        
        .language-selector {
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            margin-right: 21px;
            transition: background 0.3s ease;
        }
        
        .language-selector:hover {
            background: rgba(255, 255, 255, 0.25);
        }
        
        .cta-button {
            background-color: #ffcc00;
            color: #2c5c1f;
            border: none;
            padding: 9px 18px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            white-space: nowrap;
        }
        
        .cta-button:hover {
            background-color: #ffd633;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
            -webkit-tap-highlight-color: transparent;
        }
        
        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, #2c5c1f 0%, #3a7c29 100%);
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            flex-direction: column;
            gap: 20px;
            z-index: 999;
        }
        
        .mobile-menu.active {
            display: flex;
        }
        
        .mobile-nav-menu {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .mobile-nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 8px 0;
            display: block;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .mobile-header-actions {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        
        .mobile-search-outer {
            position: relative;
            width: 100%;
        }
        
        .mobile-search-input {
            width: 100%;
            padding: 12px;
            border-radius: 4px;
            border: none;
            background: rgba(255, 255, 255, 0.15);
            color: white;
        }
        
        .mobile-search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .mobile-search-btn {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: white;
            cursor: pointer;
        }
        
        .mobile-language-selector {
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: white;
            padding: 12px;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
        }
        
        .mobile-cta-button {
            background-color: #ffcc00;
            color: #2c5c1f;
            border: none;
            padding: 12px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            width: 100%;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-container {
                margin: 0 10px;
            }
            
            .nav-menu {
                gap: 10px;
            }
            
            .search-input {
                width: 150px;
            }
            
            .search-input:focus {
                width: 180px;
            }
        }
        
        @media (max-width: 1000px) {
            .nav-container, .header-actions {
                display: none;
            }
            .search-btn{
                margin-top: 4px;
        margin-right: 7px;
            }
            .menu-toggle {
                display: block;
            }
            
            .logo-title {
                font-size: 18px;
            }
            
            .logo-slogan {
                font-size: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .logo-container {
                min-width: auto;
            }
            
            .logo {
                height: 40px;
            }
            
            .logo-title {
                font-size: 16px;
            }
            
            .logo-slogan {
                display: none;
            }
        }
