/* style/beginner-guide-withdrawal-process.css */

/* Base styles for the page */
.page-beginner-guide-withdrawal-process {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-beginner-guide-withdrawal-process__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-beginner-guide-withdrawal-process__hero {
    background: linear-gradient(135deg, #2D3E50 0%, #F39C12 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-withdrawal-process__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-beginner-guide-withdrawal-process__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-beginner-guide-withdrawal-process__hero-image {
    max-width: 80%;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-withdrawal-process__cta-button {
    display: inline-block;
    background-color: #F39C12;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-beginner-guide-withdrawal-process__cta-button:hover {
    background-color: #e08e0b;
    transform: translateY(-3px);
}

/* General Section Styling */
.page-beginner-guide-withdrawal-process__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.page-beginner-guide-withdrawal-process__section:nth-of-type(even) {
    background-color: #fdfdfd;
}

.page-beginner-guide-withdrawal-process__section-title {
    font-size: 2.2em;
    color: #2D3E50;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

/* Step-by-step guide */
.page-beginner-guide-withdrawal-process__step-item,
.page-beginner-guide-withdrawal-process__condition-item,
.page-beginner-guide-withdrawal-process__time-fee-item,
.page-beginner-guide-withdrawal-process__issue-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-left: 5px solid #F39C12;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.page-beginner-guide-withdrawal-process__step-title,
.page-beginner-guide-withdrawal-process__condition-title,
.page-beginner-guide-withdrawal-process__time-fee-title,
.page-beginner-guide-withdrawal-process__issue-title {
    font-size: 1.6em;
    color: #2D3E50;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-beginner-guide-withdrawal-process__step-image,
.page-beginner-guide-withdrawal-process__condition-image,
.page-beginner-guide-withdrawal-process__time-fee-image,
.page-beginner-guide-withdrawal-process__issue-image,
.page-beginner-guide-withdrawal-process__tips-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-beginner-guide-withdrawal-process__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.page-beginner-guide-withdrawal-process__list li {
    margin-bottom: 8px;
}

.page-beginner-guide-withdrawal-process__list--numbered {
    list-style: decimal;
}

.page-beginner-guide-withdrawal-process__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
    border: none;
    cursor: pointer;
}

.page-beginner-guide-withdrawal-process__button--primary {
    background-color: #2D3E50;
    color: #fff;
}

.page-beginner-guide-withdrawal-process__button--primary:hover {
    background-color: #1a2b3c;
    transform: translateY(-2px);
}

.page-beginner-guide-withdrawal-process__button--secondary {
    background-color: #F39C12;
    color: #fff;
}

.page-beginner-guide-withdrawal-process__button--secondary:hover {
    background-color: #e08e0b;
    transform: translateY(-2px);
}

.page-beginner-guide-withdrawal-process__inline-link {
    color: #F39C12;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-beginner-guide-withdrawal-process__inline-link:hover {
    color: #2D3E50;
    text-decoration: underline;
}

.page-beginner-guide-withdrawal-process__cta-button--final {
    margin-top: 50px;
    font-size: 1.3em;
    padding: 18px 35px;
    background-color: #2D3E50;
}

.page-beginner-guide-withdrawal-process__cta-button--final:hover {
    background-color: #1a2b3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-beginner-guide-withdrawal-process__title {
        font-size: 2em;
    }

    .page-beginner-guide-withdrawal-process__subtitle {
        font-size: 1em;
    }

    .page-beginner-guide-withdrawal-process__section-title {
        font-size: 1.8em;
    }

    .page-beginner-guide-withdrawal-process__step-title,
    .page-beginner-guide-withdrawal-process__condition-title,
    .page-beginner-guide-withdrawal-process__time-fee-title,
    .page-beginner-guide-withdrawal-process__issue-title {
        font-size: 1.4em;
    }

    .page-beginner-guide-withdrawal-process__hero,
    .page-beginner-guide-withdrawal-process__section {
        padding: 40px 0;
    }

    .page-beginner-guide-withdrawal-process__cta-button,
    .page-beginner-guide-withdrawal-process__button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-beginner-guide-withdrawal-process__cta-button--final {
        font-size: 1.1em;
        padding: 15px 25px;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-withdrawal-process__title {
        font-size: 1.8em;
    }

    .page-beginner-guide-withdrawal-process__subtitle {
        font-size: 0.9em;
    }

    .page-beginner-guide-withdrawal-process__section-title {
        font-size: 1.6em;
    }

    .page-beginner-guide-withdrawal-process__step-title,
    .page-beginner-guide-withdrawal-process__condition-title,
    .page-beginner-guide-withdrawal-process__time-fee-title,
    .page-beginner-guide-withdrawal-process__issue-title {
        font-size: 1.2em;
    }

    .page-beginner-guide-withdrawal-process__hero-image {
        max-width: 95%;
    }

    .page-beginner-guide-withdrawal-process__container {
        padding: 0 15px;
    }
}