/* style/faq.css */
.page-faq {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.page-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-faq__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue for better contrast */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffc107; /* Auxiliary color for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}

.page-faq__content {
    padding: 60px 0;
}

.page-faq__section-title {
    font-size: 2.2em;
    color: #007bff;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-faq__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.page-faq__accordion {
    margin-top: 40px;
}

.page-faq__accordion-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-faq__accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #f2f2f2;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-faq__accordion-header:hover {
    background-color: #e6e6e6;
}

.page-faq__accordion-header.active {
    background-color: #007bff;
    color: #fff;
}

.page-faq__accordion-header.active .page-faq__accordion-title {
    color: #fff;
}

.page-faq__accordion-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #007bff;
    text-decoration: none;
    flex-grow: 1;
    padding-right: 15px;
}

.page-faq__accordion-header.active .page-faq__accordion-icon {
    transform: rotate(180deg);
    color: #fff;
}

.page-faq__accordion-icon {
    font-size: 1.5em;
    color: #007bff;
    transition: transform 0.3s ease;
    content: '+'; /* Default plus icon */
    display: block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}

.page-faq__accordion-icon::before {
    content: '+'; /* Plus icon when inactive */
}

.page-faq__accordion-content {
    padding: 20px 25px;
    border-top: 1px solid #eee;
    display: none;
    animation: fadeIn 0.4s ease-out;
    color: #555;
}

.page-faq__accordion-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-faq__accordion-content ul,
.page-faq__accordion-content ol {
    margin-left: 25px;
    margin-bottom: 15px;
    list-style-type: disc;
}

.page-faq__accordion-content ol {
    list-style-type: decimal;
}

.page-faq__accordion-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}