/* style/withdrawal-guide.css */

/* Biến CSS cho màu sắc */
:root {
    --page-withdrawal-guide-primary-color: #007bff;
    --page-withdrawal-guide-secondary-color: #ffc107;
    --page-withdrawal-guide-text-color: #333;
    --page-withdrawal-guide-text-color-light: #fff;
    --page-withdrawal-guide-bg-light: #f8f9fa;
    --page-withdrawal-guide-bg-dark: #343a40;
    --page-withdrawal-guide-border-color: #dee2e6;
}

.page-withdrawal-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-withdrawal-guide-text-color);
}

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

.page-withdrawal-guide__hero {
    background: linear-gradient(135deg, var(--page-withdrawal-guide-primary-color) 0%, #0056b3 100%);
    color: var(--page-withdrawal-guide-text-color-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-withdrawal-guide__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: page-withdrawal-guide-hero-pulse 15s infinite ease-in-out;
    opacity: 0.3;
}

@keyframes page-withdrawal-guide-hero-pulse {
    0% { transform: scale(0.8) rotate(0deg); opacity: 0.2; }
    50% { transform: scale(1.2) rotate(10deg); opacity: 0.4; }
    100% { transform: scale(0.8) rotate(0deg); opacity: 0.2; }
}

.page-withdrawal-guide__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-withdrawal-guide-text-color-light);
    position: relative;
    z-index: 1;
}

.page-withdrawal-guide__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-withdrawal-guide__link--inline {
    color: var(--page-withdrawal-guide-secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-withdrawal-guide__link--inline:hover {
    text-decoration: underline;
}

.page-withdrawal-guide__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
    position: relative;
    z-index: 1;
}

.page-withdrawal-guide__button--primary {
    background-color: var(--page-withdrawal-guide-secondary-color);
    color: var(--page-withdrawal-guide-text-color);
}

.page-withdrawal-guide__button--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-withdrawal-guide__button--secondary {
    background-color: var(--page-withdrawal-guide-primary-color);
    color: var(--page-withdrawal-guide-text-color-light);
    border: 2px solid var(--page-withdrawal-guide-secondary-color);
}

.page-withdrawal-guide__button--secondary:hover {
    background-color: #0056b3;
    border-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-withdrawal-guide__button--link {
    background: none;
    color: var(--page-withdrawal-guide-primary-color);
    padding: 8px 15px;
    border: 1px solid var(--page-withdrawal-guide-primary-color);
}

.page-withdrawal-guide__button--link:hover {
    background-color: var(--page-withdrawal-guide-primary-color);
    color: var(--page-withdrawal-guide-text-color-light);
}

.page-withdrawal-guide__section {
    padding: 60px 0;
}

.page-withdrawal-guide__section--alt-bg {
    background-color: var(--page-withdrawal-guide-bg-light);
}

.page-withdrawal-guide__section-title {
    font-size: 2.2em;
    color: var(--page-withdrawal-guide-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-withdrawal-guide__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--page-withdrawal-guide-secondary-color);
    margin: 10px auto 0 auto;
}

.page-withdrawal-guide__description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
}

.page-withdrawal-guide__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-withdrawal-guide__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-withdrawal-guide__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-withdrawal-guide__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-withdrawal-guide__feature-title {
    font-size: 1.5em;
    color: var(--page-withdrawal-guide-primary-color);
    margin-bottom: 15px;
}

.page-withdrawal-guide__feature-description {
    font-size: 1em;
    color: var(--page-withdrawal-guide-text-color);
}

.page-withdrawal-guide__step-by-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.page-withdrawal-guide__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-withdrawal-guide__step-number {
    background-color: var(--page-withdrawal-guide-primary-color);
    color: var(--page-withdrawal-guide-text-color-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.page-withdrawal-guide__step-title {
    font-size: 1.8em;
    color: var(--page-withdrawal-guide-primary-color);
    margin-bottom: 15px;
}

.page-withdrawal-guide__step-description {
    font-size: 1.05em;
    color: var(--page-withdrawal-guide-text-color);
    margin-bottom: 25px;
}

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

.page-withdrawal-guide__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.page-withdrawal-guide__info-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-withdrawal-guide__info-title {
    font-size: 1.6em;
    color: var(--page-withdrawal-guide-primary-color);
    margin-bottom: 15px;
}

.page-withdrawal-guide__info-text {
    font-size: 1em;
    color: var(--page-withdrawal-guide-text-color);
    margin-bottom: 20px;
}

.page-withdrawal-guide__info-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-withdrawal-guide__faq {
    display: grid;
    gap: 20px;
}

.page-withdrawal-guide__faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-withdrawal-guide__faq-question {
    font-size: 1.3em;
    color: var(--page-withdrawal-guide-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.page-withdrawal-guide__faq-question::before {
    content: '+';
    font-size: 1.5em;
    margin-right: 10px;
    color: var(--page-withdrawal-guide-secondary-color);
    transition: transform 0.3s ease;
}

.page-withdrawal-guide__faq-question.active::before {
    content: '-';
    transform: rotate(180deg);
}

.page-withdrawal-guide__faq-answer {
    font-size: 1em;
    color: var(--page-withdrawal-guide-text-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-left: 30px;
}

.page-withdrawal-guide__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    padding-top: 10px;
}

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

.page-withdrawal-guide__tips-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-withdrawal-guide__tips-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid var(--page-withdrawal-guide-secondary-color);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: var(--page-withdrawal-guide-text-color);
}

.page-withdrawal-guide__tips-list li strong {
    color: var(--page-withdrawal-guide-primary-color);
}

.page-withdrawal-guide__cta-box {
    background-color: var(--page-withdrawal-guide-primary-color);
    color: var(--page-withdrawal-guide-text-color-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 900px;
    margin: 50px auto 0 auto;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.page-withdrawal-guide__cta-box p {
    font-size: 1.3em;
    margin-bottom: 25px;
}

.page-withdrawal-guide__section--details {
    background-color: var(--page-withdrawal-guide-bg-light);
}

.page-withdrawal-guide__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-withdrawal-guide__detail-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-withdrawal-guide__detail-title {
    font-size: 1.4em;
    color: var(--page-withdrawal-guide-primary-color);
    margin-bottom: 15px;
}

.page-withdrawal-guide__detail-title a {
    color: var(--page-withdrawal-guide-primary-color);
    text-decoration: none;
}

.page-withdrawal-guide__detail-title a:hover {
    text-decoration: underline;
}

.page-withdrawal-guide__detail-description {
    font-size: 0.95em;
    color: var(--page-withdrawal-guide-text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-withdrawal-guide__title {
        font-size: 2.2em;
    }
    .page-withdrawal-guide__subtitle {
        font-size: 1em;
    }
    .page-withdrawal-guide__section-title {
        font-size: 1.8em;
    }
    .page-withdrawal-guide__features, .page-withdrawal-guide__info-grid, .page-withdrawal-guide__detail-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-withdrawal-guide__hero {
        padding: 60px 0;
    }
    .page-withdrawal-guide__title {
        font-size: 2em;
    }
    .page-withdrawal-guide__section {
        padding: 40px 0;
    }
    .page-withdrawal-guide__description {
        margin-bottom: 30px;
    }
    .page-withdrawal-guide__step-item {
        padding: 20px;
    }
    .page-withdrawal-guide__step-title {
        font-size: 1.5em;
    }
}

@media (max-width: 576px) {
    .page-withdrawal-guide__title {
        font-size: 1.8em;
    }
    .page-withdrawal-guide__subtitle {
        font-size: 0.9em;
    }
    .page-withdrawal-guide__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-withdrawal-guide__section-title {
        font-size: 1.6em;
    }
    .page-withdrawal-guide__feature-title, .page-withdrawal-guide__info-title {
        font-size: 1.3em;
    }
    .page-withdrawal-guide__faq-question {
        font-size: 1.1em;
    }
    .page-withdrawal-guide__cta-box p {
        font-size: 1.1em;
    }
    .page-withdrawal-guide__tips-list li {
        font-size: 1em;
    }
}