/* style/faq-account-issues.css */

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

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

.page-faq-account-issues__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-faq-account-issues__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #ffe08a; /* Lighter shade of gold for contrast */
}

.page-faq-account-issues__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-faq-account-issues__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Burgundy */
    border: 2px solid #FFD700;
}

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

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

.page-faq-account-issues__btn--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    transform: translateY(-3px);
}

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

.page-faq-account-issues__section-title {
    font-size: 2.8em;
    color: #8B0000; /* Burgundy */
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-faq-account-issues__faq-category {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 30px;
}

.page-faq-account-issues__category-title {
    font-size: 2em;
    color: #FFD700; /* Gold */
    border-bottom: 3px solid #8B0000; /* Burgundy */
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-faq-account-issues__faq-item {
    margin-bottom: 25px;
}

.page-faq-account-issues__question {
    font-size: 1.3em;
    color: #8B0000; /* Burgundy */
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    padding-left: 30px;
}

.page-faq-account-issues__question::before {
    content: 'Q.';
    position: absolute;
    left: 0;
    color: #FFD700; /* Gold */
    font-weight: bold;
}

.page-faq-account-issues__answer {
    font-size: 1em;
    line-height: 1.7;
    color: #555;
    padding-left: 30px;
}

.page-faq-account-issues__inline-link {
    color: #8B0000;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
    padding-left: 30px;
    display: inline-block;
    margin-top: 10px;
}

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

.page-faq-account-issues__cta-section {
    background-color: #8B0000; /* Burgundy */
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-faq-account-issues__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold */
    font-weight: bold;
}

.page-faq-account-issues__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #ffe08a; /* Lighter shade of gold */
}

.page-faq-account-issues__btn--contact {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Burgundy */
    border: 2px solid #FFD700;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-faq-account-issues__hero-title {
        font-size: 2.5em;
    }
    .page-faq-account-issues__hero-description {
        font-size: 1em;
    }
    .page-faq-account-issues__hero-actions {
        flex-direction: column;
    }
    .page-faq-account-issues__btn {
        width: 80%;
        margin: 0 auto 15px auto;
    }
    .page-faq-account-issues__section-title {
        font-size: 2em;
    }
    .page-faq-account-issues__category-title {
        font-size: 1.6em;
    }
    .page-faq-account-issues__question {
        font-size: 1.1em;
    }
    .page-faq-account-issues__answer, .page-faq-account-issues__inline-link {
        font-size: 0.95em;
    }
    .page-faq-account-issues__cta-title {
        font-size: 2.2em;
    }
    .page-faq-account-issues__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-faq-account-issues__hero-title {
        font-size: 2em;
    }
    .page-faq-account-issues__section-title {
        font-size: 1.8em;
    }
    .page-faq-account-issues__category-title {
        font-size: 1.4em;
    }
    .page-faq-account-issues__btn {
        width: 90%;
    }
}