/* style/deposit-withdrawal-fee-policy.css */
.page-deposit-withdrawal-fee-policy {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

.page-deposit-withdrawal-fee-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-deposit-withdrawal-fee-policy__hero-section {
    background: linear-gradient(135deg, #1A202C, #3F0D12); /* Dark gradient for hero */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-deposit-withdrawal-fee-policy__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E53E3E; /* Auxiliary color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-deposit-withdrawal-fee-policy__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-deposit-withdrawal-fee-policy__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-deposit-withdrawal-fee-policy__section:last-of-type {
    border-bottom: none;
}

.page-deposit-withdrawal-fee-policy__section-title {
    font-size: 2.2em;
    color: #E53E3E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-deposit-withdrawal-fee-policy__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #E53E3E;
    margin: 15px auto 0 auto;
}

.page-deposit-withdrawal-fee-policy__subsection-title {
    font-size: 1.6em;
    color: #e5dfd3; /* Lighter text for good contrast */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #E53E3E;
    padding-left: 15px;
}

.page-deposit-withdrawal-fee-policy__list,
.page-deposit-withdrawal-fee-policy__numbered-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-fee-policy__list li,
.page-deposit-withdrawal-fee-policy__numbered-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #F8F8F8;
}

.page-deposit-withdrawal-fee-policy__list li::before {
    content: '•';
    color: #E53E3E;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-deposit-withdrawal-fee-policy__numbered-list li::before {
    counter-increment: list-item;
    content: counter(list-item) ". ";
    color: #E53E3E;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-deposit-withdrawal-fee-policy__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    font-size: 1em;
}

.page-deposit-withdrawal-fee-policy__button--primary {
    background-color: #E53E3E;
    color: #FFFFFF;
    border: 2px solid #E53E3E;
}

.page-deposit-withdrawal-fee-policy__button--primary:hover {
    background-color: #C02E2E;
    border-color: #C02E2E;
    transform: translateY(-2px);
}

.page-deposit-withdrawal-fee-policy__button--secondary {
    background-color: transparent;
    color: #E53E3E;
    border: 2px solid #E53E3E;
}

.page-deposit-withdrawal-fee-policy__button--secondary:hover {
    background-color: rgba(229, 62, 62, 0.1);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.page-deposit-withdrawal-fee-policy__cta-group {
    text-align: center;
    margin-top: 40px;
}

.page-deposit-withdrawal-fee-policy__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-fee-policy__center-text {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-deposit-withdrawal-fee-policy__hero-title {
        font-size: 2em;
    }

    .page-deposit-withdrawal-fee-policy__section-title {
        font-size: 1.8em;
    }

    .page-deposit-withdrawal-fee-policy__subsection-title {
        font-size: 1.4em;
    }

    .page-deposit-withdrawal-fee-policy__button {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 8px;
    }
}

@media (max-width: 480px) {
    .page-deposit-withdrawal-fee-policy__hero-title {
        font-size: 1.6em;
    }

    .page-deposit-withdrawal-fee-policy__hero-description {
        font-size: 1em;
    }

    .page-deposit-withdrawal-fee-policy__section-title {
        font-size: 1.6em;
    }

    .page-deposit-withdrawal-fee-policy__subsection-title {
        font-size: 1.2em;
    }

    .page-deposit-withdrawal-fee-policy__button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .page-deposit-withdrawal-fee-policy__cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}