:root {
            --primary-gradient: linear-gradient(135deg, #2d5016 0%, #6b8e23 100%);
            --accent-gradient: linear-gradient(135deg, #8fbc3f 0%, #6b8e23 100%);
            --gold-gradient: linear-gradient(135deg, #f9d423 0%, #e8b91f 100%);
        }
        
        /* Hero Section */
        .knowledge-hero {
            background: linear-gradient(135deg, rgba(45,80,22,0.95) 0%, rgba(107,142,35,0.95) 100%),
                        url('../../images/brand/olive-hero.svg') center/cover;
            padding: 150px 0 100px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .knowledge-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="rgba(255,255,255,0.02)"/></svg>');
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translate(0, 0); }
            100% { transform: translate(100px, 100px); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero-icon {
            font-size: 80px;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: bounce 2s ease-in-out infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 50px;
            flex-wrap: wrap;
            width: 100%;
        }
        
        .stat-box {
            text-align: center;
            min-width: 140px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            display: block;
            color: var(--accent-color);
        }
        
        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            margin-top: 5px;
        }
        
        /* Categories Section */
        .categories-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-icon {
            font-size: 60px;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--text-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent-gradient);
            border-radius: 2px;
        }
        
        .section-description {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 30px auto 0;
            line-height: 1.8;
        }
        
        /* Category Cards */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .category-card {
            background: white;
            border-radius: 25px;
            padding: 50px 40px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            text-decoration: none;
            display: block;
        }
        
        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .category-card:hover::before {
            transform: scaleX(1);
        }
        
        .category-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(107,142,35,0.25);
        }
        
        .category-icon {
            font-size: 70px;
            color: var(--accent-color);
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        
        .category-card:hover .category-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .category-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 15px;
        }
        
        .category-description {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .category-link {
            color: var(--accent-color);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: gap 0.3s ease;
        }
        
        .category-card:hover .category-link {
            gap: 15px;
        }
        
        .category-link i {
            transition: transform 0.3s ease;
        }
        
        .category-card:hover .category-link i {
            transform: translateX(5px);
        }
        
        /* Eceabat Special Section */
        .eceabat-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(45,80,22,0.03) 0%, rgba(107,142,35,0.03) 100%);
            position: relative;
        }
        
        .eceabat-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .eceabat-image {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            position: relative;
        }
        
        .eceabat-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .eceabat-image:hover img {
            transform: scale(1.05);
        }
        
        .eceabat-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            background: var(--gold-gradient);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(249,212,35,0.4);
        }
        
        .eceabat-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--text-color);
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .eceabat-text h2 .highlight {
            color: var(--accent-color);
            font-weight: 800;
        }
        
        .eceabat-text p {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 2;
            margin-bottom: 20px;
        }
        
        .eceabat-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(107,142,35,0.15);
        }
        
        .feature-icon {
            font-size: 35px;
            color: var(--accent-color);
        }
        
        .feature-text {
            font-weight: 600;
            color: var(--text-color);
        }
        
        /* Quick Facts */
        .quick-facts {
            background: var(--primary-gradient);
            color: white;
            padding: 80px 0;
        }
        
        .facts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .fact-card {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }
        
        .fact-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.15);
        }
        
        .fact-card i {
            font-size: 50px;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .fact-card h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
        }
        
        .fact-card p {
            font-size: 1rem;
            opacity: 0.95;
        }
        
        /* CTA Section */
        .cta-knowledge {
            padding: 100px 0;
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
            text-align: center;
        }
        
        .cta-knowledge h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--text-color);
            margin-bottom: 25px;
        }
        
        .cta-knowledge p {
            font-size: 1.3rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 18px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-primary {
            background: var(--accent-gradient);
            color: white;
            box-shadow: 0 10px 30px rgba(139,195,74,0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(139,195,74,0.4);
        }
        
        .btn-outline {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-stats {
                gap: 25px;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-description {
                font-size: 1rem;
            }
            
            .categories-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .category-card {
                padding: 30px 25px;
            }
            
            .category-icon {
                font-size: 50px;
            }
            
            .category-title {
                font-size: 1.4rem;
            }
            
            .eceabat-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .eceabat-text h2 {
                font-size: 2.2rem;
            }
            
            .eceabat-features {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .facts-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .fact-card h3 {
                font-size: 1.8rem;
            }
            
            .cta-knowledge h2 {
                font-size: 2.2rem;
            }
            
            .cta-knowledge p {
                font-size: 1.05rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }