.faq-section {
    margin: 60px auto;
    padding: 40px 25px;
    background: #fffefc;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Lora', serif;
    color: #3b2c10;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #7a5a15;
    margin-bottom: 20px;
}

.faq-section p {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin: 10px 0;
}

.faq-question {
    background: #fdf6e3;
    color: #7a5a15;
    border: none;
    width: 100%;
    text-align: left;
    padding: 12px 15px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s;
    font-weight: bold;
}

.faq-question:hover {
    background: #fcebbf;
}

.faq-answer {
    display: none;
    padding: 10px 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
}
