#faq-hero-image {
    background-image: url('../images/faq/faq_hero_image.jpg'); 
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(84, 58, 51, 0.15);
    border-radius: inherit;
}

.hero-overlay h2 {
    font-family: 'Quickpen', sans-serif;
    font-size: 4em;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.intro-section {
    z-index: 7;
}

.faq-page-section {
    padding: 30px 0 200px;
    background-color: #F5F6F6; 
    position: relative;
    z-index: 6;
    border-radius: 0;
}

.faq-page-section .container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.faq-item {
    border-radius: 0; 
    overflow: hidden; 
}

.faq-question {
    background-color: #fff;
    color: #543A33;
    cursor: pointer;
    padding: 20px; 
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover, 
.faq-question:active,
.faq-question.active {
    background-color: #543A33;
    color: #fff;
}

.faq-question-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question-title .fa-circle-question {
    font-size: 1.2em;
    flex-shrink: 0;
    color: #543A33;
    transition: color 0.3s ease;
}

.faq-icon {
    transition: transform 0.3s ease, color 0.3s ease;
    color: #543A33;
}

.faq-question:hover .fa-circle-question,
.faq-question:active .fa-circle-question,
.faq-question.active .fa-circle-question,
.faq-question:hover .faq-icon,
.faq-question:active .faq-icon,
.faq-question.active .faq-icon {
    color: #fff;
}

.faq-question.active .faq-icon {
    transform: rotate(135deg); 
}

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

.faq-answer-content {
    padding: 20px; 
    line-height: 1.8;
}

.faq-answer-content a {
    color: #F4C93F;
    text-decoration: underline;
    font-weight: bold;
}

.faq-answer-content a:hover {
    color: #543A33;
}