        .agro-hub-container { font-family: inherit; color: #1e293b; line-height: 1.6; max-width: 1200px; margin: 0 auto; }
        
        .agro-hub-intro { margin-bottom: 40px; background: #f8fafc; padding: 25px; border-radius: 12px; border-left: 5px solid #722431; }
        .agro-hub-intro h1 { color: #722431; margin-top: 0; font-size: 28px; }

        .agro-hub-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
            gap: 25px; 
        }
        
        .agro-type-block { 
            background: #ffffff; 
            border: 1px solid #cbd5e1; 
            border-radius: 12px; 
            padding: 20px; 
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); 
            transition: all 0.3s ease;
        }
        
        .agro-type-block:hover { transform: translateY(-5px); border-color: #722431; }
        
        /* Тип культури як посилання */
        .agro-type-link-title { 
            display: block;
            color: #722431 !important; 
            font-size: 1.1rem; 
            font-weight: 800; 
            text-transform: uppercase; 
            border-bottom: 2px solid #722431; 
            margin-bottom: 15px; 
            padding-bottom: 8px; 
            letter-spacing: 0.5px;
            text-decoration: none !important;
        }
        .agro-type-link-title:hover { color: #722431  !important; border-color: #722431; }
        
        .agro-culture-list { list-style: none !important; padding: 0 !important; margin: 0 !important; }
        .agro-culture-item { margin-bottom: 8px; }
        
        .agro-culture-link { 
            text-decoration: none !important; 
            color: #334155 !important; 
            font-weight: 500; 
            display: block; 
            padding: 6px 10px; 
            border-radius: 6px;
            font-size: 14px;
            transition: 0.2s;
        }
        
        .agro-culture-link:hover { background: #f1f5f9; color: #722431 !important; padding-left: 15px; }
        .agro-culture-link::before { content: '→ '; color: #722431; font-weight: bold; }

        @media (max-width: 768px) {
            .agro-hub-grid { grid-template-columns: 1fr; }
        }
