/* style/resources-vip79-deposit-withdrawal.css */

/* Base styles for the page */
.page-resources-vip79-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.page-resources-vip79-deposit-withdrawal__container--centered {
    text-align: center;
}

/* Hero Section */
.page-resources-vip79-deposit-withdrawal__hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-vip79-deposit-withdrawal__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float1 10s infinite ease-in-out;
}

.page-resources-vip79-deposit-withdrawal__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float2 12s infinite ease-in-out;
}

@keyframes float1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes float2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
    100% { transform: translate(0, 0); }
}

.page-resources-vip79-deposit-withdrawal__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-resources-vip79-deposit-withdrawal__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Buttons */
.page-resources-vip79-deposit-withdrawal__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    font-size: 1em;
}

.page-resources-vip79-deposit-withdrawal__btn--primary {
    background-color: #ff8400; /* Complementary color for emphasis */
    color: #ffffff;
    border: 2px solid #ff8400;
}

.page-resources-vip79-deposit-withdrawal__btn--primary:hover {
    background-color: #e67500;
    border-color: #e67500;
    transform: translateY(-2px);
}

.page-resources-vip79-deposit-withdrawal__btn--secondary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-resources-vip79-deposit-withdrawal__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-resources-vip79-deposit-withdrawal__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
}

/* Sections */
.page-resources-vip79-deposit-withdrawal__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-resources-vip79-deposit-withdrawal__section:last-of-type {
    border-bottom: none;
}

.page-resources-vip79-deposit-withdrawal__section--overview {
    background-color: #ffffff;
}

.page-resources-vip79-deposit-withdrawal__section--deposit {
    background-color: #f0f8ff; /* Light blue variation */
}

.page-resources-vip79-deposit-withdrawal__section--withdrawal {
    background-color: #f0fff0; /* Light green variation */
}

.page-resources-vip79-deposit-withdrawal__section--limits {
    background-color: #ffffff;
}

.page-resources-vip79-deposit-withdrawal__section--faq {
    background-color: #f0f8ff;
}

.page-resources-vip79-deposit-withdrawal__section--cta {
    background-color: #007bff;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-resources-vip79-deposit-withdrawal__heading {
    font-size: 2.2em;
    color: #0056b3; /* Darker blue for contrast */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-resources-vip79-deposit-withdrawal__section--cta .page-resources-vip79-deposit-withdrawal__heading {
    color: #ffffff;
}

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

.page-resources-vip79-deposit-withdrawal__section--cta .page-resources-vip79-deposit-withdrawal__heading::after {
    background-color: #ff8400;
}

.page-resources-vip79-deposit-withdrawal__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

/* Grid layout for cards */
.page-resources-vip79-deposit-withdrawal__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-vip79-deposit-withdrawal__card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-vip79-deposit-withdrawal__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-vip79-deposit-withdrawal__card-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-resources-vip79-deposit-withdrawal__card p {
    margin-bottom: 10px;
    color: #555;
}

.page-resources-vip79-deposit-withdrawal__card ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.page-resources-vip79-deposit-withdrawal__card ol li {
    margin-bottom: 8px;
}

.page-resources-vip79-deposit-withdrawal__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 20px;
}

.page-resources-vip79-deposit-withdrawal__note {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    border-radius: 5px;
    padding: 15px;
    margin-top: 30px;
    font-size: 0.95em;
}

/* Info Grid for Limits & Times */
.page-resources-vip79-deposit-withdrawal__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-resources-vip79-deposit-withdrawal__info-card {
    background-color: #ffffff;
    border-left: 5px solid #28a745;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 25px;
}

.page-resources-vip79-deposit-withdrawal__info-card-title {
    font-size: 1.3em;
    color: #28a745;
    margin-bottom: 10px;
}

.page-resources-vip79-deposit-withdrawal__info-card p {
    margin-bottom: 5px;
    color: #555;
}

/* FAQ Section */
.page-resources-vip79-deposit-withdrawal__faq-list {
    margin-top: 40px;
}

.page-resources-vip79-deposit-withdrawal__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-vip79-deposit-withdrawal__faq-question {
    font-size: 1.2em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-resources-vip79-deposit-withdrawal__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #28a745;
    transition: transform 0.3s ease;
}

.page-resources-vip79-deposit-withdrawal__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-resources-vip79-deposit-withdrawal__faq-answer {
    color: #666;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.page-resources-vip79-deposit-withdrawal__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    margin-top: 10px;
}

/* Images */
.page-resources-vip79-deposit-withdrawal__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-vip79-deposit-withdrawal__image--full-width {
    width: 100%;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-vip79-deposit-withdrawal__title {
        font-size: 2em;
    }
    .page-resources-vip79-deposit-withdrawal__subtitle {
        font-size: 1em;
    }
    .page-resources-vip79-deposit-withdrawal__heading {
        font-size: 1.8em;
    }
    .page-resources-vip79-deposit-withdrawal__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-resources-vip79-deposit-withdrawal__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-vip79-deposit-withdrawal__grid,
    .page-resources-vip79-deposit-withdrawal__info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-resources-vip79-deposit-withdrawal__title {
        font-size: 1.6em;
    }
    .page-resources-vip79-deposit-withdrawal__heading {
        font-size: 1.5em;
    }
    .page-resources-vip79-deposit-withdrawal__hero,
    .page-resources-vip79-deposit-withdrawal__section--cta {
        padding: 60px 0;
    }
}