.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.faq-list {
    border-top: 1px solid #000;
}

.faq-item {
    border-bottom: 1px solid #000;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}
.faq-btn:hover { background-color: rgba(0,0,0,0.02); }

.faq-question {
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}

.arrow-icon {
    width: 14px;
    height: 14px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: 10px;
}

.faq-item.active .arrow-icon {
    transform: rotate(-135deg);
}

.faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 10px;
}

.faq-item.active .faq-content {
    max-height: 1200px;
    opacity: 1;
    padding-bottom: 30px;
    padding-top: 10px;
}

.shipping-block h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.shipping-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
}

.shipping-list li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

.geo-tag {
    font-weight: 700;
    font-size: 12px;
    margin-left: 5px;
    text-transform: uppercase;
}

.ing-category {
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 15px;
}

.ing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ing-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    color: #444;
    line-height: 1.4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}
.dot-lime { background-color: #C0D72F; }
.dot-green { background-color: #6FA228; }
.dot-blue { background-color: #4A90E2; }

.ing-legend {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}
.legend-title { font-weight: 700; font-size: 14px; margin-bottom: 10px; }

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 12px;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
}

.simple-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 1024px){
    .faq-section {
        padding: 60px 20px 0 20px;
    }

    .faq-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 14px;
    }

    .shipping-block h4 {
        font-size: 14px;
    }

    .shipping-list li {
        font-size: 14px;
    }
}