.faq-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
    font-size: 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h1 {
    color: #2e7d32;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.faq-header p {
    color: #666;
    font-size: 1.1em;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border: 1px solid #e0f2e9;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8fcf8;
}

.faq-question h3 {
    color: #2e7d32;
    font-size: 1.1em;
    margin-right: 15px;
}

.faq-icon {
    font-size: 1.2em;
    color: #43a047;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.eco-badge {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .faq-container {
        margin: 30px auto;
    }
    
    .faq-header h1 {
        font-size: 2em;
    }

}

@media (max-width: 500px) {
    .faq-container {
        margin: 30px auto;
        font-size: 12px;
    }
    
    .faq-header h1 {
        font-size: 2em;
    }
    
}