/* style/withdrawal-guide-withdrawal-limits.css */

/* Base styles and variables */
.page-withdrawal-guide-withdrawal-limits {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A2A3A; /* Dark Blue */
    --text-color-light: #F0F0F0;
    --text-color-dark: #1A2A3A;
    --background-dark: #1A2A3A;
    --background-light: #F8F8F8;
    --accent-color: #0028ff; /* Complementary to primary for emphasis */
    --border-color: rgba(255, 255, 255, 0.1);

    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-light);
    background-color: var(--background-dark);
}

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

/* Hero Section */
.page-withdrawal-guide-withdrawal-limits__hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3a4a5a 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--text-color-light);
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--primary-color);
}

.page-withdrawal-guide-withdrawal-limits__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, transparent 70%);
    animation: floatEffect 10s infinite ease-in-out;
}

.page-withdrawal-guide-withdrawal-limits__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(26,42,58,0.3) 0%, transparent 70%);
    animation: floatEffect 12s infinite reverse ease-in-out;
}

@keyframes floatEffect {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
    50% { transform: translate(20px, 20px) rotate(15deg); opacity: 1; }
    100% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
}

.page-withdrawal-guide-withdrawal-limits__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-withdrawal-guide-withdrawal-limits__title .highlight {
    color: var(--text-color-light);
}

.page-withdrawal-guide-withdrawal-limits__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-light);
}

.page-withdrawal-guide-withdrawal-limits__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-withdrawal-guide-withdrawal-limits__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-withdrawal-guide-withdrawal-limits__button--primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-withdrawal-guide-withdrawal-limits__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

.page-withdrawal-guide-withdrawal-limits__button--secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.page-withdrawal-guide-withdrawal-limits__button--primary-large {
    padding: 18px 35px;
    font-size: 1.2em;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.page-withdrawal-guide-withdrawal-limits__button--primary-large:hover {
    background-color: #e6c200;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

.page-withdrawal-guide-withdrawal-limits__button--secondary-large {
    padding: 18px 35px;
    font-size: 1.2em;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-withdrawal-guide-withdrawal-limits__button--secondary-large:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-4px);
}

/* General Section Styling */
.page-withdrawal-guide-withdrawal-limits__section {
    padding: 80px 0;
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

.page-withdrawal-guide-withdrawal-limits__section--dark {
    background-color: #2a3a4a; /* Slightly lighter dark for contrast */
}

.page-withdrawal-guide-withdrawal-limits__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-withdrawal-guide-withdrawal-limits__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-withdrawal-guide-withdrawal-limits__section-title .highlight {
    color: var(--text-color-light);
}

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

.page-withdrawal-guide-withdrawal-limits__text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color-light);
}

.page-withdrawal-guide-withdrawal-limits__text .keyword {
    color: var(--primary-color);
    font-weight: bold;
}

.page-withdrawal-guide-withdrawal-limits__text--center {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-withdrawal-guide-withdrawal-limits__image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-withdrawal-guide-withdrawal-limits__image--right {
    margin-left: auto;
    margin-right: 0;
}

.page-withdrawal-guide-withdrawal-limits__image--left {
    margin-right: auto;
    margin-left: 0;
}

/* Grid Layout for Factors */
.page-withdrawal-guide-withdrawal-limits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-withdrawal-guide-withdrawal-limits__grid-item {
    background-color: rgba(255, 215, 0, 0.08);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-withdrawal-guide-withdrawal-limits__grid-item .page-withdrawal-guide-withdrawal-limits__sub-title {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-top: 0;
}

/* Info Cards for Min/Max Limits */
.page-withdrawal-guide-withdrawal-limits__info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-withdrawal-guide-withdrawal-limits__card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.page-withdrawal-guide-withdrawal-limits__card:hover {
    transform: translateY(-5px);
}

.page-withdrawal-guide-withdrawal-limits__card-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

/* List Styling */
.page-withdrawal-guide-withdrawal-limits__list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-withdrawal-guide-withdrawal-limits__list li {
    background-color: var(--background-dark);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--primary-color);
    transition: background-color 0.3s ease;
}

.page-withdrawal-guide-withdrawal-limits__list li:hover {
    background-color: #2a3a4a;
}

.page-withdrawal-guide-withdrawal-limits__list .page-withdrawal-guide-withdrawal-limits__sub-title {
    font-size: 1.7em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

/* FAQ Section */
.page-withdrawal-guide-withdrawal-limits__faq {
    margin-top: 40px;
}

.page-withdrawal-guide-withdrawal-limits__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-withdrawal-guide-withdrawal-limits__faq-question {
    font-size: 1.3em;
    color: var(--primary-color);
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 215, 0, 0.1);
    transition: background-color 0.3s ease;
}

.page-withdrawal-guide-withdrawal-limits__faq-question:hover {
    background-color: rgba(255, 215, 0, 0.2);
}

.page-withdrawal-guide-withdrawal-limits__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-withdrawal-guide-withdrawal-limits__faq-item.active .page-withdrawal-guide-withdrawal-limits__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-withdrawal-guide-withdrawal-limits__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: var(--background-dark);
}

.page-withdrawal-guide-withdrawal-limits__faq-item.active .page-withdrawal-guide-withdrawal-limits__faq-answer {
    max-height: 300px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.page-withdrawal-guide-withdrawal-limits__faq-answer .page-withdrawal-guide-withdrawal-limits__text {
    color: var(--text-color-light);
    margin-bottom: 0;
}

/* Final CTA Section */
.page-withdrawal-guide-withdrawal-limits__section--final-cta {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(45deg, var(--secondary-color), #3a4a5a);
    border-top: 5px solid var(--primary-color);
}

/* Content Wrapper for image and text alignment */
.page-withdrawal-guide-withdrawal-limits__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-withdrawal-guide-withdrawal-limits__content-wrapper .page-withdrawal-guide-withdrawal-limits__text-block {
    flex: 1;
    min-width: 300px;
}

.page-withdrawal-guide-withdrawal-limits__content-wrapper .page-withdrawal-guide-withdrawal-limits__image {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-withdrawal-guide-withdrawal-limits__title {
        font-size: 2.8em;
    }
    .page-withdrawal-guide-withdrawal-limits__section-title {
        font-size: 2.2em;
    }
    .page-withdrawal-guide-withdrawal-limits__sub-title {
        font-size: 1.5em;
    }
    .page-withdrawal-guide-withdrawal-limits__text {
        font-size: 1em;
    }
    .page-withdrawal-guide-withdrawal-limits__hero {
        padding: 80px 0;
    }
    .page-withdrawal-guide-withdrawal-limits__section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .page-withdrawal-guide-withdrawal-limits__title {
        font-size: 2.2em;
    }
    .page-withdrawal-guide-withdrawal-limits__subtitle {
        font-size: 1.2em;
    }
    .page-withdrawal-guide-withdrawal-limits__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-withdrawal-guide-withdrawal-limits__sub-title {
        font-size: 1.3em;
    }
    .page-withdrawal-guide-withdrawal-limits__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-withdrawal-guide-withdrawal-limits__button,
    .page-withdrawal-guide-withdrawal-limits__button--primary-large,
    .page-withdrawal-guide-withdrawal-limits__button--secondary-large {
        width: 80%;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-withdrawal-guide-withdrawal-limits__grid,
    .page-withdrawal-guide-withdrawal-limits__info-cards {
        grid-template-columns: 1fr;
    }
    .page-withdrawal-guide-withdrawal-limits__image--right,
    .page-withdrawal-guide-withdrawal-limits__image--left {
        margin-left: auto;
        margin-right: auto;
    }
    .page-withdrawal-guide-withdrawal-limits__content-wrapper {
        flex-direction: column;
    }
    .page-withdrawal-guide-withdrawal-limits__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-withdrawal-guide-withdrawal-limits__faq-answer {
        padding: 15px 20px;
    }
    .page-withdrawal-guide-withdrawal-limits__faq-item.active .page-withdrawal-guide-withdrawal-limits__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-withdrawal-guide-withdrawal-limits__title {
        font-size: 1.8em;
    }
    .page-withdrawal-guide-withdrawal-limits__subtitle {
        font-size: 1em;
    }
    .page-withdrawal-guide-withdrawal-limits__section-title {
        font-size: 1.6em;
    }
    .page-withdrawal-guide-withdrawal-limits__button,
    .page-withdrawal-guide-withdrawal-limits__button--primary-large,
    .page-withdrawal-guide-withdrawal-limits__button--secondary-large {
        width: 95%;
        font-size: 0.9em;
        padding: 10px 15px;
    }
    .page-withdrawal-guide-withdrawal-limits__hero {
        padding: 60px 0;
    }
    .page-withdrawal-guide-withdrawal-limits__section {
        padding: 40px 0;
    }
    .page-withdrawal-guide-withdrawal-limits__grid-item,
    .page-withdrawal-guide-withdrawal-limits__card,
    .page-withdrawal-guide-withdrawal-limits__list li {
        padding: 20px;
    }
    .page-withdrawal-guide-withdrawal-limits__faq-question {
        font-size: 1em;
    }
    .page-withdrawal-guide-withdrawal-limits__faq-answer .page-withdrawal-guide-withdrawal-limits__text {
        font-size: 0.95em;
    }
}