/* style/getting-started-withdrawal-process.css */
.page-getting-started-withdrawal-process {
    font-family: 'Arial', sans-serif;
    color: #0A2239; /* Dark blue text for readability on light backgrounds */
    line-height: 1.6;
}

.page-getting-started-withdrawal-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-getting-started-withdrawal-process__hero {
    background-color: #0A2239; /* Primary dark blue background */
    color: #FFFFFF; /* White text for contrast */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-getting-started-withdrawal-process__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E0B400; /* Secondary gold for emphasis */
    font-weight: bold;
    line-height: 1.2;
}

.page-getting-started-withdrawal-process__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #E6E6E6; /* Slightly off-white for softer contrast */
}

.page-getting-started-withdrawal-process__cta-button {
    display: inline-block;
    background-color: #E0B400; /* Secondary gold for buttons */
    color: #0A2239; /* Dark blue text on gold button for contrast */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-getting-started-withdrawal-process__cta-button:hover {
    background-color: #f0c800; /* Lighter gold on hover */
    transform: translateY(-2px);
}

.page-getting-started-withdrawal-process__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-getting-started-withdrawal-process__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-getting-started-withdrawal-process__section {
    padding: 60px 0;
}

.page-getting-started-withdrawal-process__section:nth-of-type(even) {
    background-color: #F8F8F8; /* Light grey background for alternating sections */
}

.page-getting-started-withdrawal-process__section-title {
    font-size: 2.2em;
    color: #0A2239;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-getting-started-withdrawal-process__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #E0B400;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-getting-started-withdrawal-process__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-getting-started-withdrawal-process__step-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-getting-started-withdrawal-process__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-getting-started-withdrawal-process__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-getting-started-withdrawal-process__step-title {
    font-size: 1.4em;
    color: #0A2239;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-getting-started-withdrawal-process__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-getting-started-withdrawal-process__list li {
    background-color: #FFFFFF;
    padding: 15px 25px;
    margin-bottom: 10px;
    border-left: 5px solid #E0B400;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
}

.page-getting-started-withdrawal-process__list--padded li {
    padding-left: 40px; /* More space for tips */
}

.page-getting-started-withdrawal-process__image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-getting-started-withdrawal-process__image--wide {
    width: 90%;
}

.page-getting-started-withdrawal-process__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-getting-started-withdrawal-process__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    transition: box-shadow 0.3s ease;
}

.page-getting-started-withdrawal-process__faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-getting-started-withdrawal-process__faq-question {
    font-size: 1.3em;
    color: #0A2239;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-getting-started-withdrawal-process__faq-answer {
    color: #333333;
    font-size: 1em;
}

.page-getting-started-withdrawal-process__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-getting-started-withdrawal-process__feature-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-getting-started-withdrawal-process__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-getting-started-withdrawal-process__feature-title {
    font-size: 1.5em;
    color: #E0B400;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-getting-started-withdrawal-process__feature-item p {
    color: #333333;
}

.page-getting-started-withdrawal-process__related-content {
    text-align: center;
    background-color: #0A2239;
    color: #FFFFFF;
}

.page-getting-started-withdrawal-process__related-content .page-getting-started-withdrawal-process__section-title {
    color: #E0B400;
}

.page-getting-started-withdrawal-process__related-content .page-getting-started-withdrawal-process__section-title::after {
    background-color: #E0B400;
}

.page-getting-started-withdrawal-process__related-content p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #E6E6E6;
}

.page-getting-started-withdrawal-process__related-links {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-getting-started-withdrawal-process__related-links li {
    display: inline-block;
}

.page-getting-started-withdrawal-process__related-links a {
    display: block;
    background-color: #E0B400;
    color: #0A2239;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-getting-started-withdrawal-process__related-links a:hover {
    background-color: #f0c800;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-getting-started-withdrawal-process__hero {
        padding: 60px 0;
    }

    .page-getting-started-withdrawal-process__hero-title {
        font-size: 2em;
    }

    .page-getting-started-withdrawal-process__hero-subtitle {
        font-size: 1em;
    }

    .page-getting-started-withdrawal-process__section-title {
        font-size: 1.8em;
    }

    .page-getting-started-withdrawal-process__steps-grid,
    .page-getting-started-withdrawal-process__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-getting-started-withdrawal-process__step-item,
    .page-getting-started-withdrawal-process__feature-item {
        padding: 25px;
    }

    .page-getting-started-withdrawal-process__list li {
        padding: 12px 20px;
        font-size: 0.95em;
    }

    .page-getting-started-withdrawal-process__list--padded li {
        padding-left: 30px;
    }

    .page-getting-started-withdrawal-process__faq-question {
        font-size: 1.1em;
    }

    .page-getting-started-withdrawal-process__related-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-getting-started-withdrawal-process__hero-title {
        font-size: 1.6em;
    }

    .page-getting-started-withdrawal-process__section-title {
        font-size: 1.5em;
    }

    .page-getting-started-withdrawal-process__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-getting-started-withdrawal-process__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-getting-started-withdrawal-process__step-icon {
        width: 60px;
        height: 60px;
    }

    .page-getting-started-withdrawal-process__step-title {
        font-size: 1.2em;
    }
}