/* style/deposit-faq.css */

/* Base styles for the page */
.page-deposit-faq {
    font-family: 'Arial', sans-serif;
    color: #F5F5DC; /* Light beige for text on dark background */
    background-color: #0A2239; /* Dark blue/black main background */
    line-height: 1.6;
}

.page-deposit-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-deposit-faq__section {
    padding: 60px 0;
}

.page-deposit-faq__section-title {
    color: #FFD700; /* Gold for titles */
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-deposit-faq__hero {
    background: linear-gradient(135deg, #0A2239 0%, #3a506b 100%);
    color: #F5F5DC;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.page-deposit-faq__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-deposit-faq__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F5F5DC;
}

.page-deposit-faq__button {
    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-deposit-faq__button--primary {
    background-color: #FFD700;
    color: #0A2239;
}

.page-deposit-faq__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-deposit-faq__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-deposit-faq__button--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
    transform: translateY(-3px);
}

.page-deposit-faq__intro p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #F5F5DC;
    text-align: justify;
}

.page-deposit-faq__intro p strong {
    color: #FFD700;
}

.page-deposit-faq__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-deposit-faq__method-item {
    background-color: #1a3a5a; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-deposit-faq__method-item:hover {
    transform: translateY(-10px);
}

.page-deposit-faq__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-deposit-faq__method-title {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-deposit-faq__method-item p {
    color: #F5F5DC;
    font-size: 0.95em;
}

.page-deposit-faq__note {
    font-style: italic;
    text-align: center;
    margin-top: 30px;
    color: #ccc;
}

.page-deposit-faq__guide .page-deposit-faq__section-title {
    color: #FFD700;
}

.page-deposit-faq__steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-deposit-faq__step-item {
    background-color: #1a3a5a;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 90px;
}

.page-deposit-faq__step-item::before {
    counter-increment: step-counter;
    content: "Bước " counter(step-counter);
    position: absolute;
    left: 30px;
    top: 30px;
    background-color: #FFD700;
    color: #0A2239;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-deposit-faq__step-title {
    color: #FFD700;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-deposit-faq__step-item p {
    color: #F5F5DC;
    margin-bottom: 10px;
}

.page-deposit-faq__step-item ul {
    list-style: disc;
    margin-left: 20px;
    color: #F5F5DC;
}

.page-deposit-faq__step-item ul li {
    margin-bottom: 5px;
}

.page-deposit-faq__step-item a {
    color: #FFD700;
    text-decoration: underline;
}

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

.page-deposit-faq__faq .page-deposit-faq__section-title {
    color: #FFD700;
}

.page-deposit-faq__accordion {
    margin-top: 40px;
}

.page-deposit-faq__accordion-item {
    background-color: #1a3a5a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-deposit-faq__accordion-header {
    background-color: #2a4c6e; /* Slightly different shade for header */
    color: #FFD700;
    padding: 20px;
    cursor: pointer;
    font-size: 1.3em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-deposit-faq__accordion-header:hover {
    background-color: #3a5c7e;
}

.page-deposit-faq__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-deposit-faq__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-deposit-faq__accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #F5F5DC;
}

.page-deposit-faq__accordion-content p {
    margin-bottom: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: justify;
}

.page-deposit-faq__tips .page-deposit-faq__section-title {
    color: #FFD700;
}

.page-deposit-faq__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-deposit-faq__tip-list li {
    background-color: #1a3a5a;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 50px;
    color: #F5F5DC;
    font-size: 1.05em;
}

.page-deposit-faq__tip-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2em;
}

.page-deposit-faq__tip-list li strong {
    color: #FFD700;
}

.page-deposit-faq__cta-support {
    background-color: #0A2239;
    padding: 80px 0;
    text-align: center;
}

.page-deposit-faq__cta-support-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-deposit-faq__cta-image {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-deposit-faq__cta-support .page-deposit-faq__section-title {
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 20px;
}

.page-deposit-faq__cta-support p {
    color: #F5F5DC;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-deposit-faq__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #F5F5DC;
}

.page-deposit-faq__contact-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-deposit-faq__contact-list li strong {
    color: #FFD700;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-deposit-faq__cta-support-content {
        flex-direction: row;
        text-align: left;
    }
    .page-deposit-faq__cta-image {
        margin-right: 40px;
    }
    .page-deposit-faq__cta-support-content > div {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .page-deposit-faq__hero-title {
        font-size: 2.5em;
    }
    .page-deposit-faq__hero-subtitle {
        font-size: 1.1em;
    }
    .page-deposit-faq__section-title {
        font-size: 2em;
    }
    .page-deposit-faq__methods-grid {
        grid-template-columns: 1fr;
    }
    .page-deposit-faq__step-item {
        padding-left: 30px;
    }
    .page-deposit-faq__step-item::before {
        position: static;
        margin-bottom: 15px;
        display: inline-flex;
        margin-right: 10px;
        vertical-align: middle;
    }
    .page-deposit-faq__accordion-header {
        font-size: 1.1em;
    }
    .page-deposit-faq__cta-image {
        margin-bottom: 30px;
    }
}