/* style/resources-withdrawal-guide.css */
:root {
    --primary-color: #003366;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #f8f8f8;
    --bg-light: #ffffff;
    --bg-dark: #0a192f;
    --border-color: #e0e0e0;
}

.page-resources-withdrawal-guide {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f4f7f6;
}

.page-resources-withdrawal-guide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-withdrawal-guide-section {
    padding: 60px 0;
    margin-bottom: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-withdrawal-guide-section:nth-of-type(even) {
    background-color: #eef2f1;
}

.page-resources-withdrawal-guide h1,
.page-resources-withdrawal-guide h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.page-resources-withdrawal-guide h1 {
    font-size: 2.8em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-resources-withdrawal-guide h2 {
    font-size: 2.2em;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-withdrawal-guide h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-resources-withdrawal-guide p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.page-resources-withdrawal-guide a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-withdrawal-guide a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-resources-withdrawal-guide-cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-withdrawal-guide-cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-resources-withdrawal-guide-secondary-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-left: 20px;
}

.page-resources-withdrawal-guide-secondary-button:hover {
    background-color: #004d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Hero Section */
.page-resources-withdrawal-guide-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d99 100%);
    color: var(--text-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-resources-withdrawal-guide-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-withdrawal-guide-hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-resources-withdrawal-guide-hero-content h1 {
    color: var(--secondary-color);
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-resources-withdrawal-guide-hero-content p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
    opacity: 0.9;
}

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

.page-resources-withdrawal-guide-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-withdrawal-guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-withdrawal-guide-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 100%;
}

.page-resources-withdrawal-guide-card h3 {
    font-size: 1.4em;
    margin-top: 0;
    color: var(--primary-color);
}

.page-resources-withdrawal-guide-card p {
    font-size: 1em;
    color: #555;
}

/* Step List */
.page-resources-withdrawal-guide-step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-resources-withdrawal-guide-step-list li {
    background-color: var(--bg-light);
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    position: relative;
    padding-left: 70px;
}

.page-resources-withdrawal-guide-step-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-withdrawal-guide-step-list li h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: var(--primary-color);
}

.page-resources-withdrawal-guide-step-list li ul {
    margin-top: 10px;
    margin-left: 20px;
    list-style-type: disc;
    color: #555;
}

.page-resources-withdrawal-guide-step-list li ul li {
    background-color: transparent;
    box-shadow: none;
    padding: 5px 0;
    margin-bottom: 5px;
    padding-left: 0;
}

.page-resources-withdrawal-guide-step-list li ul li::before {
    content: none;
}

/* Methods Section */
.page-resources-withdrawal-guide-method-item {
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-withdrawal-guide-method-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-withdrawal-guide-method-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 100%;
}

/* Info Blocks */
.page-resources-withdrawal-guide-info-block {
    background-color: #f0f8ff;
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-resources-withdrawal-guide-info-block h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.4em;
}

/* Issue List */
.page-resources-withdrawal-guide-issue-list {
    margin-top: 30px;
}

.page-resources-withdrawal-guide-issue-item {
    background-color: #fff9f9;
    border: 1px solid #ffebeb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-withdrawal-guide-issue-item h3 {
    color: #cc3300;
    margin-top: 0;
    font-size: 1.4em;
}

.page-resources-withdrawal-guide-issue-item strong {
    color: var(--primary-color);
}

/* Tip List */
.page-resources-withdrawal-guide-tip-list {
    list-style: none;
    padding: 0;
}

.page-resources-withdrawal-guide-tip-list li {
    display: flex;
    align-items: flex-start;
    background-color: #e6f7ff;
    border-left: 5px solid var(--secondary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-withdrawal-guide-tip-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 15px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    padding: 5px;
}

.page-resources-withdrawal-guide-tip-list li span {
    font-size: 1.1em;
    color: #333;
}

.page-resources-withdrawal-guide-tip-list li strong {
    color: var(--primary-color);
}

/* Security Features */
.page-resources-withdrawal-guide-security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-withdrawal-guide-security-item {
    background-color: #f7fff7;
    border: 1px solid #e0ffe0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.page-resources-withdrawal-guide-security-item h3 {
    color: #008000;
    margin-top: 0;
    font-size: 1.4em;
}

/* FAQ Section */
.page-resources-withdrawal-guide-faq .faq-list {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    color: #555;
    font-size: 1.05em;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 15px 25px 25px 25px;
    background: #f9f9f9;
}

.faq-item.active .faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-resources-withdrawal-guide-conclusion {
    text-align: center;
    background: linear-gradient(135deg, #eef2f1, #dce4e3);
    padding-bottom: 80px;
}

.page-resources-withdrawal-guide-conclusion h2 {
    color: var(--primary-color);
}

.page-resources-withdrawal-guide-conclusion p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15em;
    color: #444;
}

.page-resources-withdrawal-guide-cta-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Utilities */
.page-resources-withdrawal-guide-mt-40 {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-withdrawal-guide-hero-content h1 {
        font-size: 3em;
    }
    .page-resources-withdrawal-guide h1 {
        font-size: 2.5em;
    }
    .page-resources-withdrawal-guide h2 {
        font-size: 2em;
    }
    .page-resources-withdrawal-guide h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-resources-withdrawal-guide-section {
        padding: 40px 0;
    }
    .page-resources-withdrawal-guide-hero {
        padding: 60px 0;
    }
    .page-resources-withdrawal-guide-hero-content h1 {
        font-size: 2.5em;
    }
    .page-resources-withdrawal-guide-hero-content p {
        font-size: 1.1em;
    }
    .page-resources-withdrawal-guide h1 {
        font-size: 2em;
    }
    .page-resources-withdrawal-guide h2 {
        font-size: 1.8em;
    }
    .page-resources-withdrawal-guide h3 {
        font-size: 1.3em;
    }
    .page-resources-withdrawal-guide-card,
    .page-resources-withdrawal-guide-method-item,
    .page-resources-withdrawal-guide-security-item {
        padding: 20px;
    }
    .page-resources-withdrawal-guide-step-list li {
        padding-left: 60px;
    }
    .page-resources-withdrawal-guide-step-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
        left: 15px;
    }
    .page-resources-withdrawal-guide-tip-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-resources-withdrawal-guide-tip-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px 20px 20px;
    }
    .page-resources-withdrawal-guide-cta-bottom {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-withdrawal-guide-secondary-button {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-resources-withdrawal-guide-hero-content h1 {
        font-size: 2em;
    }
    .page-resources-withdrawal-guide h1 {
        font-size: 1.8em;
    }
    .page-resources-withdrawal-guide h2 {
        font-size: 1.6em;
    }
    .page-resources-withdrawal-guide h3 {
        font-size: 1.2em;
    }
    .page-resources-withdrawal-guide p {
        font-size: 1em;
    }
    .page-resources-withdrawal-guide-cta-button,
    .page-resources-withdrawal-guide-secondary-button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
    }
    .page-resources-withdrawal-guide-container {
        padding: 15px;
    }
    .page-resources-withdrawal-guide-grid {
        gap: 20px;
    }
}