/* style/withdrawal-guide-fast-withdrawal-tips.css */

.page-withdrawal-guide-fast-withdrawal-tips {
    font-family: Arial, sans-serif;
    color: #E5E5E5; /* Light grey for general text on dark background */
    background-color: #1A2A3A; /* Auxiliary color as main background */
    line-height: 1.6;
}

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

.page-withdrawal-guide-fast-withdrawal-tips__hero-section {
    background: linear-gradient(135deg, #1A2A3A 0%, #3a4d5e 100%); /* Darker gradient for hero */
    color: #E5E5E5;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-withdrawal-guide-fast-withdrawal-tips__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-withdrawal-guide-fast-withdrawal-tips__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Main color for title */
    line-height: 1.2;
}

.page-withdrawal-guide-fast-withdrawal-tips__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #B3B3B3;
}

.page-withdrawal-guide-fast-withdrawal-tips__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-withdrawal-guide-fast-withdrawal-tips__btn--primary {
    background-color: #FFD700;
    color: #1A2A3A;
    border: 2px solid #FFD700;
}

.page-withdrawal-guide-fast-withdrawal-tips__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-withdrawal-guide-fast-withdrawal-tips__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-withdrawal-guide-fast-withdrawal-tips__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2A3A;
    transform: translateY(-2px);
}

.page-withdrawal-guide-fast-withdrawal-tips__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
}

.page-withdrawal-guide-fast-withdrawal-tips__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-withdrawal-guide-fast-withdrawal-tips__content-section {
    padding: 60px 0;
}

.page-withdrawal-guide-fast-withdrawal-tips__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    position: relative;
}

.page-withdrawal-guide-fast-withdrawal-tips__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-withdrawal-guide-fast-withdrawal-tips__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #B3B3B3;
    text-align: justify;
}

.page-withdrawal-guide-fast-withdrawal-tips__link-inline {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-withdrawal-guide-fast-withdrawal-tips__link-inline:hover {
    text-decoration: underline;
}

.page-withdrawal-guide-fast-withdrawal-tips__image-full-width {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-withdrawal-guide-fast-withdrawal-tips__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-withdrawal-guide-fast-withdrawal-tips__list-item {
    background-color: #2A3B4C; /* Slightly lighter dark background */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1.05em;
    color: #E5E5E5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-withdrawal-guide-fast-withdrawal-tips__list-item strong {
    color: #FFD700;
}

.page-withdrawal-guide-fast-withdrawal-tips__list--error .page-withdrawal-guide-fast-withdrawal-tips__list-item {
    background-color: #4C2A2A; /* Reddish dark for errors */
    border-left: 5px solid #FF4D4D; /* Red accent */
}

.page-withdrawal-guide-fast-withdrawal-tips__tip-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-withdrawal-guide-fast-withdrawal-tips__tip-card {
    background-color: #2A3B4C;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-withdrawal-guide-fast-withdrawal-tips__tip-card:hover {
    transform: translateY(-5px);
    background-color: #3A4D5E;
}

.page-withdrawal-guide-fast-withdrawal-tips__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-withdrawal-guide-fast-withdrawal-tips__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-withdrawal-guide-fast-withdrawal-tips__card-description {
    font-size: 1em;
    color: #B3B3B3;
}

.page-withdrawal-guide-fast-withdrawal-tips__faq-container {
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-withdrawal-guide-fast-withdrawal-tips__faq-item {
    background-color: #2A3B4C;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-withdrawal-guide-fast-withdrawal-tips__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-withdrawal-guide-fast-withdrawal-tips__faq-answer {
    font-size: 1em;
    color: #B3B3B3;
    line-height: 1.7;
}

.page-withdrawal-guide-fast-withdrawal-tips__cta-banner {
    background: linear-gradient(90deg, #FFD700, #e6c200);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: #1A2A3A; /* Dark text on bright background */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-withdrawal-guide-fast-withdrawal-tips__cta-text-content {
    max-width: 800px;
}

.page-withdrawal-guide-fast-withdrawal-tips__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #1A2A3A;
}

.page-withdrawal-guide-fast-withdrawal-tips__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #3A4D5E;
}

.page-withdrawal-guide-fast-withdrawal-tips__cta-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-withdrawal-guide-fast-withdrawal-tips .highlight {
    color: #FFFFFF; /* White for strong contrast on dark, or a darker shade of gold on light */
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-withdrawal-guide-fast-withdrawal-tips__hero-title {
        font-size: 2.8em;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__section-title {
        font-size: 2em;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__tip-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-withdrawal-guide-fast-withdrawal-tips__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-withdrawal-guide-fast-withdrawal-tips__hero-section {
        padding: 60px 20px;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__hero-title {
        font-size: 2.2em;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__hero-subtitle {
        font-size: 1.1em;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__content-section {
        padding: 40px 0;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__section-title {
        font-size: 1.8em;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__tip-card-grid {
        grid-template-columns: 1fr;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__cta-banner {
        padding: 40px 20px;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__cta-title {
        font-size: 1.8em;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__cta-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-withdrawal-guide-fast-withdrawal-tips__hero-title {
        font-size: 1.8em;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__hero-subtitle {
        font-size: 1em;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__section-title {
        font-size: 1.5em;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__paragraph,
    .page-withdrawal-guide-fast-withdrawal-tips__list-item,
    .page-withdrawal-guide-fast-withdrawal-tips__card-description,
    .page-withdrawal-guide-fast-withdrawal-tips__faq-answer {
        font-size: 0.95em;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__card-title,
    .page-withdrawal-guide-fast-withdrawal-tips__faq-question {
        font-size: 1.2em;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__cta-title {
        font-size: 1.6em;
    }
    .page-withdrawal-guide-fast-withdrawal-tips__cta-description {
        font-size: 1em;
    }
}