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

:root {
    --page-faq-account-issues-primary-color: #0A192F;
    --page-faq-account-issues-secondary-color: #FFD700;
    --page-faq-account-issues-text-light: #FFFFFF;
    --page-faq-account-issues-text-dark: #0A192F;
    --page-faq-account-issues-background-light: #F0F2F5;
    --page-faq-account-issues-background-dark: #0A192F;
    --page-faq-account-issues-border-color: #334D6E;
}

.page-faq-account-issues {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-faq-account-issues-text-dark);
    background-color: var(--page-faq-account-issues-background-light);
}

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

.page-faq-account-issues__hero {
    background: linear-gradient(135deg, var(--page-faq-account-issues-primary-color) 0%, #1a3a5e 100%);
    color: var(--page-faq-account-issues-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--page-faq-account-issues-secondary-color);
}

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

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

.page-faq-account-issues__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--page-faq-account-issues-text-light);
}

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

.page-faq-account-issues__cta-button {
    display: inline-block;
    background-color: var(--page-faq-account-issues-secondary-color);
    color: var(--page-faq-account-issues-primary-color);
    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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-faq-account-issues__section {
    padding: 60px 0;
    background-color: var(--page-faq-account-issues-background-light);
    border-bottom: 1px solid #e0e0e0;
}

.page-faq-account-issues__section:nth-of-type(even) {
    background-color: #e9ecef;
}

.page-faq-account-issues__section-title {
    font-size: 2.5em;
    color: var(--page-faq-account-issues-primary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-faq-account-issues__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-faq-account-issues-secondary-color);
    border-radius: 2px;
}

.page-faq-account-issues__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-faq-account-issues__grid.reverse-order {
    grid-template-columns: 1fr 1fr;
}

.page-faq-account-issues__grid.reverse-order .page-faq-account-issues__image-wrapper {
    order: 2;
}

.page-faq-account-issues__grid.reverse-order .page-faq-account-issues__content-block {
    order: 1;
}

.page-faq-account-issues__image-wrapper {
    text-align: center;
}

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

.page-faq-account-issues__image:hover {
    transform: scale(1.02);
}

.page-faq-account-issues__content-block {
    background-color: var(--page-faq-account-issues-text-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-faq-account-issues__question {
    font-size: 1.8em;
    color: var(--page-faq-account-issues-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
    border-left: 5px solid var(--page-faq-account-issues-secondary-color);
    padding-left: 15px;
}

.page-faq-account-issues__answer {
    font-size: 1.1em;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-faq-account-issues__link {
    color: var(--page-faq-account-issues-primary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-faq-account-issues__link:hover {
    color: var(--page-faq-account-issues-secondary-color);
}

.page-faq-account-issues__button {
    display: inline-block;
    background-color: var(--page-faq-account-issues-primary-color);
    color: var(--page-faq-account-issues-text-light);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
}

.page-faq-account-issues__button:hover {
    background-color: #1a3a5e;
    transform: translateY(-2px);
}

.page-faq-account-issues__conclusion {
    background: linear-gradient(45deg, var(--page-faq-account-issues-primary-color), #2d4f75);
    color: var(--page-faq-account-issues-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-faq-account-issues__conclusion .page-faq-account-issues__section-title {
    color: var(--page-faq-account-issues-text-light);
}

.page-faq-account-issues__conclusion .page-faq-account-issues__section-title::after {
    background-color: var(--page-faq-account-issues-secondary-color);
}

.page-faq-account-issues__text {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
    color: #E0E0E0;
}

.highlight {
    color: var(--page-faq-account-issues-secondary-color);
}

.keyword {
    font-weight: bold;
    color: var(--page-faq-account-issues-primary-color);
}

.page-faq-account-issues__transactions-promotions .keyword {
    color: var(--page-faq-account-issues-primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-faq-account-issues__title {
        font-size: 2.5em;
    }
    .page-faq-account-issues__subtitle {
        font-size: 1.1em;
    }
    .page-faq-account-issues__section-title {
        font-size: 2em;
    }
    .page-faq-account-issues__grid {
        grid-template-columns: 1fr;
    }
    .page-faq-account-issues__grid.reverse-order .page-faq-account-issues__image-wrapper {
        order: initial;
    }
    .page-faq-account-issues__grid.reverse-order .page-faq-account-issues__content-block {
        order: initial;
    }
    .page-faq-account-issues__image {
        margin-bottom: 20px;
    }
    .page-faq-account-issues__content-block {
        padding: 25px;
    }
    .page-faq-account-issues__question {
        font-size: 1.5em;
    }
    .page-faq-account-issues__answer {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .page-faq-account-issues__hero {
        padding: 60px 0;
    }
    .page-faq-account-issues__title {
        font-size: 2em;
    }
    .page-faq-account-issues__subtitle {
        font-size: 0.95em;
    }
    .page-faq-account-issues__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-faq-account-issues__section {
        padding: 40px 0;
    }
    .page-faq-account-issues__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-faq-account-issues__content-block {
        padding: 20px;
    }
    .page-faq-account-issues__question {
        font-size: 1.3em;
    }
    .page-faq-account-issues__answer {
        font-size: 0.9em;
    }
    .page-faq-account-issues__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-faq-account-issues__conclusion {
        padding: 60px 0;
    }
    .page-faq-account-issues__text {
        font-size: 1em;
        margin-bottom: 30px;
    }
}