
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #3e4a34;
}

.faq-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.faq-section h1 {
    text-align: center;
    font-size: 2rem;
    color: #3e4a34;
}

.faq-item {
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background-color: #c0892c;
    color: white;
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    margin-right: 10px;
}

.faq-answer {
    background-color: #f9f9f9;
    color: #3e4a34;
    padding: 15px;
    display: none;
}

.faq-question .arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

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

@media (max-width: 600px) {
    .faq-question {
        font-size: 0.9rem;
    }
    .faq-section h1 {
        font-size: 1.5rem;
    }
}
