/* FAQ Section Specific Styles */
#faq-list {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

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

.faq-answer {
    padding: 0 1.5rem;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 1.5rem; /* Add padding to the bottom of the paragraph */
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust as needed */
    padding-top: 1.5rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #888;
    transition: transform 0.3s ease;
}

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

/* Survey Injection Styles */
.survey-inject {
    padding: 2rem 1.5rem;
    background-color: #f0f8ff; /* Light blue background */
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

/* Global Disclaimer Styles */
.global-disclaimer {
    padding: 2rem 1.5rem;
    background-color: #eee;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #ddd;
}
