/* style/resources-pg66-withdrawal-tips.css */
.page-resources-pg66-withdrawal-tips {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* Hero Section */
.page-resources-pg66-withdrawal-tips__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #3a5c9f 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-pg66-withdrawal-tips__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: floatEffect 8s ease-in-out infinite alternate;
}

.page-resources-pg66-withdrawal-tips__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: floatEffect 10s ease-in-out infinite;
}

@keyframes floatEffect {
    0% { transform: translate(0, 0); opacity: 0.8; }
    50% { transform: translate(20px, 20px); opacity: 1; }
    100% { transform: translate(0, 0); opacity: 0.8; }
}

.page-resources-pg66-withdrawal-tips__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
}

.page-resources-pg66-withdrawal-tips__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* Buttons */
.page-resources-pg66-withdrawal-tips__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-resources-pg66-withdrawal-tips__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark blue */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-pg66-withdrawal-tips__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-pg66-withdrawal-tips__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-resources-pg66-withdrawal-tips__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-3px);
}

/* Content Section */
.page-resources-pg66-withdrawal-tips__content-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    color: #333;
}

.page-resources-pg66-withdrawal-tips__article {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.page-resources-pg66-withdrawal-tips__section-title {
    font-size: 2.2em;
    color: #0A2463; /* Dark blue */
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
    font-weight: 700;
}

.page-resources-pg66-withdrawal-tips__article h3 {
    font-size: 1.6em;
    color: #0A2463;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-pg66-withdrawal-tips__article p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-resources-pg66-withdrawal-tips__article a {
    color: #0A2463;
    text-decoration: underline;
    font-weight: bold;
}

.page-resources-pg66-withdrawal-tips__article a:hover {
    color: #FFD700;
}

.page-resources-pg66-withdrawal-tips__list,
.page-resources-pg66-withdrawal-tips__numbered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
}

.page-resources-pg66-withdrawal-tips__numbered-list {
    list-style-type: decimal;
}

.page-resources-pg66-withdrawal-tips__list li,
.page-resources-pg66-withdrawal-tips__numbered-list li {
    margin-bottom: 10px;
}

.page-resources-pg66-withdrawal-tips__list li strong {
    color: #0A2463;
}

.page-resources-pg66-withdrawal-tips__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-pg66-withdrawal-tips__cta-group {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #e0e0e0;
}

/* FAQ Section */
.page-resources-pg66-withdrawal-tips__faq-section {
    background-color: #eef2f7; /* Light blue-gray */
    padding: 60px 0;
    color: #333;
}

.page-resources-pg66-withdrawal-tips__faq-question {
    font-size: 1.5em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-weight: 600;
}

.page-resources-pg66-withdrawal-tips__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-resources-pg66-withdrawal-tips__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-pg66-withdrawal-tips__faq-answer {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid #FFD700;
    display: none; /* Hidden by default */
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    max-height: 0;
    opacity: 0;
}

.page-resources-pg66-withdrawal-tips__faq-answer.show {
    display: block;
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
}

.page-resources-pg66-withdrawal-tips__faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-pg66-withdrawal-tips__hero-title {
        font-size: 2.5em;
    }

    .page-resources-pg66-withdrawal-tips__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-pg66-withdrawal-tips__section-title {
        font-size: 1.8em;
    }

    .page-resources-pg66-withdrawal-tips__article h3 {
        font-size: 1.4em;
    }

    .page-resources-pg66-withdrawal-tips__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-pg66-withdrawal-tips__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-resources-pg66-withdrawal-tips__cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-resources-pg66-withdrawal-tips__hero-title {
        font-size: 2em;
    }

    .page-resources-pg66-withdrawal-tips__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-pg66-withdrawal-tips__article {
        padding: 20px;
    }

    .page-resources-pg66-withdrawal-tips__section-title {
        font-size: 1.5em;
    }

    .page-resources-pg66-withdrawal-tips__article p,
    .page-resources-pg66-withdrawal-tips__list,
    .page-resources-pg66-withdrawal-tips__numbered-list {
        font-size: 0.95em;
    }

    .page-resources-pg66-withdrawal-tips__faq-question {
        font-size: 1.2em;
    }
}