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

/* Base styles for the page content */
.page-deposit-withdrawal-guide-deposit {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #ffffff; /* Explicitly set for content area */
}

/* Hero Section */
.page-deposit-withdrawal-guide-deposit__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    color: #ffffff; /* Light text for dark overlay */
}

.page-deposit-withdrawal-guide-deposit__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-deposit-withdrawal-guide-deposit__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 169, 224, 0.7); /* Main color with transparency */
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-deposit-withdrawal-guide-deposit__hero-content {
    max-width: 900px;
    padding: 20px;
    z-index: 3;
}

.page-deposit-withdrawal-guide-deposit__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-deposit-withdrawal-guide-deposit__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
}

/* General Section Styles */
.page-deposit-withdrawal-guide-deposit__section {
    padding: 60px 20px;
    text-align: center;
}

.page-deposit-withdrawal-guide-deposit__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-deposit-withdrawal-guide-deposit__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #26A9E0; /* Brand color for titles */
}

.page-deposit-withdrawal-guide-deposit__text-block {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333333;
}

/* Background Colors for Contrast */
.page-deposit-withdrawal-guide-deposit__dark-bg {
    background-color: #26A9E0; /* Main brand color */
    color: #ffffff;
}

.page-deposit-withdrawal-guide-deposit__dark-bg .page-deposit-withdrawal-guide-deposit__section-title,
.page-deposit-withdrawal-guide-deposit__dark-bg .page-deposit-withdrawal-guide-deposit__text-block {
    color: #ffffff;
}

.page-deposit-withdrawal-guide-deposit__light-bg {
    background-color: #ffffff;
    color: #333333;
}

/* Buttons */
.page-deposit-withdrawal-guide-deposit__btn-primary,
.page-deposit-withdrawal-guide-deposit__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin: 10px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Ensure responsiveness */
}

.page-deposit-withdrawal-guide-deposit__btn-primary {
    background-color: #EA7C07; /* Login color for primary action */
    color: #ffffff;
    border: 2px solid transparent;
}

.page-deposit-withdrawal-guide-deposit__btn-primary:hover {
    background-color: #d16b06;
}

.page-deposit-withdrawal-guide-deposit__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-deposit-withdrawal-guide-deposit__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #1e87bb;
    border-color: #1e87bb;
}

.page-deposit-withdrawal-guide-deposit__cta-container {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Feature List */
.page-deposit-withdrawal-guide-deposit__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-deposit-withdrawal-guide-deposit__feature-item {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    color: #333333;
}

.page-deposit-withdrawal-guide-deposit__feature-item .page-deposit-withdrawal-guide-deposit__feature-title {
    color: #26A9E0;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-guide-deposit__feature-item .page-deposit-withdrawal-guide-deposit__feature-description {
    font-size: 1em;
    color: #555555;
}

/* Deposit Methods Grid */
.page-deposit-withdrawal-guide-deposit__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-deposit-withdrawal-guide-deposit__method-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    color: #333333;
    transition: transform 0.3s ease;
}

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

.page-deposit-withdrawal-guide-deposit__method-card .page-deposit-withdrawal-guide-deposit__card-title {
    color: #26A9E0;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-guide-deposit__method-card .page-deposit-withdrawal-guide-deposit__card-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-guide-deposit__method-card .page-deposit-withdrawal-guide-deposit__card-list {
    list-style: disc;
    margin-left: 20px;
    color: #555555;
}

/* Step-by-Step Guide */
.page-deposit-withdrawal-guide-deposit__step-by-step-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-deposit-withdrawal-guide-deposit__step-item {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    color: #333333;
    position: relative;
    padding-top: 70px; /* Space for step number */
}

.page-deposit-withdrawal-guide-deposit__step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    background-color: #26A9E0;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-deposit-withdrawal-guide-deposit__step-title {
    color: #26A9E0;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-guide-deposit__step-description {
    font-size: 1em;
    color: #555555;
}

.page-deposit-withdrawal-guide-deposit__inline-link {
    color: #26A9E0;
    text-decoration: underline;
}

.page-deposit-withdrawal-guide-deposit__inline-link:hover {
    color: #1e87bb;
}

/* Important Notes List */
.page-deposit-withdrawal-guide-deposit__notes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-deposit-withdrawal-guide-deposit__notes-item {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    color: #333333;
}

.page-deposit-withdrawal-guide-deposit__notes-item .page-deposit-withdrawal-guide-deposit__notes-title {
    color: #EA7C07; /* Using login color for emphasis */
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-guide-deposit__notes-item .page-deposit-withdrawal-guide-deposit__notes-description {
    font-size: 1em;
    color: #555555;
}

/* FAQ Section */
.page-deposit-withdrawal-guide-deposit__faq-list {
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-deposit-withdrawal-guide-deposit__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #f0f8ff; /* Light blue background for question */
    cursor: pointer;
    font-weight: bold;
    color: #26A9E0;
    border-bottom: 1px solid #e0e0e0;
}

.page-deposit-withdrawal-guide-deposit__faq-question:hover {
    background-color: #e6f2ff;
}

.page-deposit-withdrawal-guide-deposit__faq-title {
    margin: 0;
    font-size: 1.2em;
    color: #26A9E0;
}

.page-deposit-withdrawal-guide-deposit__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

.page-deposit-withdrawal-guide-deposit__faq-item.active .page-deposit-withdrawal-guide-deposit__faq-toggle {
    transform: rotate(45deg); /* Plus to X */
}

.page-deposit-withdrawal-guide-deposit__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
    color: #333333;
}

.page-deposit-withdrawal-guide-deposit__faq-item.active .page-deposit-withdrawal-guide-deposit__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

/* Image Styles */
.page-deposit-withdrawal-guide-deposit__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Min size for all images */
    min-height: 200px;
}

.page-deposit-withdrawal-guide-deposit__image-center {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Min size for all images */
    min-height: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-deposit-withdrawal-guide-deposit__hero-title {
        font-size: 2.8em;
    }
    .page-deposit-withdrawal-guide-deposit__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-deposit-withdrawal-guide-deposit {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-deposit-withdrawal-guide-deposit__hero-section {
        height: 450px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }

    .page-deposit-withdrawal-guide-deposit__hero-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-deposit-withdrawal-guide-deposit__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-deposit-withdrawal-guide-deposit__section {
        padding: 40px 15px;
    }

    .page-deposit-withdrawal-guide-deposit__container {
        padding: 0 10px;
    }

    .page-deposit-withdrawal-guide-deposit__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-deposit-withdrawal-guide-deposit__text-block {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-deposit-withdrawal-guide-deposit__feature-list,
    .page-deposit-withdrawal-guide-deposit__methods-grid,
    .page-deposit-withdrawal-guide-deposit__step-by-step-guide,
    .page-deposit-withdrawal-guide-deposit__notes-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-deposit-withdrawal-guide-deposit__feature-item,
    .page-deposit-withdrawal-guide-deposit__method-card,
    .page-deposit-withdrawal-guide-deposit__step-item,
    .page-deposit-withdrawal-guide-deposit__notes-item {
        padding: 20px;
        text-align: left;
    }

    .page-deposit-withdrawal-guide-deposit__step-item {
        padding-top: 60px;
    }

    .page-deposit-withdrawal-guide-deposit__step-number {
        top: 15px;
        left: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }

    .page-deposit-withdrawal-guide-deposit__feature-title,
    .page-deposit-withdrawal-guide-deposit__card-title,
    .page-deposit-withdrawal-guide-deposit__step-title,
    .page-deposit-withdrawal-guide-deposit__notes-title {
        font-size: 1.3em;
    }

    .page-deposit-withdrawal-guide-deposit__faq-question {
        padding: 15px 20px;
    }

    .page-deposit-withdrawal-guide-deposit__faq-title {
        font-size: 1.1em;
    }

    .page-deposit-withdrawal-guide-deposit__faq-answer {
        padding: 0 20px;
    }

    .page-deposit-withdrawal-guide-deposit__faq-item.active .page-deposit-withdrawal-guide-deposit__faq-answer {
        padding: 10px 20px;
    }

    /* Mobile Image Responsiveness */
    .page-deposit-withdrawal-guide-deposit img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-deposit-withdrawal-guide-deposit__section,
    .page-deposit-withdrawal-guide-deposit__card,
    .page-deposit-withdrawal-guide-deposit__container,
    .page-deposit-withdrawal-guide-deposit__cta-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }

    /* Mobile Button Responsiveness */
    .page-deposit-withdrawal-guide-deposit__btn-primary,
    .page-deposit-withdrawal-guide-deposit__btn-secondary,
    .page-deposit-withdrawal-guide-deposit a[class*="button"],
    .page-deposit-withdrawal-guide-deposit a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 5px 0 !important; /* Adjust margins for stacked buttons */
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-deposit-withdrawal-guide-deposit__cta-container {
      flex-direction: column; /* Stack buttons vertically */
      gap: 10px;
    }
}