.page-faq {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

.page-faq__hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px);
}

.page-faq__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-faq__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-faq__hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 800px;
}

.page-faq__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B40C;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-faq__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-faq__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-faq__btn-primary,
.page-faq__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-faq__btn-primary {
    background-color: #E0B40C;
    color: #0A0A0A;
    border: 2px solid #E0B40C;
}

.page-faq__btn-primary:hover {
    background-color: #f0c520;
    border-color: #f0c520;
}

.page-faq__btn-secondary {
    background-color: transparent;
    color: #E0B40C;
    border: 2px solid #E0B40C;
}

.page-faq__btn-secondary:hover {
    background-color: #E0B40C;
    color: #0A0A0A;
}

.page-faq__content-area {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-faq__section-title {
    font-size: 2.5em;
    color: #0A0A0A;
    text-align: center;
    margin-bottom: 20px;
}

.page-faq__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555555;
}

.page-faq__faq-list {
    margin-top: 40px;
}

.page-faq__faq-category {
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fcfcfc;
}

.page-faq__category-title {
    background-color: #0A0A0A;
    color: #E0B40C;
    padding: 20px;
    font-size: 1.8em;
    margin: 0;
    border-bottom: 1px solid #1a1a1a;
}

.page-faq__faq-item {
    border-bottom: 1px solid #eeeeee;
}

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

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #0A0A0A;
    cursor: pointer;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

.page-faq__faq-question:hover {
    background-color: #f5f5f5;
}

.page-faq__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-faq__faq-item.active .page-faq__faq-toggle {
    transform: rotate(45deg);
}

.page-faq__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #ffffff;
    color: #555555;
}

.page-faq__faq-item.active .page-faq__faq-answer {
    max-height: 1000px !important;
    padding: 15px 25px;
}

.page-faq__faq-answer p {
    margin-bottom: 10px;
}
.page-faq__faq-answer p:last-child {
    margin-bottom: 0;
}
.page-faq__faq-answer a {
    color: #E0B40C;
    text-decoration: none;
    font-weight: bold;
}
.page-faq__faq-answer a:hover {
    text-decoration: underline;
}

.page-faq__cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0A0A0A;
    border-radius: 12px;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: cover;
    min-height: 200px;
}

.page-faq__cta-content {
    max-width: 700px;
}

.page-faq__cta-title {
    font-size: 2.2em;
    color: #E0B40C;
    margin-bottom: 20px;
}

.page-faq__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #cccccc;
}

.page-faq__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .page-faq__hero-title {
        font-size: 3em;
    }
    .page-faq__section-title {
        font-size: 2.2em;
    }
    .page-faq__category-title {
        font-size: 1.6em;
    }
    .page-faq__faq-question {
        font-size: 1.1em;
    }
    .page-faq__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-faq__hero-section {
        height: 500px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-faq__hero-title {
        font-size: 2.5em;
    }
    .page-faq__hero-description {
        font-size: 1em;
    }
    .page-faq__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-faq__btn-primary,
    .page-faq__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-faq__content-area {
        padding: 30px 15px;
    }
    .page-faq__container {
        padding: 0 15px;
    }
    .page-faq__section-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-faq__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-faq__category-title {
        font-size: 1.4em;
        padding: 15px 20px;
    }
    .page-faq__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-faq__faq-answer {
        padding: 0 20px;
    }
    .page-faq__faq-item.active .page-faq__faq-answer {
        padding: 15px 20px;
    }

    .page-faq__cta-section {
        padding: 30px 20px;
        margin-top: 40px;
    }
    .page-faq__cta-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 20px;
    }
    .page-faq__cta-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-faq__cta-description {
        font-size: 0.95em;
        margin-bottom: 25px;
    }
    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0;
    }

    .page-faq img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-faq__section,
    .page-faq__card,
    .page-faq__container,
    .page-faq__hero-section,
    .page-faq__cta-section,
    .page-faq__faq-list,
    .page-faq__faq-category,
    .page-faq__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    .page-faq__faq-category, .page-faq__cta-section {
        padding: 0;
    }

}

@media (max-width: 480px) {
    .page-faq__hero-section {
        height: 400px;
    }
    .page-faq__hero-title {
        font-size: 2em;
    }
    .page-faq__section-title {
        font-size: 1.8em;
    }
    .page-faq__category-title {
        font-size: 1.2em;
    }
    .page-faq__cta-title {
        font-size: 1.6em;
    }
}