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

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

.page-resources-nh88-deposit-withdrawal-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-nh88-deposit-withdrawal-guide__container--center {
    text-align: center;
}

/* Hero Section */
.page-resources-nh88-deposit-withdrawal-guide__hero {
    background: linear-gradient(135deg, #003366 0%, #FFCC00 100%); /* Primary and auxiliary colors */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-resources-nh88-deposit-withdrawal-guide__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 204, 0, 0.2);
    border-radius: 50%;
    animation: page-resources-nh88-deposit-withdrawal-guide__pulse 5s infinite ease-in-out reverse;
}

@keyframes page-resources-nh88-deposit-withdrawal-guide__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.page-resources-nh88-deposit-withdrawal-guide__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff; /* Ensure high contrast */
}

.page-resources-nh88-deposit-withdrawal-guide__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #eee; /* Slightly lighter for subtitle, still high contrast */
}

/* Sections */
.page-resources-nh88-deposit-withdrawal-guide__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-resources-nh88-deposit-withdrawal-guide__section--alt {
    background-color: #f0f4f7; /* Lighter background for contrast */
}

.page-resources-nh88-deposit-withdrawal-guide__section-title {
    font-size: 2.2em;
    color: #003366; /* Primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-nh88-deposit-withdrawal-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Auxiliary color for accent */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-nh88-deposit-withdrawal-guide__subsection-title {
    font-size: 1.6em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFCC00;
    padding-left: 15px;
}

.page-resources-nh88-deposit-withdrawal-guide__paragraph {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 15px;
}

/* Lists */
.page-resources-nh88-deposit-withdrawal-guide__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-resources-nh88-deposit-withdrawal-guide__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #555;
}

.page-resources-nh88-deposit-withdrawal-guide__list li::before {
    content: '\2713'; /* Checkmark */
    color: #FFCC00; /* Auxiliary color */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

.page-resources-nh88-deposit-withdrawal-guide__list--styled li::before {
    content: '\2022'; /* Bullet point */
    color: #003366;
}

.page-resources-nh88-deposit-withdrawal-guide__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-bottom: 30px;
}

.page-resources-nh88-deposit-withdrawal-guide__step-list li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
    background-color: #f9f9f9;
    border-left: 3px solid #FFCC00;
    padding: 20px 20px 20px 60px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-resources-nh88-deposit-withdrawal-guide__step-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #003366; /* Primary color */
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 0 0 5px rgba(0, 51, 102, 0.2);
}

.page-resources-nh88-deposit-withdrawal-guide__step-list li h4 {
    color: #003366;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-nh88-deposit-withdrawal-guide__step-list li p {
    color: #555;
    font-size: 1em;
}

/* Images */
.page-resources-nh88-deposit-withdrawal-guide__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-resources-nh88-deposit-withdrawal-guide__image--small {
    max-width: 600px;
}

/* Buttons */
.page-resources-nh88-deposit-withdrawal-guide__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    cursor: pointer;
    border: none;
}

.page-resources-nh88-deposit-withdrawal-guide__button--primary {
    background-color: #FFCC00; /* Auxiliary color */
    color: #003366; /* Primary color for text, high contrast */
}

.page-resources-nh88-deposit-withdrawal-guide__button--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-resources-nh88-deposit-withdrawal-guide__button--secondary {
    background-color: #003366; /* Primary color */
    color: #FFCC00; /* Auxiliary color for text, high contrast */
    border: 2px solid #FFCC00;
}

.page-resources-nh88-deposit-withdrawal-guide__button--secondary:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

.page-resources-nh88-deposit-withdrawal-guide__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Links */
.page-resources-nh88-deposit-withdrawal-guide__link {
    color: #003366; /* Primary color for links */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-nh88-deposit-withdrawal-guide__link:hover {
    color: #FFCC00; /* Auxiliary color on hover */
}

/* FAQ/Accordion */
.page-resources-nh88-deposit-withdrawal-guide__accordion {
    margin-top: 30px;
}

.page-resources-nh88-deposit-withdrawal-guide__accordion-item {
    background-color: #fff;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.page-resources-nh88-deposit-withdrawal-guide__accordion-header {
    background-color: #003366; /* Primary color */
    color: #fff; /* White text for contrast */
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-resources-nh88-deposit-withdrawal-guide__accordion-header:hover {
    background-color: #002244;
}

.page-resources-nh88-deposit-withdrawal-guide__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-resources-nh88-deposit-withdrawal-guide__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-nh88-deposit-withdrawal-guide__accordion-content {
    padding: 0 25px;
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-resources-nh88-deposit-withdrawal-guide__accordion-content.active {
    max-height: 500px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-resources-nh88-deposit-withdrawal-guide__faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-resources-nh88-deposit-withdrawal-guide__faq-question {
    color: #003366;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-resources-nh88-deposit-withdrawal-guide__faq-answer {
    color: #555;
    font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-nh88-deposit-withdrawal-guide__hero-title {
        font-size: 2.2em;
    }
    .page-resources-nh88-deposit-withdrawal-guide__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-nh88-deposit-withdrawal-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-nh88-deposit-withdrawal-guide__subsection-title {
        font-size: 1.4em;
    }
    .page-resources-nh88-deposit-withdrawal-guide__button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
    }
    .page-resources-nh88-deposit-withdrawal-guide__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-resources-nh88-deposit-withdrawal-guide__step-list li {
        padding-left: 50px;
    }
    .page-resources-nh88-deposit-withdrawal-guide__step-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
    .page-resources-nh88-deposit-withdrawal-guide__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-resources-nh88-deposit-withdrawal-guide__accordion-content {
        padding: 15px 20px;
    }
    .page-resources-nh88-deposit-withdrawal-guide__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-resources-nh88-deposit-withdrawal-guide__hero-title {
        font-size: 1.8em;
    }
    .page-resources-nh88-deposit-withdrawal-guide__hero-subtitle {
        font-size: 0.9em;
    }
    .page-resources-nh88-deposit-withdrawal-guide__section-title {
        font-size: 1.5em;
    }
    .page-resources-nh88-deposit-withdrawal-guide__subsection-title {
        font-size: 1.2em;
    }
    .page-resources-nh88-deposit-withdrawal-guide__button {
        width: 100%;
        display: block;
        margin: 10px 0;
    }
    .page-resources-nh88-deposit-withdrawal-guide__step-list li {
        padding-left: 45px;
    }
    .page-resources-nh88-deposit-withdrawal-guide__step-list li::before {
        width: 30px;
        height: 30px;
        font-size: 0.9em;
    }
}