/* style/guides-withdrawal-process.css */

.page-guides-withdrawal-process {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-guides-withdrawal-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-guides-withdrawal-process__hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.page-guides-withdrawal-process__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: page-guides-withdrawal-process-hero-animate 15s linear infinite;
}

@keyframes page-guides-withdrawal-process-hero-animate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-guides-withdrawal-process__hero .page-guides-withdrawal-process__container {
    position: relative;
    z-index: 1;
}

.page-guides-withdrawal-process__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-guides-withdrawal-process__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-guides-withdrawal-process__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 0 10px;
    border: 2px solid transparent;
}

.page-guides-withdrawal-process__button--primary {
    background-color: #fff;
    color: #007bff;
    border-color: #fff;
}

.page-guides-withdrawal-process__button--primary:hover {
    background-color: #e2e6ea;
    color: #0056b3;
    transform: translateY(-3px);
}

.page-guides-withdrawal-process__button--secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.page-guides-withdrawal-process__button--secondary:hover {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-3px);
}

.page-guides-withdrawal-process__button--inline {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 25px;
    margin: 10px 0;
    background-color: #007bff;
    color: #fff;
    border: none;
}

.page-guides-withdrawal-process__button--inline:hover {
    background-color: #0056b3;
}

.page-guides-withdrawal-process__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-guides-withdrawal-process__section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.page-guides-withdrawal-process__section-title {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-guides-withdrawal-process__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #28a745;
    border-radius: 2px;
}

.page-guides-withdrawal-process__overview p,
.page-guides-withdrawal-process__documents p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-guides-withdrawal-process__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-guides-withdrawal-process__image--left {
    float: left;
    margin-right: 25px;
    max-width: 45%;
}

.page-guides-withdrawal-process__image--right {
    float: right;
    margin-left: 25px;
    max-width: 45%;
}

.page-guides-withdrawal-process__steps .page-guides-withdrawal-process__step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.page-guides-withdrawal-process__steps .page-guides-withdrawal-process__step-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px;
    border-left: 3px solid #e9ecef;
    min-height: 80px;
}

.page-guides-withdrawal-process__steps .page-guides-withdrawal-process__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: -20px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: #fff;
    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,123,255,0.2);
}

.page-guides-withdrawal-process__step-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-guides-withdrawal-process__step-item p {
    font-size: 1.05em;
    text-align: justify;
}

.page-guides-withdrawal-process__document-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-guides-withdrawal-process__document-list li {
    background-color: #e9f7ef; /* Light green background */
    border-left: 5px solid #28a745;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1.05em;
}

.page-guides-withdrawal-process__note-list {
    list-style: none;
    padding: 0;
}

.page-guides-withdrawal-process__note-list li {
    background-color: #fff3cd; /* Light warning yellow */
    border-left: 5px solid #ffc107;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1.05em;
    color: #856404;
}

.page-guides-withdrawal-process__faq-item {
    background-color: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-guides-withdrawal-process__faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.page-guides-withdrawal-process__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px;
}

.page-guides-withdrawal-process__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
    color: #28a745;
    transition: transform 0.3s ease;
}

.page-guides-withdrawal-process__faq-item.active .page-guides-withdrawal-process__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-guides-withdrawal-process__faq-answer {
    font-size: 1.05em;
    color: #555;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
    margin-top: 10px;
}

.page-guides-withdrawal-process__faq-item.active .page-guides-withdrawal-process__faq-answer {
    display: block;
}

.page-guides-withdrawal-process__cta {
    text-align: center;
    background-color: #007bff;
    color: #fff;
    padding: 60px 0;
    border-radius: 15px;
    margin-top: 40px;
}

.page-guides-withdrawal-process__cta .page-guides-withdrawal-process__section-title {
    color: #fff;
}

.page-guides-withdrawal-process__cta .page-guides-withdrawal-process__section-title::after {
    background-color: #fff;
}

.page-guides-withdrawal-process__cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-guides-withdrawal-process__cta-buttons .page-guides-withdrawal-process__button {
    margin: 0 15px;
}

.page-guides-withdrawal-process__cta-buttons .page-guides-withdrawal-process__button--primary {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.page-guides-withdrawal-process__cta-buttons .page-guides-withdrawal-process__button--primary:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
    color: #fff;
}

.page-guides-withdrawal-process__cta-buttons .page-guides-withdrawal-process__button--secondary {
    background-color: #fff;
    border-color: #fff;
    color: #007bff;
}

.page-guides-withdrawal-process__cta-buttons .page-guides-withdrawal-process__button--secondary:hover {
    background-color: #e2e6ea;
    border-color: #e2e6ea;
    color: #0056b3;
}

@media (max-width: 992px) {
    .page-guides-withdrawal-process__title {
        font-size: 2.2em;
    }
    .page-guides-withdrawal-process__subtitle {
        font-size: 1.1em;
    }
    .page-guides-withdrawal-process__section-title {
        font-size: 1.8em;
    }
    .page-guides-withdrawal-process__image--left,
    .page-guides-withdrawal-process__image--right {
        float: none;
        margin: 20px auto;
        max-width: 80%;
        display: block;
    }
    .page-guides-withdrawal-process__steps .page-guides-withdrawal-process__step-item {
        padding-left: 50px;
    }
    .page-guides-withdrawal-process__steps .page-guides-withdrawal-process__step-item::before {
        left: -10px;
    }
}

@media (max-width: 768px) {
    .page-guides-withdrawal-process__hero {
        padding: 60px 0;
    }
    .page-guides-withdrawal-process__title {
        font-size: 1.8em;
    }
    .page-guides-withdrawal-process__subtitle {
        font-size: 1em;
    }
    .page-guides-withdrawal-process__button {
        padding: 10px 20px;
        font-size: 1em;
        margin: 5px;
    }
    .page-guides-withdrawal-process__section {
        padding: 40px 0;
    }
    .page-guides-withdrawal-process__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }
    .page-guides-withdrawal-process__overview p,
    .page-guides-withdrawal-process__documents p,
    .page-guides-withdrawal-process__step-item p,
    .page-guides-withdrawal-process__document-list li,
    .page-guides-withdrawal-process__note-list li,
    .page-guides-withdrawal-process__faq-answer {
        font-size: 0.95em;
    }
    .page-guides-withdrawal-process__step-title {
        font-size: 1.3em;
    }
    .page-guides-withdrawal-process__faq-question {
        font-size: 1.1em;
    }
    .page-guides-withdrawal-process__cta p {
        font-size: 1.05em;
    }
}

@media (max-width: 576px) {
    .page-guides-withdrawal-process__button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-guides-withdrawal-process__cta-buttons .page-guides-withdrawal-process__button {
        width: 80%;
    }
    .page-guides-withdrawal-process__hero {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
}