.faq-hero {
    padding: 60px 0;
    text-align: center;
}

.faq-intro {
    font-size: 18px;
    color: #555;
    margin-top: -20px;
    margin-bottom: 30px;
}

.faq-content-block {
    padding: 40px 0 80px;
}

.faq-group {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-group-title {
    font-size: 30px;
    color: #1e3c72;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff6b35;
    display: inline-block;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #ddd;
}

.faq-question {
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8f8f8;
}

.faq-question.active {
    background-color: #1e3c72; 
    color: white;
}

.faq-toggle-icon {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    transition: transform 0.3s;
}

.faq-question.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    display: none;
}

.faq-answer p {
    padding-top: 15px;
    padding-bottom: 20px;
    margin: 0;
    border-top: 1px dashed #eee;
}

.contact-prompt p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1e3c72;
    font-weight: 500;
}


