/* style/vip-club-high-withdrawal-limits.css */

.page-vip-club-high-withdrawal-limits {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-vip-club-high-withdrawal-limits__hero-section {
    background: linear-gradient(135deg, #003366, #FFCC00);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-vip-club-high-withdrawal-limits__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff; /* Ensure high contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-vip-club-high-withdrawal-limits__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #ffffff; /* Ensure high contrast */
}

.page-vip-club-high-withdrawal-limits__cta-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-vip-club-high-withdrawal-limits__cta-button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-vip-club-high-withdrawal-limits__section {
    padding: 60px 0;
}

.page-vip-club-high-withdrawal-limits__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-vip-club-high-withdrawal-limits__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-vip-club-high-withdrawal-limits__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-vip-club-high-withdrawal-limits__intro-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
}

.page-vip-club-high-withdrawal-limits__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-vip-club-high-withdrawal-limits__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-vip-club-high-withdrawal-limits__text-content {
    flex: 1;
    font-size: 1.05em;
    color: #444;
}

.page-vip-club-high-withdrawal-limits__text-content p {
    margin-bottom: 15px;
}

.page-vip-club-high-withdrawal-limits__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-vip-club-high-withdrawal-limits__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-vip-club-high-withdrawal-limits__inline-cta {
    color: #003366;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-vip-club-high-withdrawal-limits__inline-cta:hover {
    color: #FFCC00;
}

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

.page-vip-club-high-withdrawal-limits__benefit-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #003366;
}

.page-vip-club-high-withdrawal-limits__benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-club-high-withdrawal-limits__card-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-vip-club-high-withdrawal-limits__card-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #FFCC00;
    margin: 10px auto 0;
    border-radius: 1.5px;
}

.page-vip-club-high-withdrawal-limits__card-title + p {
    color: #666;
}

.page-vip-club-high-withdrawal-limits__list {
    list-style: disc inside;
    margin-left: 20px;
    color: #444;
}

.page-vip-club-high-withdrawal-limits__list li {
    margin-bottom: 10px;
}

.page-vip-club-high-withdrawal-limits__process-list {
    list-style: none;
    counter-reset: process-step;
    padding: 0;
}

.page-vip-club-high-withdrawal-limits__process-list li {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    position: relative;
    padding-left: 70px;
    transition: transform 0.2s ease;
}

.page-vip-club-high-withdrawal-limits__process-list li:hover {
    transform: translateY(-5px);
}

.page-vip-club-high-withdrawal-limits__process-list li::before {
    counter-increment: process-step;
    content: counter(process-step);
    position: absolute;
    left: 25px;
    top: 25px;
    background-color: #003366;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-vip-club-high-withdrawal-limits__process-step-title {
    color: #003366;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-vip-club-high-withdrawal-limits__table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.page-vip-club-high-withdrawal-limits__comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.page-vip-club-high-withdrawal-limits__comparison-table th,
.page-vip-club-high-withdrawal-limits__comparison-table td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
    font-size: 1em;
}

.page-vip-club-high-withdrawal-limits__comparison-table th {
    background-color: #003366;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
}

.page-vip-club-high-withdrawal-limits__comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.page-vip-club-high-withdrawal-limits__comparison-table tbody tr:hover {
    background-color: #f0f8ff;
}

.page-vip-club-high-withdrawal-limits__sub-title {
    color: #003366;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-vip-club-high-withdrawal-limits__faqs {
    background-color: #eef4f8;
}

.page-vip-club-high-withdrawal-limits__faq-list {
    margin-top: 40px;
}

.page-vip-club-high-withdrawal-limits__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-vip-club-high-withdrawal-limits__faq-question {
    padding: 20px 25px;
    margin: 0;
    font-size: 1.2em;
    color: #003366;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.page-vip-club-high-withdrawal-limits__faq-question:hover {
    background-color: #e0eaf1;
}

.page-vip-club-high-withdrawal-limits__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

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

.page-vip-club-high-withdrawal-limits__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #555;
}

.page-vip-club-high-withdrawal-limits__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-vip-club-high-withdrawal-limits__faq-answer p {
    margin-bottom: 10px;
}

.page-vip-club-high-withdrawal-limits__cta-section {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-vip-club-high-withdrawal-limits__cta-section .page-vip-club-high-withdrawal-limits__section-title {
    color: #ffffff;
}

.page-vip-club-high-withdrawal-limits__cta-section .page-vip-club-high-withdrawal-limits__section-title::after {
    background-color: #FFCC00;
}

.page-vip-club-high-withdrawal-limits__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-vip-club-high-withdrawal-limits__cta-button--primary {
    background-color: #FFCC00;
    color: #003366;
}

.page-vip-club-high-withdrawal-limits__cta-button--primary:hover {
    background-color: #e6b800;
}

.page-vip-club-high-withdrawal-limits__cta-button--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-vip-club-high-withdrawal-limits__cta-button--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
}

.page-vip-club-high-withdrawal-limits__disclaimer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #cccccc;
}

.page-vip-club-high-withdrawal-limits__disclaimer .page-vip-club-high-withdrawal-limits__inline-cta {
    color: #FFCC00;
}

.page-vip-club-high-withdrawal-limits__disclaimer .page-vip-club-high-withdrawal-limits__inline-cta:hover {
    color: #fff;
}

.page-vip-club-high-withdrawal-limits__cta-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-vip-club-high-withdrawal-limits__hero-title {
        font-size: 2.8em;
    }

    .page-vip-club-high-withdrawal-limits__hero-subtitle {
        font-size: 1.1em;
    }

    .page-vip-club-high-withdrawal-limits__section-title {
        font-size: 2em;
    }

    .page-vip-club-high-withdrawal-limits__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-vip-club-high-withdrawal-limits__content-wrapper--reverse {
        flex-direction: column;
    }

    .page-vip-club-high-withdrawal-limits__image-wrapper {
        margin-top: 30px;
    }

    .page-vip-club-high-withdrawal-limits__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-vip-club-high-withdrawal-limits__process-list li {
        padding-left: 60px;
    }

    .page-vip-club-high-withdrawal-limits__process-list li::before {
        left: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }

    .page-vip-club-high-withdrawal-limits__process-step-title {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-vip-club-high-withdrawal-limits__hero-section {
        padding: 80px 0;
    }

    .page-vip-club-high-withdrawal-limits__hero-title {
        font-size: 2.2em;
    }

    .page-vip-club-high-withdrawal-limits__hero-subtitle {
        font-size: 1em;
    }

    .page-vip-club-high-withdrawal-limits__section {
        padding: 40px 0;
    }

    .page-vip-club-high-withdrawal-limits__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-vip-club-high-withdrawal-limits__intro-text {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-vip-club-high-withdrawal-limits__benefit-card {
        padding: 25px;
    }

    .page-vip-club-high-withdrawal-limits__card-title {
        font-size: 1.3em;
    }

    .page-vip-club-high-withdrawal-limits__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-vip-club-high-withdrawal-limits__faq-answer {
        padding: 15px 20px;
    }

    .page-vip-club-high-withdrawal-limits__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-vip-club-high-withdrawal-limits__cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-vip-club-high-withdrawal-limits__hero-section {
        padding: 60px 0;
    }

    .page-vip-club-high-withdrawal-limits__hero-title {
        font-size: 1.8em;
    }

    .page-vip-club-high-withdrawal-limits__hero-subtitle {
        font-size: 0.9em;
    }

    .page-vip-club-high-withdrawal-limits__section-title {
        font-size: 1.5em;
    }

    .page-vip-club-high-withdrawal-limits__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}