/* style/faq-account-issues.css */
.page-faq-account-issues {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #0A192F; /* Dark blue background */
    line-height: 1.6;
}

.page-faq-account-issues a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-faq-account-issues a:hover {
    color: #FFF; /* White on hover */
}

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

.page-faq-account-issues__hero {
    background: linear-gradient(135deg, #0A192F, #1A3050); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-faq-account-issues__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-faq-account-issues__hero > * {
    position: relative;
    z-index: 1;
}

.page-faq-account-issues__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq-account-issues__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-faq-account-issues__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-faq-account-issues__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
}

.page-faq-account-issues__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-faq-account-issues__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-faq-account-issues__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-faq-account-issues__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-faq-account-issues__faq-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-faq-account-issues__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-faq-account-issues__section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq-account-issues__faq-item {
    background-color: #1A2B40; /* Slightly lighter dark blue for FAQ items */
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 25px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFD700; /* Gold accent */
}

.page-faq-account-issues__faq-question {
    font-size: 1.6em;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-right: 30px;
}

.page-faq-account-issues__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.page-faq-account-issues__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-faq-account-issues__faq-answer {
    font-size: 1.05em;
    color: #E0E0E0;
    padding-top: 10px;
    display: none;
    overflow: hidden;
}

.page-faq-account-issues__faq-answer.active {
    display: block;
}

.page-faq-account-issues__faq-answer p {
    margin-bottom: 15px;
}

.page-faq-account-issues__faq-answer ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-faq-account-issues__faq-answer li {
    margin-bottom: 8px;
}

.page-faq-account-issues__faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq-account-issues__call-to-action {
    background-color: #1A2B40;
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-faq-account-issues__call-to-action .page-faq-account-issues__section-title {
    color: #FFD700;
}

.page-faq-account-issues__call-to-action .page-faq-account-issues__btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-faq-account-issues__hero {
        padding: 60px 0;
    }

    .page-faq-account-issues__title {
        font-size: 2.5em;
    }

    .page-faq-account-issues__subtitle {
        font-size: 1.1em;
    }

    .page-faq-account-issues__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-faq-account-issues__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-faq-account-issues__section-title {
        font-size: 2em;
    }

    .page-faq-account-issues__section-description {
        font-size: 1em;
    }

    .page-faq-account-issues__faq-item {
        padding: 20px;
    }

    .page-faq-account-issues__faq-question {
        font-size: 1.4em;
    }

    .page-faq-account-issues__faq-answer {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-faq-account-issues__title {
        font-size: 2em;
    }

    .page-faq-account-issues__subtitle {
        font-size: 0.95em;
    }

    .page-faq-account-issues__faq-question {
        font-size: 1.2em;
    }

    .page-faq-account-issues__faq-answer {
        font-size: 0.9em;
    }
}