.cultivarte-technical-content {
    background: #ffffff;
    border: 1px solid #e0e6ed;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
    color: #334155;
    font-family: 'Inter', sans-serif;
}

.cultivarte-section {
    margin-bottom: 30px;
}

.cultivarte-section:last-child {
    margin-bottom: 0;
}

.cultivarte-section h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cultivarte-section h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.2em;
    background: #10b981;
    border-radius: 2px;
}

.cultivarte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.cultivarte-card {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 15px;
    border-radius: 10px;
}

.cultivarte-card h4 {
    color: #475569;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    font-weight: 600;
}

.cultivarte-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.assoc-label {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.label-beneficial {
    background: #dcfce7;
    color: #166534;
}

.label-harmful {
    background: #fee2e2;
    color: #991b1b;
}

.cultivarte-faqs details {
    margin-bottom: 10px;
    border: 1px solid #f1f5f9;
    border-radius: 6px;
}

.cultivarte-faqs summary {
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #334155;
    background: #f8fafc;
}

.cultivarte-faqs .faq-content {
    padding: 10px 15px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.95rem;
}