        * {				
            margin: 0;				
            padding: 0;				
            box-sizing: border-box;				
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;				
        }				
				
        body {				
            background-color: #f5f5f0;				
            color: #1c2833;				
            line-height: 1.6;				
        }				
				
        body.menu-open {				
            overflow: hidden;				
        }				
				
        /* ===== HEADER STICKY ===== */				
        .site-header {				
            background-color: #ffffff;				
            border-bottom: 1px solid #d5d0c0;				
            padding: 0.75rem 0;				
            position: sticky;				
            top: 0;				
            z-index: 100;				
            box-shadow: 0 2px 15px rgba(26, 107, 60, 0.08);				
        }				
				
        .header-container {				
            max-width: 1280px;				
            margin: 0 auto;				
            padding: 0 1rem;				
            display: flex;				
            align-items: center;				
            justify-content: space-between;				
            gap: 2rem;				
        }				
				
        /* Logo Section */				
        .logo-section {				
            display: flex;				
            align-items: center;				
            gap: 0.5rem;				
            flex-shrink: 0;				
        }				
				
        .logo-section img {				
            width: auto;				
            height: 40px;				
            max-width: 240px;				
            object-fit: contain;				
            display: block;				
        }				
				
        /* Search Box */				
        .search-wrapper {				
            flex: 1;				
            max-width: 650px;				
            margin: 0 auto;				
            position: relative;				
        }				
				
        .search-box {				
            display: flex;				
            align-items: center;				
            background: #ffffff;				
            border-radius: 30px;				
            padding: 5px;				
            border: 1px solid #d5d0c0;				
            transition: all 0.3s ease;				
            height: 40px;				
        }				
				
        .search-box:hover,				
        .search-box:focus-within {				
            box-shadow: 0 2px 15px rgba(26, 107, 60, 0.2);				
            border-color: #1a6b3c;				
            background: white;				
        }				
				
        .search-box input {				
            flex: 1;				
            border: none;				
            outline: none;				
            padding: 12px 15px;				
            font-size: 0.95rem;				
            background: transparent;				
            color: #1c2833;				
            border-radius: 30px 0 0 30px;				
            height: 100%;				
        }				
				
        .search-box button {				
            background: linear-gradient(135deg, #1a6b3c, #145a2f);				
            border: none;				
            border-radius: 20px;				
            padding: 0 15px;				
            cursor: pointer;				
            color: white;				
            transition: all 0.3s ease;				
            font-weight: 500;				
            font-size: 0.9rem;				
            display: flex;				
            align-items: center;				
            gap: 5px;				
            height: 100%;				
        }				
				
        .search-box button:hover {				
            background: linear-gradient(135deg, #15602f, #0f4a24);				
            transform: translateY(-1px);				
        }				
				
        .search-box button svg {				
            width: 18px;				
            height: 18px;				
            stroke: white;				
        }				
				
        .search-button-text {				
            display: inline-block;				
        }				
				
        /* Share Button */				
        .share-button {				
            display: flex;				
            align-items: center;				
            gap: 0.5rem;				
            background: linear-gradient(135deg, #1a6b3c, #145a2f);				
            border: none;				
            border-radius: 40px;				
            padding: 0.6rem 1.2rem;				
            cursor: pointer;				
            transition: all 0.3s;				
            justify-content: center;				
            color: white;				
        }				
				
        .share-button:hover {				
            background: linear-gradient(135deg, #15602f, #0f4a24);				
            transform: translateY(-2px);				
            box-shadow: 0 4px 15px rgba(26, 107, 60, 0.4);				
        }				
				
        .share-button svg {				
            width: 16px;				
            height: 16px;				
            stroke: white;				
        }				
				
        .share-button span {				
            font-weight: 500;				
            font-size: 0.9rem;				
            color: white;				
        }				
				
        /* Mobile Menu Toggle */				
        .mobile-menu-toggle {				
            display: none;				
            background: transparent;				
            border: 1px solid #d5d0c0;				
            border-radius: 8px;				
            padding: 0.5rem 1rem;				
            cursor: pointer;				
            color: #1a6b3c;				
            touch-action: manipulation;				
            -webkit-tap-highlight-color: transparent;				
        }				
				
        .mobile-menu-toggle:hover {				
            background: #f5f5f0;				
        }				
				
        .mobile-menu-toggle svg {				
            width: 20px;				
            height: 20px;				
        }				
				
        /* Overlay for mobile */				
        .nav-overlay {				
            display: none;				
            position: fixed;				
            top: 0;				
            left: 0;				
            width: 100%;				
            height: 100%;				
            background: rgba(0, 0, 0, 0.5);				
            z-index: 998;				
            opacity: 0;				
            transition: opacity 0.3s;				
        }				
				
        .nav-overlay.active {				
            display: block;				
            opacity: 1;				
        }				
				
        /* ===== NAVIGATION STICKY ===== */				
        .nav-bar {				
            background: linear-gradient(135deg, #1c2833 0%, #111820 100%);				
            border-bottom: 1px solid #2d3a45;				
            position: sticky;				
            top: 60px;				
            z-index: 99;				
        }				
				
        .nav-container {				
            max-width: 1280px;				
            margin: 0 auto;				
            padding: 0 1rem;				
            display: flex;				
            justify-content: center;				
            align-items: center;				
        }				
				
        .nav-menu {				
            display: flex;				
            list-style: none;				
            gap: 0.1rem;				
            justify-content: center;				
            flex-wrap: wrap;				
        }				
				
        .nav-item {				
            position: static;				
        }				
				
        /* Wrapper for link and arrow button (tablet & mobile) */				
        .nav-item-wrapper {				
            display: flex;				
            align-items: center;				
            justify-content: space-between;				
            width: 100%;				
        }				
				
        /* Style for main links in menu */				
        .menu-main-link {				
            display: inline-flex;				
            align-items: center;				
            gap: 0.3rem;				
            padding: 1rem 1.1rem;				
            text-decoration: none;				
            color: #d5d0c0;				
            font-weight: 500;				
            font-size: 0.88rem;				
            border-bottom: 2px solid transparent;				
            transition: all 0.2s;				
            white-space: nowrap;				
            background: none;				
            cursor: pointer;				
        }				
				
        .menu-main-link:hover {				
            border-bottom-color: #c8a44e;				
            color: #ffffff;				
            background: rgba(200, 164, 78, 0.1);				
        }				
				
        /* Dropdown arrow button for tablet & mobile */				
        .dropdown-arrow-btn {				
            display: none;				
            background: transparent;				
            border: none;				
            padding: 0.8rem 1rem;				
            cursor: pointer;				
            color: #d5d0c0;				
            transition: all 0.2s;				
            border-radius: 8px;				
            touch-action: manipulation;				
            -webkit-tap-highlight-color: transparent;				
        }				
				
        .dropdown-arrow-btn:hover {				
            background: rgba(200, 164, 78, 0.2);				
        }				
				
        .dropdown-arrow-btn svg {				
            width: 20px;				
            height: 20px;				
            transition: transform 0.3s;				
            stroke: currentColor;				
        }				
				
        .nav-item.active .dropdown-arrow-btn svg {				
            transform: rotate(180deg);				
        }				
				
        .chevron-down-svg {				
            margin-left: 0.3rem;				
            width: 18px;				
            height: 18px;				
            transition: transform 0.3s;				
            stroke: #d5d0c0;				
        }				
				
        /* Mobile Close Button */				
        .mobile-nav-header {				
            display: none;				
            justify-content: space-between;				
            align-items: center;				
            padding: 1rem 1.5rem;				
            border-bottom: 1px solid #d5d0c0;				
            background: white;				
        }				
				
        .mobile-nav-header h3 {				
            font-size: 1.1rem;				
            color: #1c2833;				
        }				
				
        .mobile-close-btn {				
            background: transparent;				
            border: none;				
            cursor: pointer;				
            color: #5a5a5a;				
            width: 40px;				
            height: 40px;				
            display: flex;				
            align-items: center;				
            justify-content: center;				
            border-radius: 50%;				
            touch-action: manipulation;				
            -webkit-tap-highlight-color: transparent;				
        }				
				
        .mobile-close-btn:hover {				
            background: #f5f5f0;				
            color: #1a6b3c;				
        }				
				
        .mobile-close-btn svg {				
            width: 26px;				
            height: 26px;				
        }				
				
        /* ===== MEGA DROPDOWN ===== */				
        .mega-menu {				
            display: none;				
            position: absolute;				
            left: 0;				
            width: 100%;				
            background-color: white;				
            border-top: 1px solid #d5d0c0;				
            border-bottom: 1px solid #d5d0c0;				
            box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.12);				
            padding: 2rem 0;				
            z-index: 1000;				
        }				
				
        .nav-item:hover .mega-menu {				
            display: block;				
        }				
				
        .mega-menu-container {				
            max-width: 1280px;				
            margin: 0 auto;				
            padding: 0 1rem;				
            display: grid;				
            grid-template-columns: repeat(4, 1fr);				
            gap: 2rem;				
        }				
				
        .mega-menu-container.mega-menu-grid-3 {				
            grid-template-columns: repeat(3, 1fr);				
        }				
				
        .mega-menu-container.mega-menu-grid-2 {				
            grid-template-columns: repeat(2, 1fr);				
        }				
				
        /* ===== CSS FOR 5-COLUMN MENUS ===== */				
        .nav-item.menu-diy .mega-menu-container {				
            display: grid;				
            grid-template-columns: repeat(5, 1fr);				
            gap: 1.5rem;				
        }				
				
        /* Responsive for 5-column menus */				
        @media (max-width: 1100px) {				
            .nav-item.menu-diy .mega-menu {				
                overflow-x: auto;				
            }				
            .nav-item.menu-diy .mega-menu-container {				
                min-width: 900px;				
            }				
        }				
				
        .menu-col h4 {				
            font-size: 0.85rem;				
            font-weight: 600;				
            text-transform: uppercase;				
            letter-spacing: 0.5px;				
            color: #1a6b3c;				
            margin-bottom: 1rem;				
            border-bottom: 1px solid #d5d0c0;				
            padding-bottom: 0.5rem;				
        }				
				
        .menu-col ul {				
            list-style: none;				
        }				
				
        .menu-col li {				
            margin-bottom: 0.6rem;				
        }				
				
        .menu-col a {				
            text-decoration: none;				
            color: #1c2833;				
            font-size: 0.9rem;				
            display: block;				
            transition: all 0.2s;				
        }				
				
        .menu-col a:hover {				
            color: #1a6b3c;				
            padding-left: 5px;				
        }				
				
        /* ===== MAIN CONTENT ===== */				
        .content-wrapper {				
            max-width: 1280px;				
            margin: 2rem auto;				
            padding: 0 1rem;				
        }				
				
        /* ===== HERO SECTION ===== */				
        .hero {				
            background: linear-gradient(135deg, #1c2833 0%, #111820 100%);				
            padding: 3rem 2rem;				
            border-radius: 12px;				
            text-align: center;				
            margin-bottom: 2rem;				
            min-height: 250px;				
            margin-left: auto;				
            margin-right: auto;				
            display: flex;				
            flex-direction: column;				
            justify-content: center;				
            align-items: center;				
            background-size: cover;				
            background-position: center;				
        }				
				
        .hero h1 {				
            font-size: 2.5rem;				
            margin-bottom: 1rem;				
            font-weight: 600;				
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);				
            color: white;				
        }				
				
        .hero p {				
            font-size: 1.1rem;				
            margin-bottom: 2rem;				
            opacity: 0.9;				
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);				
            color: white;				
        }				
				
        .btn {				
            display: inline-block;				
            padding: 0.7rem 1.8rem;				
            background: linear-gradient(135deg, #1a6b3c, #145a2f);				
            color: white;				
            text-decoration: none;				
            border-radius: 40px;				
            font-weight: 500;				
            transition: all 0.3s;				
            border: none;				
        }				
				
        .btn:hover {				
            background: linear-gradient(135deg, #15602f, #0f4a24);				
            transform: translateY(-2px);				
            box-shadow: 0 5px 20px rgba(26, 107, 60, 0.4);				
        }				
				
        /* Info Box */				
        .info-box {				
            background: linear-gradient(135deg, #f5f5f0, #e8e4d8);				
            border-left: 4px solid #1a6b3c;				
            padding: 1.5rem;				
            margin: 2rem 0;				
            border-radius: 0 8px 8px 0;				
            color: #1c2833;				
        }				
				
        /* Section Title */				
        .section-title {				
            font-size: 1.8rem;				
            margin: 2rem 0 1rem;				
            color: #1c2833;				
            position: relative;				
            padding-bottom: 0.5rem;				
        }				
				
        .section-title::after {				
            content: '';				
            position: absolute;				
            bottom: 0;				
            left: 0;				
            width: 60px;				
            height: 3px;				
            background: linear-gradient(135deg, #1a6b3c, #c8a44e);				
            border-radius: 2px;				
        }				
				
        /* ===== CATEGORY GRID ===== */				
        .category-grid {				
            display: grid;				
            grid-template-columns: repeat(4, 1fr);				
            gap: 1.8rem;				
            margin: 2rem 0;				
        }				
				
        .category-card {				
            background: white;				
            padding: 2rem 1rem;				
            border-radius: 12px;				
            text-align: center;				
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);				
            transition: all 0.3s ease;				
            text-decoration: none;				
            color: inherit;				
            border: 1px solid #d5d0c0;				
            display: flex;				
            flex-direction: column;				
            align-items: center;				
            width: 100%;				
        }				
				
        .category-card:hover {				
            transform: translateY(-4px);				
            box-shadow: 0 8px 30px rgba(26, 107, 60, 0.15);				
            border-color: #1a6b3c;				
        }				
				
        .category-icon {				
            width: 96px;				
            height: 96px;				
            object-fit: contain;				
            margin-bottom: 1.2rem;				
            display: block;				
            transition: transform 0.3s ease;				
        }				
				
        .category-card:hover .category-icon {				
            transform: scale(1.05);				
        }				
				
        .category-card h3 {				
            font-size: 1.2rem;				
            margin-bottom: 0.5rem;				
            color: #1c2833;				
            font-weight: 600;				
        }				
				
        .category-card p {				
            color: #5a5a5a;				
            font-size: 0.9rem;				
            margin: 0;				
        }				
				
        /* ===== ARTICLE GRID ===== */				
        .article-grid {				
            display: grid;				
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));				
            gap: 2rem;				
            margin: 2rem 0;				
        }				
				
        .article-card {				
            background: white;				
            border-radius: 12px;				
            overflow: hidden;				
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);				
            transition: all 0.3s;				
            border: 1px solid #d5d0c0;				
        }				
				
        .article-card:hover {				
            transform: translateY(-4px);				
            box-shadow: 0 8px 30px rgba(26, 107, 60, 0.15);				
            border-color: #1a6b3c;				
        }				
				
        .article-image {				
            height: 200px;				
            background: linear-gradient(135deg, #1c2833, #1a6b3c);				
            display: flex;				
            align-items: center;				
            justify-content: center;				
            overflow: hidden;				
            position: relative;				
        }				
				
        .article-image-webp {				
            width: 100%;				
            height: 100%;				
            object-fit: cover;				
            display: block;				
            transition: transform 0.5s ease;				
        }				
				
        .article-card:hover .article-image-webp {				
            transform: scale(1.05);				
        }				
				
        .article-image::after {				
            content: '';				
            position: absolute;				
            top: 0;				
            left: 0;				
            width: 100%;				
            height: 100%;				
            background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.35) 100%);				
            opacity: 0;				
            transition: opacity 0.3s ease;				
            pointer-events: none;				
        }				
				
        .article-card:hover .article-image::after {				
            opacity: 1;				
        }				
				
        .article-content {				
            padding: 1.5rem;				
        }				
				
        .article-content h3 {				
            font-size: 1.2rem;				
            margin-bottom: 0.75rem;				
            color: #1c2833;				
            line-height: 1.4;				
        }				
				
        .article-content p {				
            color: #5a5a5a;				
            margin-bottom: 1.2rem;				
            font-size: 0.9rem;				
            line-height: 1.6;				
        }				
				
        .read-more {				
            display: inline-block;				
            padding: 0.6rem 1.5rem;				
            background: linear-gradient(135deg, #1a6b3c, #145a2f);				
            color: white;				
            text-decoration: none;				
            border-radius: 30px;				
            font-size: 0.9rem;				
            font-weight: 500;				
            transition: all 0.3s;				
        }				
				
        .read-more:hover {				
            background: linear-gradient(135deg, #15602f, #0f4a24);				
            transform: translateX(5px);				
        }				
				
        /* Toast Notification */				
        .toast {				
            position: fixed;				
            bottom: 20px;				
            left: 50%;				
            transform: translateX(-50%) translateY(100px);				
            background: #1c2833;				
            color: white;				
            padding: 12px 24px;				
            border-radius: 40px;				
            font-size: 0.9rem;				
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);				
            z-index: 1000;				
            opacity: 0;				
            transition: all 0.3s;				
            border-left: 4px solid #c8a44e;				
        }				
				
        .toast.show {				
            transform: translateX(-50%) translateY(0);				
            opacity: 1;				
        }				
				
        /* ===== SEARCH RESULTS STYLES ===== */				
        .search-results {				
            position: absolute;				
            top: 100%;				
            left: 0;				
            width: 100%;				
            background: white;				
            border: 1px solid #d5d0c0;				
            border-radius: 0 0 12px 12px;				
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);				
            z-index: 1000;				
            max-height: 400px;				
            overflow-y: auto;				
            margin-top: 5px;				
        }				
				
        .search-result-item {				
            display: block;				
            padding: 15px;				
            text-decoration: none;				
            color: #1c2833;				
            border-bottom: 1px solid #f5f5f0;				
            transition: all 0.2s;				
        }				
				
        .search-result-item:hover {				
            background-color: #f5f5f0;				
        }				
				
        .search-result-item.selected {				
            background-color: #e8e4d8;				
            border-left: 3px solid #1a6b3c;				
        }				
				
        .search-result-content h4 {				
            font-size: 1rem;				
            margin-bottom: 5px;				
            color: #1c2833;				
        }				
				
        .search-result-content p {				
            font-size: 0.85rem;				
            color: #5a5a5a;				
            margin-bottom: 3px;				
        }				
				
        .search-result-url {				
            color: #1a6b3c;				
            font-size: 0.8rem;				
        }				
				
        .search-highlight {				
            background-color: #fef9c3;				
            padding: 0 2px;				
            border-radius: 2px;				
            font-weight: 600;				
        }				
				
        .search-loading {				
            position: absolute;				
            top: 100%;				
            left: 0;				
            width: 100%;				
            background: white;				
            padding: 15px;				
            text-align: center;				
            border: 1px solid #d5d0c0;				
            border-radius: 0 0 12px 12px;				
            color: #5a5a5a;				
            z-index: 1000;				
            display: flex;				
            align-items: center;				
            justify-content: center;				
            gap: 8px;				
        }				
				
        @keyframes spin {				
            from {				
                transform: rotate(0deg);				
            }				
            to {				
                transform: rotate(360deg);				
            }				
        }				
				
        .search-loading svg {				
            animation: spin 1s linear infinite;				
        }				
				
        .no-results {				
            padding: 20px;				
            text-align: center;				
            color: #5a5a5a;				
        }				
				
        /* ===== BACK TO TOP BUTTON ===== */				
        .back-to-top {				
            position: fixed;				
            bottom: 80px;				
            right: 20px;				
            width: 50px;				
            height: 50px;				
            background: linear-gradient(135deg, #1a6b3c, #145a2f);				
            color: white;				
            border: none;				
            border-radius: 50%;				
            cursor: pointer;				
            display: none;				
            align-items: center;				
            justify-content: center;				
            transition: all 0.3s ease;				
            z-index: 999;				
            box-shadow: 0 4px 15px rgba(26, 107, 60, 0.4);				
            opacity: 0;				
            transform: scale(0.8);				
        }				
				
        .back-to-top:hover {				
            background: linear-gradient(135deg, #15602f, #0f4a24);				
            transform: translateY(-3px) scale(1);				
            box-shadow: 0 6px 20px rgba(26, 107, 60, 0.5);				
        }				
				
        .back-to-top.show {				
            display: flex;				
            opacity: 1;				
            transform: scale(1);				
        }				
				
        .back-to-top svg {				
            width: 24px;				
            height: 24px;				
        }				
				
        /* ===== COOKIE CONSENT ===== */				
        .cookie-consent {				
            position: fixed;				
            bottom: 0;				
            left: 0;				
            right: 0;				
            background: linear-gradient(135deg, #1c2833 0%, #111820 100%);				
            color: white;				
            padding: 1rem;				
            z-index: 1001;				
            transform: translateY(100%);				
            transition: transform 0.3s ease;				
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.25);				
        }				
				
        .cookie-consent.show {				
            transform: translateY(0);				
        }				
				
        .cookie-content {				
            max-width: 1280px;				
            margin: 0 auto;				
            display: flex;				
            align-items: center;				
            justify-content: space-between;				
            gap: 1rem;				
            flex-wrap: wrap;				
        }				
				
        .cookie-text {				
            flex: 1;				
            font-size: 0.9rem;				
            line-height: 1.5;				
        }				
				
        .cookie-text a {				
            color: #c8a44e;				
            text-decoration: none;				
        }				
				
        .cookie-text a:hover {				
            text-decoration: underline;				
            color: #d4b55a;				
        }				
				
        .cookie-buttons {				
            display: flex;				
            gap: 0.8rem;				
            flex-wrap: wrap;				
        }				
				
        .cookie-btn {				
            padding: 0.6rem 1.2rem;				
            border-radius: 40px;				
            border: none;				
            cursor: pointer;				
            font-weight: 500;				
            transition: all 0.3s;				
        }				
				
        .cookie-btn-accept {				
            background: linear-gradient(135deg, #1a6b3c, #145a2f);				
            color: white;				
        }				
				
        .cookie-btn-accept:hover {				
            background: linear-gradient(135deg, #15602f, #0f4a24);				
            transform: translateY(-2px);				
            box-shadow: 0 5px 15px rgba(26, 107, 60, 0.4);				
        }				
				
        .cookie-btn-decline {				
            background: #475569;				
            color: white;				
        }				
				
        .cookie-btn-decline:hover {				
            background: #5a6e7c;				
            transform: translateY(-2px);				
        }				
				
        @media (max-width: 768px) {				
            .cookie-content {				
                flex-direction: column;				
                text-align: center;				
            }				
				
            .cookie-buttons {				
                justify-content: center;				
            }				
				
            .logo-section img {				
                height: 32px;				
                max-width: 190px;				
            }				
        }				
				
        /* ===== FOOTER ===== */				
        footer {				
            background: #111820;				
            color: white;				
            padding: 3rem 0 1rem;				
            margin-top: 4rem;				
        }				
				
        .footer-container {				
            max-width: 1280px;				
            margin: 0 auto;				
            padding: 0 1rem;				
            display: grid;				
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));				
            gap: 2rem;				
        }				
				
        .footer-section h4 {				
            font-size: 1rem;				
            margin-bottom: 1rem;				
            border-bottom: 1px solid #2d3a45;				
            padding-bottom: 0.5rem;				
            color: #d5d0c0;				
        }				
				
        .footer-section a {				
            color: #a0a0a0;				
            text-decoration: none;				
            display: block;				
            margin-bottom: 0.5rem;				
            font-size: 0.85rem;				
            transition: color 0.3s;				
        }				
				
        .footer-section a:hover {				
            color: #c8a44e;				
        }				
				
        .copyright {				
            text-align: center;				
            margin-top: 2rem;				
            padding-top: 1.5rem;				
            border-top: 1px solid #2d3a45;				
            color: #a0a0a0;				
            font-size: 0.8rem;				
        }				
				
        /* ===== RESPONSIVE ===== */				
        @media (min-width: 769px) and (max-width: 1024px) {				
            /* Tablet Styles */				
            .menu-main-link {				
                padding: 1rem 0.8rem;				
                font-size: 0.9rem;				
                pointer-events: auto;				
            }				
				
            .dropdown-arrow-btn {				
                display: flex !important;				
                align-items: center;				
                justify-content: center;				
            }				
				
            .nav-item {				
                display: flex;				
                align-items: center;				
                justify-content: space-between;				
                flex-wrap: wrap;				
            }				
				
            .nav-item:hover .mega-menu {				
                display: none;				
            }				
				
            .nav-item.active .mega-menu {				
                display: block;				
                position: absolute;				
                top: 100%;				
                left: 0;				
                width: 100%;				
                z-index: 1000;				
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);				
            }				
				
            .mega-menu-container {				
                grid-template-columns: repeat(2, 1fr) !important;				
            }				
				
            .nav-item.menu-diy .mega-menu-container {				
                grid-template-columns: repeat(2, 1fr) !important;				
                min-width: auto;				
            }				
				
            .nav-bar {				
                top: 58px;				
            }				
				
            .category-grid {				
                grid-template-columns: repeat(3, 1fr);				
                gap: 1.5rem;				
            }				
				
            .category-icon {				
                width: 80px;				
                height: 80px;				
            }				
				
            .article-grid {				
                grid-template-columns: repeat(2, 1fr);				
            }				
        }				
				
        @media (max-width: 768px) {				
            /* Mobile Styles */				
            .header-container {				
                flex-wrap: wrap;				
                gap: 1rem;				
            }				
				
            .logo-section {				
                width: 100%;				
                justify-content: space-between;				
            }				
				
            .search-wrapper {				
                order: 3;				
                width: 100%;				
                max-width: none;				
                margin: 0;				
            }				
				
            .share-button {				
                min-width: auto;				
                padding: 0.5rem 1rem;				
            }				
				
            .share-button span {				
                display: none;				
            }				
				
            .search-button-text {				
                display: none;				
            }				
				
            .search-box button {				
                padding: 0 12px;				
            }				
				
            .mobile-menu-toggle {				
                display: block;				
            }				
				
            .nav-bar {				
                position: fixed;				
                top: 0;				
                right: -100%;				
                width: 85%;				
                max-width: 400px;				
                height: 100vh;				
                background: white;				
                z-index: 999;				
                border-left: 1px solid #d5d0c0;				
                transition: right 0.3s ease;				
                overflow-y: auto;				
                top: 0 !important;				
            }				
				
            .nav-bar.active {				
                right: 0;				
            }				
				
            .nav-container {				
                flex-direction: column;				
                padding: 0;				
            }				
				
            .mobile-nav-header {				
                display: flex;				
                width: 100%;				
            }				
				
            .nav-menu {				
                flex-direction: column;				
                width: 100%;				
                margin: 0;				
                gap: 0;				
            }				
				
            .nav-item {				
                display: flex;				
                flex-wrap: wrap;				
                align-items: center;				
                justify-content: space-between;				
                width: 100%;				
            }				
				
            .menu-main-link {				
                display: inline-flex !important;				
                align-items: center;				
                justify-content: space-between;				
                flex: 1;				
                padding: 1rem 1.5rem;				
                border-bottom: 1px solid #f5f5f0;				
                font-size: 1rem;				
                color: #1c2833;				
                background: white;				
                text-decoration: none;				
            }				
				
            .menu-main-link:hover {				
                background: #f5f5f0;				
                color: #1c2833;				
                border-bottom-color: #f5f5f0;				
            }				
				
            .dropdown-arrow-btn {				
                display: flex !important;				
                align-items: center;				
                justify-content: center;				
                background: white;				
                color: #1c2833;				
                padding: 1rem 1.2rem;				
                border-left: 1px solid #f5f5f0;				
                border-radius: 0;				
                margin: 0;				
            }				
				
            .dropdown-arrow-btn svg {				
                stroke: #1c2833;				
                width: 20px;				
                height: 20px;				
            }				
				
            .chevron-down-svg {				
                margin-left: 0 !important;				
                flex-shrink: 0 !important;				
                stroke: #1c2833;				
            }				
				
            .mega-menu {				
                position: static;				
                box-shadow: none;				
                border: none;				
                padding: 0;				
                background: #f5f5f0;				
                display: none;				
                width: 100%;				
            }				
				
            .nav-item:hover .mega-menu {				
                display: none;				
            }				
				
            .nav-item.active .mega-menu {				
                display: block;				
            }				
				
            .mega-menu-container {				
                grid-template-columns: 1fr !important;				
                gap: 1rem;				
                padding: 1rem 1.5rem;				
            }				
				
            .nav-item.menu-diy .mega-menu-container {				
                grid-template-columns: 1fr !important;				
                min-width: auto;				
            }				
				
            .hero {				
                padding: 2rem 1rem;				
            }				
				
            .hero h1 {				
                font-size: 2rem;				
            }				
				
            .btn {				
                padding: 0.6rem 1.5rem;				
                font-size: 0.9rem;				
            }				
				
            .category-grid {				
                grid-template-columns: repeat(2, 1fr);				
                gap: 1rem;				
            }				
				
            .category-card {				
                padding: 1.5rem 0.8rem;				
                border-radius: 12px;				
            }				
				
            .category-icon {				
                width: 64px;				
                height: 64px;				
                margin-bottom: 0.8rem;				
            }				
				
            .category-card h3 {				
                font-size: 1rem;				
            }				
				
            .category-card p {				
                font-size: 0.8rem;				
            }				
				
            .article-grid {				
                grid-template-columns: 1fr;				
            }				
				
            .article-image {				
                height: 180px;				
            }				
        }				
				
        @media (max-width: 480px) {				
            .btn {				
                padding: 0.5rem 1.2rem;				
                font-size: 0.85rem;				
            }				
				
            .logo-section img {				
                height: 28px;				
                max-width: 155px;				
            }				
				
            .category-icon {				
                width: 56px;				
                height: 56px;				
            }				
        }				
				
        @media (min-width: 1025px) {				
            .dropdown-arrow-btn {				
                display: none !important;				
            }				
				
            .nav-item:hover .mega-menu {				
                display: block;				
            }				
        }				
				
        /* Ads Container */				
        .adsense-container {				
            background-color: #f5f5f0;				
            border: 1px dashed #1a6b3c;				
            padding: 20px;				
            text-align: center;				
            margin: 40px 0;				
            border-radius: 5px;				
            max-width: 1250px;				
            margin-left: auto;				
            margin-right: auto;				
        }				
				
        @media (max-width: 768px) {				
            .adsense-container {				
                margin: 30px 0;				
                padding: 15px;				
            }				
        }				
				
        /* ===== PRODUCTS SECTION CSS ===== */				
        .products-container {				
            max-width: 1280px;				
            margin: 3rem auto;				
            padding: 0 1rem;				
        }				
				
        .products-section {				
            background: white;				
            border-radius: 16px;				
            padding: 2rem;				
            box-shadow: 0 10px 30px rgba(26, 107, 60, 0.06);				
            border: 1px solid #d5d0c0;				
        }				
				
        .products-section .section-title {				
            font-size: 1.8rem;				
            margin: 0 0 2rem 0;				
            color: #1c2833;				
            position: relative;				
            padding-bottom: 0.5rem;				
        }				
				
        .products-section .section-title::after {				
            content: '';				
            position: absolute;				
            bottom: 0;				
            left: 0;				
            width: 60px;				
            height: 3px;				
            background: linear-gradient(135deg, #1a6b3c, #c8a44e);				
            border-radius: 2px;				
        }				
				
        .loading {				
            text-align: center;				
            padding: 3rem;				
            color: #5a5a5a;				
            font-size: 1.1rem;				
            display: flex;				
            align-items: center;				
            justify-content: center;				
            gap: 10px;				
        }				
				
        .loading::after {				
            content: '';				
            width: 20px;				
            height: 20px;				
            border: 3px solid #d5d0c0;				
            border-top-color: #1a6b3c;				
            border-radius: 50%;				
            animation: spin 1s linear infinite;				
        }				
				
        .products-grid {				
            display: grid;				
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));				
            gap: 20px;				
            margin-top: 20px;				
        }				
				
        .product-card {				
            border: 1px solid #d5d0c0;				
            border-radius: 12px;				
            padding: 0;				
            background-color: white;				
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);				
            overflow: hidden;				
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);				
            height: 100%;				
            display: flex;				
            flex-direction: column;				
        }				
				
        .product-card:hover {				
            transform: translateY(-4px);				
            box-shadow: 0 8px 30px rgba(26, 107, 60, 0.15);				
            border-color: #1a6b3c;				
        }				
				
        .product-image {				
            width: 100%;				
            height: 220px;				
            object-fit: contain;				
            background: linear-gradient(135deg, #f5f5f0 0%, #ffffff 100%);				
            border-bottom: 1px solid #d5d0c0;				
            padding: 20px;				
            transition: transform 0.3s ease;				
        }				
				
        .product-card:hover .product-image {				
            transform: scale(1.02);				
        }				
				
        .product-content {				
            padding: 20px;				
            display: flex;				
            flex-direction: column;				
            flex-grow: 1;				
        }				
				
        .product-title {				
            font-size: 1rem;				
            color: #1c2833;				
            margin-bottom: 12px;				
            line-height: 1.4;				
            font-weight: 600;				
            display: -webkit-box;				
            -webkit-line-clamp: 3;				
            -webkit-box-orient: vertical;				
            overflow: hidden;				
            min-height: 67.2px;				
        }				
				
        .product-price {				
            font-size: 1.25rem;				
            color: #145a2f;				
            font-weight: 700;				
            margin-bottom: 8px;				
            letter-spacing: -0.5px;				
        }				
				
        .price-update {				
            font-size: 0.75rem;				
            color: #5a5a5a;				
            margin-bottom: 16px;				
            line-height: 1.3;				
            font-style: italic;				
        }				
				
        .product-button {				
            display: inline-flex;				
            align-items: center;				
            justify-content: center;				
            background: linear-gradient(135deg, #1a6b3c, #145a2f);				
            color: white;				
            border: none;				
            padding: 12px 20px;				
            border-radius: 8px;				
            font-size: 0.9rem;				
            font-weight: 600;				
            text-decoration: none;				
            transition: all 0.2s ease;				
            margin-top: auto;				
            cursor: pointer;				
            text-align: center;				
            min-height: 44px;				
        }				
				
        .product-button:hover {				
            background: linear-gradient(135deg, #15602f, #0f4a24);				
            transform: translateY(-1px);				
            box-shadow: 0 4px 15px rgba(26, 107, 60, 0.3);				
            color: white;				
            text-decoration: none;				
        }				
				
        .product-button:active {				
            transform: translateY(0);				
        }				
				
        @media (max-width: 768px) {				
            .product-card {				
                border-radius: 8px;				
            }				
				
            .products-grid {				
                grid-template-columns: 1fr;				
            }				
				
            .product-image {				
                height: 180px;				
                padding: 15px;				
            }				
				
            .product-content {				
                padding: 16px;				
            }				
				
            .price-update {				
                font-size: 0.7rem;				
                margin: 6px 0 10px 0;				
            }				
				
            .product-price {				
                font-size: 1.1rem;				
            }				
				
            .product-title {				
                font-size: 0.95rem;				
                min-height: 53.2px;				
                -webkit-line-clamp: 2;				
            }				
				
            .product-button {				
                padding: 10px 16px;				
                font-size: 0.85rem;				
                min-height: 40px;				
            }				
        }				
				
        .price-timestamp {				
            font-size: 0.65rem !important;				
            color: #5a5a5a !important;				
            margin: 0 0 0.8rem 0 !important;				
            background: #f5f5f0 !important;				
            padding: 6px 10px !important;				
            border-radius: 6px !important;				
            border-left: 3px solid #1a6b3c !important;				
            line-height: 1.3 !important;				
        }				
				
        .product-btn {				
            background: linear-gradient(135deg, #1a6b3c, #145a2f);				
            color: white;				
            text-decoration: none;				
            padding: 0.7rem 0.8rem;				
            border-radius: 8px;				
            font-weight: 600;				
            font-size: 0.85rem;				
            text-align: center;				
            transition: all 0.3s ease;				
            margin-top: auto;				
            display: inline-block;				
            width: 100%;				
            letter-spacing: 0.3px;				
        }				
				
        .product-btn:hover {				
            background: linear-gradient(135deg, #15602f, #0f4a24);				
            transform: translateY(-2px);				
            box-shadow: 0 5px 15px rgba(26, 107, 60, 0.3);				
        }				
				
        @media (min-width: 481px) and (max-width: 768px) {				
            .products-section {				
                padding: 1.5rem;				
            }				
            .products-section .section-title {				
                font-size: 1.5rem;				
                margin-bottom: 1.5rem;				
            }				
            .product-btn {				
                padding: 0.6rem 0.8rem;				
                font-size: 0.8rem;				
            }				
        }				
				
        @media (max-width: 480px) {				
            .products-section {				
                padding: 1rem;				
                border-radius: 16px;				
            }				
            .products-section .section-title {				
                font-size: 1.3rem;				
                margin-bottom: 1rem;				
            }				
        }				
				
        /* Disclaimer Global Styles */				
        .disclaimer-global {				
            background-color: #f5f5f0;				
            border-left: 4px solid #145a2f;				
            padding: 1.25rem;				
            margin: 2rem 0;				
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;				
            border-radius: 0 4px 4px 0;				
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);				
        }				
				
        .disclaimer-title {				
            color: #145a2f;				
            font-size: 1.1rem;				
            font-weight: 600;				
            margin-top: 0;				
            margin-bottom: 0.75rem;				
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;				
        }				
				
        .disclaimer-global p {				
            color: #1c2833;				
            font-size: 0.85rem;				
            line-height: 1.6;				
            margin: 0;				
            text-align: justify;				
        }				
				
        .disclaimer-global a {				
            color: #1a6b3c;				
            text-decoration: none;				
            font-weight: 600;				
            transition: color 0.2s ease;				
        }				
				
        .disclaimer-global a:hover {				
            color: #145a2f;				
            text-decoration: underline;				
        }				
				
        @media (max-width: 768px) {				
            .disclaimer-global {				
                padding: 1rem;				
                margin: 1.5rem 0;				
            }				
				
            .disclaimer-global p {				
                font-size: 0.8rem;				
            }				
        }				
				
        .affiliate-disclosure-notice {				
            margin: 13px 0;				
            background-color: #fff8e1;				
            padding: 12px;				
            border-radius: 4px;				
            border-left: 4px solid #c8a44e;				
        }				
				
        .affiliate-disclosure-notice p {				
            margin: 0;				
            font-size: 12px;				
            color: #5a5a5a;				
        }				
				
        .affiliate-disclosure-notice a {				
            color: #1a6b3c;				
            text-decoration: underline;				
        }