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

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

/* Hero Section */
.page-faq-account-issues__hero-section {
    background-color: #0A2342; /* Main brand color */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq-account-issues__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.9), rgba(255, 215, 0, 0.2)); /* Gradient with brand colors */
    z-index: 0;
}

.page-faq-account-issues__hero-title,
.page-faq-account-issues__hero-subtitle {
    position: relative;
    z-index: 1;
}

.page-faq-account-issues__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Accent color for title */
}

.page-faq-account-issues__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-faq-account-issues__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1em;
    cursor: pointer;
    border: none;
}

.page-faq-account-issues__btn--primary {
    background-color: #FFD700; /* Accent color */
    color: #0A2342; /* Main brand color */
    border: 2px solid #FFD700;
}

.page-faq-account-issues__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-faq-account-issues__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Accent color */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-faq-account-issues__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-2px);
}

.page-faq-account-issues__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Content Section */
.page-faq-account-issues__content-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-faq-account-issues__article {
    margin-bottom: 60px;
    padding: 30px;
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-faq-account-issues__section-title {
    font-size: 2em;
    color: #0A2342; /* Main brand color */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-faq-account-issues__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Accent color */
    border-radius: 2px;
}

/* FAQ Items - Accordion like structure */
.page-faq-account-issues__faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.page-faq-account-issues__faq-item:last-of-type {
    border-bottom: none;
}

.page-faq-account-issues__faq-question {
    font-size: 1.25em;
    color: #0A2342;
    cursor: pointer;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.page-faq-account-issues__faq-question:hover {
    color: #FFD700;
}

.page-faq-account-issues__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-faq-account-issues__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    color: #555;
    padding: 0 15px;
}

.page-faq-account-issues__faq-answer.active {
    max-height: 500px; /* Adjust based on content */
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-top: 10px;
}

.page-faq-account-issues__faq-answer p,
.page-faq-account-issues__faq-answer ul,
.page-faq-account-issues__faq-answer ol {
    margin-bottom: 10px;
    padding-left: 20px;
}

.page-faq-account-issues__faq-answer ul li::before {
    content: '•';
    color: #FFD700;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.page-faq-account-issues__faq-answer ol li::marker {
    color: #FFD700;
    font-weight: bold;
}

/* Images */
.page-faq-account-issues__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-faq-account-issues__main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-faq-account-issues__main-image:hover {
    transform: translateY(-5px);
}

.page-faq-account-issues__image-wrapper--alt {
    margin-top: 80px;
    margin-bottom: 80px;
}

.page-faq-account-issues__image-wrapper--last {
    margin-top: 80px;
    margin-bottom: 60px;
}

.page-faq-account-issues__text-link {
    color: #0A2342;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-faq-account-issues__text-link:hover {
    color: #FFD700;
}

/* Conclusion */
.page-faq-account-issues__conclusion {
    background-color: #0A2342;
    color: #fff;
    text-align: center;
    padding: 50px 30px;
}

.page-faq-account-issues__conclusion .page-faq-account-issues__section-title {
    color: #FFD700;
}

.page-faq-account-issues__conclusion .page-faq-account-issues__section-title::after {
    background-color: #FFD700;
}

.page-faq-account-issues__conclusion p {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.page-faq-account-issues__conclusion .page-faq-account-issues__btn--primary {
    background-color: #FFD700;
    color: #0A2342;
}

.page-faq-account-issues__conclusion .page-faq-account-issues__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-faq-account-issues__conclusion .page-faq-account-issues__text-link {
    color: #FFD700;
}

.page-faq-account-issues__conclusion .page-faq-account-issues__text-link:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-faq-account-issues__hero-title {
        font-size: 2em;
    }

    .page-faq-account-issues__hero-subtitle {
        font-size: 1em;
    }

    .page-faq-account-issues__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-faq-account-issues__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-faq-account-issues__cta-wrapper {
        flex-direction: column;
    }

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

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

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

    .page-faq-account-issues__hero-subtitle {
        font-size: 0.9em;
    }

    .page-faq-account-issues__btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .page-faq-account-issues__btn--secondary {
        margin-top: 0;
    }

    .page-faq-account-issues__hero-section {
        padding: 60px 0;
    }

    .page-faq-account-issues__content-section {
        padding: 40px 0;
    }

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

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

    .page-faq-account-issues__faq-question {
        font-size: 1em;
        padding: 10px 0;
    }

    .page-faq-account-issues__faq-answer.active {
        padding: 10px;
    }
}