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

/* Variables for colors */
:root {
    --primary-color: #0A2342;
    --secondary-color: #FFD700;
    --text-light: #F8F8F8; /* Light text for dark backgrounds */
    --text-dark: #333333; /* Dark text for light backgrounds */
    --background-light: #FFFFFF;
    --background-dark: #0A2342;
    --accent-color-darker: #b39700; /* Darker variant of secondary for text on secondary bg */
    --accent-color-lighter: #f5dcbd; /* Lighter variant of primary for text on primary bg */
}

.page-beginner-guide-fabet-first-withdrawal-process {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.page-beginner-guide-fabet-first-withdrawal-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-beginner-guide-fabet-first-withdrawal-process__hero-section {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-fabet-first-withdrawal-process__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.9), rgba(255, 215, 0, 0.3));
    z-index: 1;
}

.page-beginner-guide-fabet-first-withdrawal-process__hero-section .page-beginner-guide-fabet-first-withdrawal-process__container {
    position: relative;
    z-index: 2;
}

.page-beginner-guide-fabet-first-withdrawal-process__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-fabet-first-withdrawal-process__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-beginner-guide-fabet-first-withdrawal-process__content-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-beginner-guide-fabet-first-withdrawal-process__article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-fabet-first-withdrawal-process__heading {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 10px;
}

.page-beginner-guide-fabet-first-withdrawal-process__sub-heading {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-beginner-guide-fabet-first-withdrawal-process__article p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-beginner-guide-fabet-first-withdrawal-process__list,
.page-beginner-guide-fabet-first-withdrawal-process__numbered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-beginner-guide-fabet-first-withdrawal-process__numbered-list {
    list-style-type: decimal;
}

.page-beginner-guide-fabet-first-withdrawal-process__list li,
.page-beginner-guide-fabet-first-withdrawal-process__numbered-list li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.page-beginner-guide-fabet-first-withdrawal-process__list li strong {
    color: var(--primary-color);
}

.page-beginner-guide-fabet-first-withdrawal-process__highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.page-beginner-guide-fabet-first-withdrawal-process__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-beginner-guide-fabet-first-withdrawal-process__link:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.page-beginner-guide-fabet-first-withdrawal-process__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-beginner-guide-fabet-first-withdrawal-process__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-fabet-first-withdrawal-process__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-beginner-guide-fabet-first-withdrawal-process__btn--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-beginner-guide-fabet-first-withdrawal-process__btn--primary:hover {
    background-color: var(--accent-color-darker);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-beginner-guide-fabet-first-withdrawal-process__btn--secondary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin-left: 15px;
}

.page-beginner-guide-fabet-first-withdrawal-process__btn--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 35, 66, 0.4);
}

.page-beginner-guide-fabet-first-withdrawal-process__cta-group {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide-fabet-first-withdrawal-process__main-title {
        font-size: 2.5em;
    }

    .page-beginner-guide-fabet-first-withdrawal-process__heading {
        font-size: 1.8em;
    }

    .page-beginner-guide-fabet-first-withdrawal-process__sub-heading {
        font-size: 1.4em;
    }

    .page-beginner-guide-fabet-first-withdrawal-process__article {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-fabet-first-withdrawal-process__hero-section {
        padding: 60px 0;
    }

    .page-beginner-guide-fabet-first-withdrawal-process__main-title {
        font-size: 2em;
    }

    .page-beginner-guide-fabet-first-withdrawal-process__subtitle {
        font-size: 1.1em;
    }

    .page-beginner-guide-fabet-first-withdrawal-process__content-section {
        padding: 40px 0;
    }

    .page-beginner-guide-fabet-first-withdrawal-process__heading {
        font-size: 1.6em;
    }

    .page-beginner-guide-fabet-first-withdrawal-process__sub-heading {
        font-size: 1.3em;
    }

    .page-beginner-guide-fabet-first-withdrawal-process__article {
        padding: 20px;
    }

    .page-beginner-guide-fabet-first-withdrawal-process__list,
    .page-beginner-guide-fabet-first-withdrawal-process__numbered-list {
        font-size: 1em;
    }

    .page-beginner-guide-fabet-first-withdrawal-process__btn {
        padding: 12px 24px;
        font-size: 1em;
        margin-left: 0;
    }
    
    .page-beginner-guide-fabet-first-withdrawal-process__cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .page-beginner-guide-fabet-first-withdrawal-process__btn--secondary {
        margin-top: 15px;
        margin-left: 0;
    }
}

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

    .page-beginner-guide-fabet-first-withdrawal-process__heading {
        font-size: 1.4em;
    }

    .page-beginner-guide-fabet-first-withdrawal-process__sub-heading {
        font-size: 1.2em;
    }
}