/* Accordion Ana Blok */
.accordion {
    border-top: 1px solid rgba(45, 49, 32, .1);
    width: 100%;
}

.acc-item {
    border-bottom: 1px solid rgba(45, 49, 32, .09);
}

/* Akordiyon Başlığı */
.acc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0; /* Görseldeki gibi biraz daha nefes alan dikey boşluk */
    cursor: pointer;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted); /* Kapalıyken o hafif soluk gri tonu */
    user-select: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

/* Hover olduğunda başlık azıcık koyu olmalı demiştin, tam o ton */
.acc-head:hover {
    color: rgba(45, 49, 32, 0.7);
}

/* Akordiyon açıkken başlık renginin (Görseldeki GEBRUIK & DOSERING gibi) tamamen koyu kalması için */
.acc-body.open-style + .acc-head, /* Eğer yapıyı tetikliyorsa */
.acc-item:has(.acc-body.open) .acc-head {
    color: var(--olive);
}

/* Sağdaki Artı / Eksi İkonu - Tam olarak #D8A967 rengi */
.acc-arrow {
    font-size: 18px;
    font-weight: 300;
    color: #D8A967; /* Nokta atışı renk */
    display: inline-block;
    transition: transform .3s ease, color .3s ease;
    line-height: 1;
}

/* Gövde ve Yumuşak Açılış Geçişi */
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* İçerik Alanı - İstediğin tam #1D1F17BF (%75 opaklıkta koyu ton) renk düzeni */
.acc-body-inner {
    padding: 0 0 22px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #1D1F17BF; /* İstediğin tam text rengi */
    line-height: 1.75;
    font-weight: 400;
}

/* Editör listeleri ve paragrafları için esnek boşluklar */
.acc-body-inner p {
    margin-bottom: 10px;
}
.acc-body-inner p:last-child {
    margin-bottom: 0;
}

.acc-body-inner ul {
    padding-left: 18px;
    margin-top: 8px;
    list-style-type: disc;
}

.acc-body-inner li {
    margin-bottom: 6px;
}

/* Hollanda Gıda Güvenliği Kurumu (NVWA) Uyarısı - Görseldeki soft kutu */
.nvwa-box {
    background: rgba(45, 49, 32, .04);
    border-radius: 12px;
    padding: 18px 22px;
    font-size: 12.5px;
    color: rgba(45, 49, 32, 0.6); /* Kutu içindeki metnin o hafif soft gri tonu */
    line-height: 1.75;
    margin-top: 4px;
    font-weight: 400;
}