/* style/resources-safe-deposits-withdrawals.css */

/* Base styles for the page content */
.page-resources-safe-deposits-withdrawals {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Main content background is transparent, letting body background show */
}

/* Section common styles */
.page-resources-safe-deposits-withdrawals__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-safe-deposits-withdrawals__subsection-title {
    font-size: 1.8em;
    color: #26A9E0; /* Brand color for subtitles */
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-safe-deposits-withdrawals__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0; /* Slightly off-white for body text */
}

.page-resources-safe-deposits-withdrawals__highlight-text {
    color: #26A9E0; /* Highlight important keywords */
    font-weight: bold;
}

.page-resources-safe-deposits-withdrawals__text-link {
    color: #26A9E0; /* Brand color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-resources-safe-deposits-withdrawals__text-link:hover {
    text-decoration: underline;
}

.page-resources-safe-deposits-withdrawals__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-resources-safe-deposits-withdrawals__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    min-height: 600px;
    overflow: hidden;
    background-color: #0d0d0d; /* Slightly lighter than body for hero */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-resources-safe-deposits-withdrawals__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-resources-safe-deposits-withdrawals__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Make image subtle */
    filter: none; /* Ensure no CSS filter changes image color */
}

.page-resources-safe-deposits-withdrawals__hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 800px;
}

.page-resources-safe-deposits-withdrawals__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-safe-deposits-withdrawals__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-resources-safe-deposits-withdrawals__hero-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Buttons */
.page-resources-safe-deposits-withdrawals__btn-primary {
    background-color: #26A9E0; /* Brand primary color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-resources-safe-deposits-withdrawals__btn-primary:hover {
    background-color: #1a8cc4;
    transform: translateY(-2px);
}

.page-resources-safe-deposits-withdrawals__cta-button {
    margin-top: 30px;
}

/* Sections */
.page-resources-safe-deposits-withdrawals__introduction-section,
.page-resources-safe-deposits-withdrawals__guide-section,
.page-resources-safe-deposits-withdrawals__methods-section,
.page-resources-safe-deposits-withdrawals__security-section,
.page-resources-safe-deposits-withdrawals__tips-section,
.page-resources-safe-deposits-withdrawals__faq-section,
.page-resources-safe-deposits-withdrawals__cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-resources-safe-deposits-withdrawals__light-bg {
    background-color: #1a1a1a; /* Dark gray for contrast, lighter than body */
    color: #ffffff;
}

.page-resources-safe-deposits-withdrawals__dark-bg {
    background-color: #0d0d0d; /* Slightly darker gray for contrast */
    color: #ffffff;
}

/* Content Images */
.page-resources-safe-deposits-withdrawals__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    filter: none; /* Ensure no CSS filter changes image color */
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

/* Lists */
.page-resources-safe-deposits-withdrawals__numbered-list,
.page-resources-safe-deposits-withdrawals__bullet-list {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding-left: 20px;
    color: #f0f0f0;
}

.page-resources-safe-deposits-withdrawals__numbered-list li,
.page-resources-safe-deposits-withdrawals__bullet-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-resources-safe-deposits-withdrawals__bullet-list {
    list-style-type: disc;
}

/* Method Cards */
.page-resources-safe-deposits-withdrawals__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-resources-safe-deposits-withdrawals__method-card {
    background-color: #1a1a1a; /* Card background, lighter than dark-bg */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-safe-deposits-withdrawals__card-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-safe-deposits-withdrawals__card-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* FAQ Section */
.page-resources-safe-deposits-withdrawals__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-resources-safe-deposits-withdrawals__faq-item {
    background-color: #1a1a1a; /* FAQ item background */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-safe-deposits-withdrawals__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #26A9E0; /* Question background */
    color: #ffffff;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-resources-safe-deposits-withdrawals__faq-question:hover {
    background-color: #1a8cc4;
}

.page-resources-safe-deposits-withdrawals__faq-title {
    font-size: 1.2em;
    margin: 0;
    color: #ffffff;
}

.page-resources-safe-deposits-withdrawals__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-safe-deposits-withdrawals__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #0d0d0d; /* Answer background */
    color: #f0f0f0;
}

.page-resources-safe-deposits-withdrawals__faq-item.active .page-resources-safe-deposits-withdrawals__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px 25px;
}

.page-resources-safe-deposits-withdrawals__faq-item.active .page-resources-safe-deposits-withdrawals__faq-question {
    background-color: #1a8cc4;
}

.page-resources-safe-deposits-withdrawals__faq-item.active .page-resources-safe-deposits-withdrawals__faq-toggle {
    transform: rotate(45deg); /* Change + to X or rotate */
}

.page-resources-safe-deposits-withdrawals__faq-answer p {
    margin: 0;
    font-size: 1.05em;
    color: #f0f0f0;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-safe-deposits-withdrawals__hero-title {
        font-size: 3em;
    }
    .page-resources-safe-deposits-withdrawals__hero-description {
        font-size: 1.1em;
    }
    .page-resources-safe-deposits-withdrawals__section-title {
        font-size: 2em;
    }
    .page-resources-safe-deposits-withdrawals__subsection-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-safe-deposits-withdrawals__hero-section {
        padding: 80px 15px;
        min-height: 500px;
    }
    .page-resources-safe-deposits-withdrawals__hero-title {
        font-size: 2.2em;
    }
    .page-resources-safe-deposits-withdrawals__hero-description {
        font-size: 1em;
    }
    .page-resources-safe-deposits-withdrawals__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-safe-deposits-withdrawals__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-safe-deposits-withdrawals__subsection-title {
        font-size: 1.4em;
    }
    .page-resources-safe-deposits-withdrawals__text-block,
    .page-resources-safe-deposits-withdrawals__numbered-list li,
    .page-resources-safe-deposits-withdrawals__bullet-list li,
    .page-resources-safe-deposits-withdrawals__card-text,
    .page-resources-safe-deposits-withdrawals__faq-answer p {
        font-size: 1em;
    }

    .page-resources-safe-deposits-withdrawals__introduction-section,
    .page-resources-safe-deposits-withdrawals__guide-section,
    .page-resources-safe-deposits-withdrawals__methods-section,
    .page-resources-safe-deposits-withdrawals__security-section,
    .page-resources-safe-deposits-withdrawals__tips-section,
    .page-resources-safe-deposits-withdrawals__faq-section,
    .page-resources-safe-deposits-withdrawals__cta-section {
        padding: 50px 0;
    }
    .page-resources-safe-deposits-withdrawals__container {
        padding: 0 15px;
    }

    /* Images responsiveness */
    .page-resources-safe-deposits-withdrawals img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Video responsiveness (if any) */
    .page-resources-safe-deposits-withdrawals video,
    .page-resources-safe-deposits-withdrawals__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
}