/* style/guides-how-to-withdraw.css */

.page-guides-how-to-withdraw {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Default text color for better contrast on dark background */
    background-color: #0A2463; /* Main background color */
}

.page-guides-how-to-withdraw__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-guides-how-to-withdraw__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #001a4a 100%); /* Darker gradient for hero */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-guides-how-to-withdraw__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-guides-how-to-withdraw__hero-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-guides-how-to-withdraw__hero-title a:hover {
    text-decoration: underline;
}

.page-guides-how-to-withdraw__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-guides-how-to-withdraw__hero-description a {
    color: #FFD700;
    text-decoration: none;
}

.page-guides-how-to-withdraw__hero-description a:hover {
    text-decoration: underline;
}

.page-guides-how-to-withdraw__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-guides-how-to-withdraw__section:last-of-type {
    border-bottom: none;
}

.page-guides-how-to-withdraw__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-guides-how-to-withdraw__section-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-guides-how-to-withdraw__section-title a:hover {
    text-decoration: underline;
}

.page-guides-how-to-withdraw p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-guides-how-to-withdraw p a {
    color: #FFD700;
    text-decoration: none;
}

.page-guides-how-to-withdraw p a:hover {
    text-decoration: underline;
}

.page-guides-how-to-withdraw__list,
.page-guides-how-to-withdraw__numbered-list,
.page-guides-how-to-withdraw__checklist {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-guides-how-to-withdraw__numbered-list {
    list-style-type: none;
    margin-left: 0;
}

.page-guides-how-to-withdraw__numbered-list li {
    margin-bottom: 30px;
    padding-left: 0;
    position: relative;
}

.page-guides-how-to-withdraw__numbered-list li h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.page-guides-how-to-withdraw__numbered-list li h3 a {
    color: #FFD700;
    text-decoration: none;
}

.page-guides-how-to-withdraw__numbered-list li h3 a:hover {
    text-decoration: underline;
}

.page-guides-how-to-withdraw__numbered-list li p {
    margin-left: 0;
}

.page-guides-how-to-withdraw__checklist {
    list-style-type: none;
    margin-left: 0;
}

.page-guides-how-to-withdraw__checklist li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-guides-how-to-withdraw__checklist li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
}

.page-guides-how-to-withdraw__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-guides-how-to-withdraw__list li strong {
    color: #FFD700;
}

.page-guides-how-to-withdraw__list li a {
    color: #FFD700;
    text-decoration: none;
}

.page-guides-how-to-withdraw__list li a:hover {
    text-decoration: underline;
}

.page-guides-how-to-withdraw__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
}

.page-guides-how-to-withdraw__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-guides-how-to-withdraw__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-guides-how-to-withdraw__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-guides-how-to-withdraw__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-guides-how-to-withdraw__image {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-guides-how-to-withdraw__image--large {
    max-width: 800px;
}

.page-guides-how-to-withdraw__image--medium {
    max-width: 600px;
}

.page-guides-how-to-withdraw__image--small {
    max-width: 400px;
}

.page-guides-how-to-withdraw__grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .page-guides-how-to-withdraw__grid-2-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

.page-guides-how-to-withdraw__card {
    background-color: #1a3a7c; /* Slightly lighter blue for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.page-guides-how-to-withdraw__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-guides-how-to-withdraw__card-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-guides-how-to-withdraw__card-title a:hover {
    text-decoration: underline;
}

.page-guides-how-to-withdraw__card p {
    color: #e0e0e0;
}

.page-guides-how-to-withdraw__card p a {
    color: #FFD700;
    text-decoration: none;
}

.page-guides-how-to-withdraw__card p a:hover {
    text-decoration: underline;
}

.page-guides-how-to-withdraw__accordion-item {
    background-color: #1a3a7c;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-guides-how-to-withdraw__accordion-header {
    padding: 20px;
    background-color: #0F2F6C; /* Darker blue for header */
    color: #FFD700;
    cursor: pointer;
    font-size: 1.3em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-guides-how-to-withdraw__accordion-header a {
    color: #FFD700;
    text-decoration: none;
}

.page-guides-how-to-withdraw__accordion-header a:hover {
    text-decoration: underline;
}

.page-guides-how-to-withdraw__accordion-header:hover {
    background-color: #143b7e;
}

.page-guides-how-to-withdraw__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-guides-how-to-withdraw__accordion-item.active .page-guides-how-to-withdraw__accordion-header::after {
    content: '-';
    transform: rotate(180deg);
}

.page-guides-how-to-withdraw__accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #e0e0e0;
}

.page-guides-how-to-withdraw__accordion-content p {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
}

.page-guides-how-to-withdraw__accordion-content p a {
    color: #FFD700;
    text-decoration: none;
}

.page-guides-how-to-withdraw__accordion-content p a:hover {
    text-decoration: underline;
}

.page-guides-how-to-withdraw__cta {
    background: linear-gradient(90deg, #0A2463, #001a4a); /* Darker gradient for CTA */
    text-align: center;
    padding: 80px 0;
    color: #ffffff;
}

.page-guides-how-to-withdraw__cta-content {
    max-width: 900px;
}

.page-guides-how-to-withdraw__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-guides-how-to-withdraw__cta-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-guides-how-to-withdraw__cta-title a:hover {
    text-decoration: underline;
}

.page-guides-how-to-withdraw__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-guides-how-to-withdraw__cta-description a {
    color: #FFD700;
    text-decoration: none;
}

.page-guides-how-to-withdraw__cta-description a:hover {
    text-decoration: underline;
}

.page-guides-how-to-withdraw__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-guides-how-to-withdraw__hero-title {
        font-size: 2.5em;
    }
    .page-guides-how-to-withdraw__section-title {
        font-size: 2em;
    }
    .page-guides-how-to-withdraw__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-guides-how-to-withdraw__hero-section,
    .page-guides-how-to-withdraw__section,
    .page-guides-how-to-withdraw__cta {
        padding: 40px 0;
    }
    .page-guides-how-to-withdraw__hero-title {
        font-size: 2em;
    }
    .page-guides-how-to-withdraw__hero-description,
    .page-guides-how-to-withdraw p,
    .page-guides-how-to-withdraw__list li,
    .page-guides-how-to-withdraw__checklist li {
        font-size: 1em;
    }
    .page-guides-how-to-withdraw__section-title {
        font-size: 1.8em;
    }
    .page-guides-how-to-withdraw__numbered-list li h3 {
        font-size: 1.5em;
    }
    .page-guides-how-to-withdraw__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-guides-how-to-withdraw__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-guides-how-to-withdraw__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-guides-how-to-withdraw__hero-title {
        font-size: 1.8em;
    }
    .page-guides-how-to-withdraw__section-title {
        font-size: 1.5em;
    }
    .page-guides-how-to-withdraw__cta-title {
        font-size: 1.8em;
    }
}