.page-support-faq {
    background-color: #FFFFFF;
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px);
}

.page-support-faq__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #000000;
    color: #FFFFFF;
    gap: 30px;
}

.page-support-faq__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-support-faq__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FCBC45;
    font-weight: bold;
}

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

.page-support-faq__hero-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support-faq__hero-button:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

.page-support-faq__hero-image {
    width: 100%;
    max-width: 1000px;
    border-radius: 10px;
    overflow: hidden;
}

.page-support-faq__hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.page-support-faq__content-area {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.page-support-faq__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
    font-weight: bold;
}

.page-support-faq__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-support-faq__faq-item {
    background-color: #F8F8F8;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-support-faq__faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.page-support-faq__faq-question {
    font-size: 1.4em;
    padding: 20px;
    margin: 0;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-weight: bold;
}

.page-support-faq__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
    position: absolute;
    right: 20px;
}

.page-support-faq__faq-item.active .page-support-faq__faq-question::after {
    content: '-';
    transform: rotate(0deg);
}

.page-support-faq__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1.1em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-support-faq__faq-item.active .page-support-faq__faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.page-support-faq__faq-answer p {
    margin-bottom: 15px;
}

.page-support-faq__faq-answer a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-support-faq__faq-answer a:hover {
    text-decoration: underline;
}

.page-support-faq__button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support-faq__button--register {
    background-color: #FCBC45;
    color: #000000;
}

.page-support-faq__button--register:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
}

.page-support-faq__button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-support-faq__button--login:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
}

.page-support-faq__button--download {
    background-color: #FCBC45;
    color: #000000;
}

.page-support-faq__button--download:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
}

.page-support-faq__cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    gap: 40px;
    margin-top: 60px;
}

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

.page-support-faq__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FCBC45;
    font-weight: bold;
}

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

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

.page-support-faq__button--contact {
    background-color: #FFFFFF;
    color: #000000;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support-faq__button--contact:hover {
    background-color: #E0E0E0;
    transform: translateY(-3px);
}

.page-support-faq__button--register-alt {
    background-color: #FCBC45;
    color: #000000;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support-faq__button--register-alt:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

.page-support-faq__cta-image {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
}

.page-support-faq__cta-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .page-support-faq__hero-section {
        padding: 40px 15px;
    }

    .page-support-faq__hero-title {
        font-size: 2.2em;
    }

    .page-support-faq__hero-description {
        font-size: 1em;
    }

    .page-support-faq__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-support-faq__faq-question {
        font-size: 1.2em;
        padding: 15px;
    }

    .page-support-faq__faq-question::after {
        right: 15px;
    }

    .page-support-faq__faq-answer {
        font-size: 0.95em;
        padding: 0 15px 15px 15px;
    }

    .page-support-faq__faq-item.active .page-support-faq__faq-answer {
        padding: 0 15px 15px 15px;
    }

    .page-support-faq__cta-section {
        padding: 40px 15px;
    }

    .page-support-faq__cta-title {
        font-size: 2em;
    }

    .page-support-faq__cta-description {
        font-size: 1em;
    }

    .page-support-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-support-faq img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-support-faq__hero-title {
        font-size: 1.8em;
    }
    .page-support-faq__section-title {
        font-size: 1.8em;
    }
    .page-support-faq__cta-title {
        font-size: 1.6em;
    }
}