body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.faq-section {
    margin-bottom: 2rem;
}

.faq-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
    text-align: left;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    cursor: pointer;
    padding: 1rem;
    background-color: #f8f9fa;
    font-weight: 500;
    font-size: 1.1em;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question::after {
    content: '\25BC';
    font-size: 0.8rem;
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 1rem;
}

.faq-answer p {
    margin: 1rem 0;
    font-size: 1em;
    color: #555;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 15px;
        margin: 2rem auto;
    }

    .faq-section h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1em;
    }

    .faq-answer p {
        font-size: 0.9em;
    }
}