/* style/withdraw.css */
.page-withdraw {
    font-family: 'Arial', sans-serif;
    color: #F5F5DC; /* Light beige for text */
    background-color: #0A2239; /* Deep blue-black background */
    line-height: 1.6;
}

.page-withdraw__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-withdraw__hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

.page-withdraw__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.page-withdraw__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 34, 57, 0.8), rgba(255, 215, 0, 0.3));
    z-index: 2;
}

.page-withdraw__hero-content {
    position: relative;
    z-index: 3;
    color: #F5F5DC;
    max-width: 800px;
}

.page-withdraw__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-withdraw__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #F5F5DC;
}

.page-withdraw__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
}

.page-withdraw__introduction, .page-withdraw__additional-info {
    background-color: #1A3A5A; /* Slightly lighter blue-black for content sections */
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-withdraw__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #F5F5DC;
    text-align: justify;
}

.page-withdraw__steps {
    background-color: #0A2239;
    padding: 60px 0;
}

.page-withdraw__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background-color: #1A3A5A;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-withdraw__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-withdraw__step-icon {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700;
    margin-right: 30px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFD700;
    border-radius: 50%;
}

.page-withdraw__step-content {
    flex-grow: 1;
}

.page-withdraw__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-withdraw__step-description {
    font-size: 1.05em;
    color: #F5F5DC;
    margin-bottom: 15px;
}

.page-withdraw__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-withdraw__faq {
    background-color: #1A3A5A;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-withdraw__faq-item {
    background-color: #0A2239;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-withdraw__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-withdraw__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-withdraw__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-withdraw__faq-answer {
    padding: 0 30px 20px;
    color: #F5F5DC;
    font-size: 1.05em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-withdraw__faq-answer.active {
    max-height: 500px; /* Adjust as needed for content length */
}

.page-withdraw__faq-answer ul {
    list-style-type: disc;
    margin-left: 20px;
    padding: 10px 0;
}

.page-withdraw__faq-answer li {
    margin-bottom: 8px;
}

.page-withdraw__related-pages {
    background-color: #0A2239;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-withdraw__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-withdraw__detail-item {
    background-color: #1A3A5A;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-withdraw__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-withdraw__detail-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-withdraw__detail-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-withdraw__detail-title a:hover {
    color: #FF4500; /* Orange-red on hover */
}

.page-withdraw__detail-description {
    font-size: 1em;
    color: #F5F5DC;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

.page-withdraw__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2239; /* Deep blue-black */
    border: 2px solid #FFD700;
}

.page-withdraw__btn--primary:hover {
    background-color: #FF4500; /* Orange-red */
    color: #F5F5DC;
    border-color: #FF4500;
    transform: translateY(-2px);
}

.page-withdraw__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-withdraw__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
    transform: translateY(-2px);
}

.page-withdraw__btn--tertiary {
    background-color: #FF4500;
    color: #F5F5DC;
    border: 2px solid #FF4500;
}

.page-withdraw__btn--tertiary:hover {
    background-color: #FFD700;
    color: #0A2239;
    border-color: #FFD700;
    transform: translateY(-2px);
}

.highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-withdraw__hero-title {
        font-size: 2.8em;
    }
    .page-withdraw__hero-description {
        font-size: 1.1em;
    }
    .page-withdraw__section-title {
        font-size: 2em;
    }
    .page-withdraw__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-withdraw__step-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .page-withdraw__detail-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-withdraw__hero-title {
        font-size: 2.2em;
    }
    .page-withdraw__hero-description {
        font-size: 1em;
    }
    .page-withdraw__section-title {
        font-size: 1.8em;
    }
    .page-withdraw__step-item {
        padding: 20px;
    }
    .page-withdraw__step-title {
        font-size: 1.5em;
    }
    .page-withdraw__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-withdraw__faq-answer {
        padding: 0 20px 15px;
    }
}

@media (max-width: 576px) {
    .page-withdraw__hero {
        height: 400px;
    }
    .page-withdraw__hero-title {
        font-size: 1.8em;
    }
    .page-withdraw__hero-description {
        font-size: 0.9em;
    }
    .page-withdraw__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
        padding-top: 40px;
    }
    .page-withdraw__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-withdraw__step-icon {
        font-size: 2em;
        width: 50px;
        height: 50px;
    }
    .page-withdraw__step-title {
        font-size: 1.3em;
    }
    .page-withdraw__text-content, .page-withdraw__step-description, .page-withdraw__faq-answer p {
        font-size: 0.95em;
    }
    .page-withdraw__detail-title {
        font-size: 1.3em;
    }
}