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

/* Base styles for the page content */
.page-beginner-guide-withdrawal-process-notes {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey text on dark background */
    background-color: #1a1a1a; /* Dark background */
}

.page-beginner-guide-withdrawal-process-notes__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-beginner-guide-withdrawal-process-notes__container--center {
    text-align: center;
}

/* Hero Section */
.page-beginner-guide-withdrawal-process-notes__hero {
    background: linear-gradient(135deg, #8B0000, #4a0000); /* Dark red gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-withdrawal-process-notes__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,pattern,geometric]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-beginner-guide-withdrawal-process-notes__hero .page-beginner-guide-withdrawal-process-notes__container {
    position: relative;
    z-index: 1;
}

.page-beginner-guide-withdrawal-process-notes__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-withdrawal-process-notes__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #F0F0F0;
}

/* General Section Styling */
.page-beginner-guide-withdrawal-process-notes__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-beginner-guide-withdrawal-process-notes__section:last-of-type {
    border-bottom: none;
}

.page-beginner-guide-withdrawal-process-notes__heading {
    font-size: 2.2em;
    color: #FFD700; /* Gold for headings */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-beginner-guide-withdrawal-process-notes__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
    text-align: justify;
}

.page-beginner-guide-withdrawal-process-notes__text a {
    color: #FFD700;
    text-decoration: none;
}

.page-beginner-guide-withdrawal-process-notes__text a:hover {
    text-decoration: underline;
}

/* Buttons */
.page-beginner-guide-withdrawal-process-notes__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-beginner-guide-withdrawal-process-notes__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Dark red text */
}

.page-beginner-guide-withdrawal-process-notes__button--primary:hover {
    background-color: #e6c200; /* Darker gold */
    color: #6a0000;
}

.page-beginner-guide-withdrawal-process-notes__button--secondary {
    background-color: #8B0000; /* Dark red button */
    color: #FFD700; /* Gold text */
    border: 1px solid #FFD700;
    margin-left: 20px;
}

.page-beginner-guide-withdrawal-process-notes__button--secondary:hover {
    background-color: #a00000; /* Lighter dark red */
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-beginner-guide-withdrawal-process-notes__button-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Steps Grid */
.page-beginner-guide-withdrawal-process-notes__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-beginner-guide-withdrawal-process-notes__step-item {
    background-color: #2a2a2a; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-beginner-guide-withdrawal-process-notes__step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(70%) sepia(80%) saturate(1500%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Gold tint */
}

.page-beginner-guide-withdrawal-process-notes__step-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-beginner-guide-withdrawal-process-notes__step-description {
    font-size: 1em;
    color: #C0C0C0;
}

/* Lists */
.page-beginner-guide-withdrawal-process-notes__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-beginner-guide-withdrawal-process-notes__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-beginner-guide-withdrawal-process-notes__list strong {
    color: #FFD700;
}

/* Images */
.page-beginner-guide-withdrawal-process-notes__image {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-withdrawal-process-notes__image--full-width {
    width: 100%;
}

/* FAQ Grid */
.page-beginner-guide-withdrawal-process-notes__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-beginner-guide-withdrawal-process-notes__faq-item {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(139, 0, 0, 0.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-withdrawal-process-notes__faq-question {
    font-size: 1.2em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-beginner-guide-withdrawal-process-notes__faq-answer {
    font-size: 1em;
    color: #C0C0C0;
}

.page-beginner-guide-withdrawal-process-notes__call-to-action {
    margin-top: 50px;
    text-align: center;
    background-color: #333333;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

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

    .page-beginner-guide-withdrawal-process-notes__subtitle {
        font-size: 1.2em;
    }

    .page-beginner-guide-withdrawal-process-notes__heading {
        font-size: 1.8em;
    }

    .page-beginner-guide-withdrawal-process-notes__section {
        padding: 40px 0;
    }

    .page-beginner-guide-withdrawal-process-notes__steps-grid,
    .page-beginner-guide-withdrawal-process-notes__faq-grid {
        grid-template-columns: 1fr;
    }

    .page-beginner-guide-withdrawal-process-notes__button-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-beginner-guide-withdrawal-process-notes__button--secondary {
        margin-left: 0;
    }
}

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

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

    .page-beginner-guide-withdrawal-process-notes__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}