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

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

.page-faq-account-issues__hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq-account-issues__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-faq-account-issues__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-faq-account-issues__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq-account-issues__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-faq-account-issues__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-faq-account-issues__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
}

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

.page-faq-account-issues__btn--secondary {
    background-color: #8B0000; /* Dark Red */
    color: #FFD700; /* Gold */
}

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

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

.page-faq-account-issues__section-title {
    font-size: 2.2em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-faq-account-issues__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-faq-account-issues__faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-faq-account-issues__category-card {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq-account-issues__category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-faq-account-issues__card-title {
    font-size: 1.5em;
    color: #8B0000;
    margin-bottom: 10px;
}

.page-faq-account-issues__card-title a {
    text-decoration: none;
    color: #8B0000;
    transition: color 0.3s ease;
}

.page-faq-account-issues__card-title a:hover {
    color: #FFD700;
}

.page-faq-account-issues__category-card p {
    color: #555;
    font-size: 0.95em;
}

.page-faq-account-issues__accordion-group {
    margin-top: 40px;
}

.page-faq-account-issues__accordion-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-faq-account-issues__accordion-header {
    width: 100%;
    background-color: #fff;
    color: #333;
    padding: 20px 25px;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-faq-account-issues__accordion-header:hover {
    background-color: #f5f5f5;
}

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

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

.page-faq-account-issues__accordion-content {
    padding: 0 25px;
    background-color: #fcfcfc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: #555;
}

.page-faq-account-issues__accordion-content p {
    padding: 15px 0;
    margin: 0;
}

.page-faq-account-issues__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-faq-account-issues__cta-section {
    background-color: #8B0000;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.page-faq-account-issues__cta-section .page-faq-account-issues__section-title::after {
    background-color: #fff;
}

.page-faq-account-issues__cta-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-faq-account-issues__cta-image {
    max-width: 300px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 30px;
    border: 5px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

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

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

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

    .page-faq-account-issues__faq-categories {
        grid-template-columns: 1fr;
    }

    .page-faq-account-issues__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-faq-account-issues__accordion-content {
        padding: 0 20px;
    }

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

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

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

    .page-faq-account-issues__btn {
        width: 90%;
        margin: 0 auto;
        display: block;
    }

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