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

/* Base styles for the page content */
.page-resources-vin7777-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E5E5E5; /* Light grey for text on dark background */
    background-color: #1A202C; /* Main dark background */
}

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

/* Hero Section */
.page-resources-vin7777-deposit-withdrawal__hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background: linear-gradient(135deg, #1A202C 0%, #333d4d 100%); /* Dark gradient */
    padding: 80px 0;
    overflow: hidden;
    text-align: center;
}

.page-resources-vin7777-deposit-withdrawal__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    z-index: 0;
}

.page-resources-vin7777-deposit-withdrawal__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: #FFFFFF;
}

.page-resources-vin7777-deposit-withdrawal__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-vin7777-deposit-withdrawal__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #E5E5E5;
}

/* Section Styling */
.page-resources-vin7777-deposit-withdrawal__section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-resources-vin7777-deposit-withdrawal__section--bg-alt {
    background-color: #2D3748; /* Slightly lighter dark background */
}

.page-resources-vin7777-deposit-withdrawal__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-resources-vin7777-deposit-withdrawal__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}

.page-resources-vin7777-deposit-withdrawal__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 20px;
}

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

/* List Styles */
.page-resources-vin7777-deposit-withdrawal__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-resources-vin7777-deposit-withdrawal__list li {
    background-color: #2D3748;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    font-size: 1.1em;
    color: #E5E5E5;
    border-radius: 5px;
}

.page-resources-vin7777-deposit-withdrawal__list--bullet li {
    list-style: disc;
    margin-left: 20px;
    background-color: transparent;
    border-left: none;
    padding: 5px 0;
}

/* Steps Layout */
.page-resources-vin7777-deposit-withdrawal__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-resources-vin7777-deposit-withdrawal__step-item {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-vin7777-deposit-withdrawal__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-vin7777-deposit-withdrawal__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FFD700;
    color: #1A202C; /* Dark text on gold background */
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-vin7777-deposit-withdrawal__step-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-vin7777-deposit-withdrawal__step-item p {
    color: #E5E5E5;
    font-size: 1em;
}

/* Image Styling */
.page-resources-vin7777-deposit-withdrawal__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Call to Action Buttons */
.page-resources-vin7777-deposit-withdrawal__btn-primary,
.page-resources-vin7777-deposit-withdrawal__btn-secondary {
    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, color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    text-align: center;
}

.page-resources-vin7777-deposit-withdrawal__btn-primary {
    background-color: #FFD700; /* Gold background */
    color: #1A202C; /* Dark text on gold */
    border: 2px solid #FFD700;
}

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

.page-resources-vin7777-deposit-withdrawal__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-resources-vin7777-deposit-withdrawal__btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C; /* Dark text on gold */
    transform: translateY(-2px);
}

.page-resources-vin7777-deposit-withdrawal__inline-link {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-resources-vin7777-deposit-withdrawal__inline-link:hover {
    color: #e6c200;
}

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

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

.page-resources-vin7777-deposit-withdrawal__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

.page-resources-vin7777-deposit-withdrawal__faq-answer {
    font-size: 1em;
    color: #E5E5E5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-resources-vin7777-deposit-withdrawal__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 15px;
}

/* CTA Section */
.page-resources-vin7777-deposit-withdrawal__cta-section {
    background: linear-gradient(90deg, #1A202C, #2D3748);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-resources-vin7777-deposit-withdrawal__cta-content {
    max-width: 900px;
}

.page-resources-vin7777-deposit-withdrawal__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-resources-vin7777-deposit-withdrawal__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #E5E5E5;
}

.page-resources-vin7777-deposit-withdrawal__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-vin7777-deposit-withdrawal__title {
        font-size: 2.5em;
    }

    .page-resources-vin7777-deposit-withdrawal__subtitle {
        font-size: 1.2em;
    }

    .page-resources-vin7777-deposit-withdrawal__section-title {
        font-size: 2em;
    }

    .page-resources-vin7777-deposit-withdrawal__sub-title {
        font-size: 1.5em;
    }

    .page-resources-vin7777-deposit-withdrawal__steps {
        grid-template-columns: 1fr;
    }

    .page-resources-vin7777-deposit-withdrawal__cta-title {
        font-size: 2.2em;
    }

    .page-resources-vin7777-deposit-withdrawal__cta-description {
        font-size: 1.1em;
    }

    .page-resources-vin7777-deposit-withdrawal__btn-primary,
    .page-resources-vin7777-deposit-withdrawal__btn-secondary {
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .page-resources-vin7777-deposit-withdrawal__title {
        font-size: 2em;
    }

    .page-resources-vin7777-deposit-withdrawal__subtitle {
        font-size: 1em;
    }

    .page-resources-vin7777-deposit-withdrawal__hero {
        min-height: 400px;
        padding: 60px 0;
    }

    .page-resources-vin7777-deposit-withdrawal__section {
        padding: 40px 0;
    }

    .page-resources-vin7777-deposit-withdrawal__section-title {
        font-size: 1.8em;
    }

    .page-resources-vin7777-deposit-withdrawal__sub-title {
        font-size: 1.3em;
    }

    .page-resources-vin7777-deposit-withdrawal__list li {
        padding: 10px 15px;
        font-size: 0.95em;
    }

    .page-resources-vin7777-deposit-withdrawal__step-item {
        padding: 20px;
    }

    .page-resources-vin7777-deposit-withdrawal__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }

    .page-resources-vin7777-deposit-withdrawal__step-title {
        font-size: 1.3em;
    }

    .page-resources-vin7777-deposit-withdrawal__cta-title {
        font-size: 1.8em;
    }

    .page-resources-vin7777-deposit-withdrawal__cta-description {
        font-size: 1em;
    }

    .page-resources-vin7777-deposit-withdrawal__btn-primary,
    .page-resources-vin7777-deposit-withdrawal__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
    }
}