.faq-section {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.faq-container {
    max-width: 1024px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    color: #000;
}

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

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    font-family: inherit;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.answer-content {
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.answer-content p {
    margin: 0 0 15px 0;
}

.answer-content p:last-child {
    margin-bottom: 0;
}

.answer-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.answer-content li {
    margin-bottom: 8px;
}

.faq-image-wrapper {
    width: 100%;
    max-width: 940px;
    margin-bottom: 10px;
}

.faq-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    font-size: 14px;
    color: #666;
}

.ingredients-list {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    word-wrap: break-word;
}

.action-area-faq {
    text-align: center;
    margin-top: 50px;
}

.add-btn-copy {
    background-color: #e93992;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    height: 50px;
    width: 100%;
    max-width: 400px;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
}

.add-btn-copy:hover {
    background-color: #d0287d;
}

@media(max-width: 600px) {
    .faq-section {
        padding: 20px 16px;
    }
}