/* style/deposit-withdrawal-transaction-fees.css */

:root {
    --page-deposit-withdrawal-transaction-fees-primary-color: #007BFF;
    --page-deposit-withdrawal-transaction-fees-secondary-color: #FFD700;
    --page-deposit-withdrawal-transaction-fees-text-dark: #333;
    --page-deposit-withdrawal-transaction-fees-text-light: #fff;
    --page-deposit-withdrawal-transaction-fees-bg-light: #f9f9f9;
    --page-deposit-withdrawal-transaction-fees-bg-dark: #0056b3; /* Darker variant of primary for contrast */
    --page-deposit-withdrawal-transaction-fees-border-color: #eee;
    --page-deposit-withdrawal-transaction-fees-accent-color: #FF8400; /* Complementary to primary */
}

.page-deposit-withdrawal-transaction-fees {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-deposit-withdrawal-transaction-fees-text-dark);
}

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

.page-deposit-withdrawal-transaction-fees__hero {
    background: linear-gradient(135deg, var(--page-deposit-withdrawal-transaction-fees-primary-color), #0056b3);
    color: var(--page-deposit-withdrawal-transaction-fees-text-light);
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-deposit-withdrawal-transaction-fees__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-deposit-withdrawal-transaction-fees-text-light);
    font-weight: bold;
}

.page-deposit-withdrawal-transaction-fees__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-deposit-withdrawal-transaction-fees__cta-button {
    display: inline-block;
    background-color: var(--page-deposit-withdrawal-transaction-fees-secondary-color);
    color: var(--page-deposit-withdrawal-transaction-fees-text-dark);
    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;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-transaction-fees__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-deposit-withdrawal-transaction-fees__section {
    padding: 60px 0;
}

.page-deposit-withdrawal-transaction-fees__section--alt-bg {
    background-color: var(--page-deposit-withdrawal-transaction-fees-bg-light);
}

.page-deposit-withdrawal-transaction-fees__section-title {
    font-size: 2.5em;
    color: var(--page-deposit-withdrawal-transaction-fees-primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-deposit-withdrawal-transaction-fees__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--page-deposit-withdrawal-transaction-fees-secondary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-deposit-withdrawal-transaction-fees p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}

.page-deposit-withdrawal-transaction-fees__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-deposit-withdrawal-transaction-fees__table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-deposit-withdrawal-transaction-fees__table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: var(--page-deposit-withdrawal-transaction-fees-text-light);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.page-deposit-withdrawal-transaction-fees__table th,
.page-deposit-withdrawal-transaction-fees__table td {
    padding: 15px;
    border: 1px solid var(--page-deposit-withdrawal-transaction-fees-border-color);
    text-align: left;
    font-size: 1em;
}

.page-deposit-withdrawal-transaction-fees__table th {
    background-color: var(--page-deposit-withdrawal-transaction-fees-primary-color);
    color: var(--page-deposit-withdrawal-transaction-fees-text-light);
    font-weight: bold;
    text-transform: uppercase;
}

.page-deposit-withdrawal-transaction-fees__table tr:nth-child(even) {
    background-color: var(--page-deposit-withdrawal-transaction-fees-bg-light);
}

.page-deposit-withdrawal-transaction-fees__table tbody tr:hover {
    background-color: #e0f2f7; /* Lighter blue for hover */
}

.page-deposit-withdrawal-transaction-fees__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-deposit-withdrawal-transaction-fees__list li {
    margin-bottom: 10px;
}

.page-deposit-withdrawal-transaction-fees__faq-item {
    background-color: var(--page-deposit-withdrawal-transaction-fees-text-light);
    border: 1px solid var(--page-deposit-withdrawal-transaction-fees-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-deposit-withdrawal-transaction-fees__faq-question {
    font-size: 1.3em;
    color: var(--page-deposit-withdrawal-transaction-fees-primary-color);
    margin-bottom: 10px;
}

.page-deposit-withdrawal-transaction-fees__faq-answer {
    font-size: 1.05em;
    color: var(--page-deposit-withdrawal-transaction-fees-text-dark);
    text-align: justify;
}

.page-deposit-withdrawal-transaction-fees__final-cta {
    text-align: center;
    padding-bottom: 80px;
}

.page-deposit-withdrawal-transaction-fees__button-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-deposit-withdrawal-transaction-fees__cta-button--primary {
    background-color: var(--page-deposit-withdrawal-transaction-fees-primary-color);
    color: var(--page-deposit-withdrawal-transaction-fees-text-light);
}

.page-deposit-withdrawal-transaction-fees__cta-button--primary:hover {
    background-color: var(--page-deposit-withdrawal-transaction-fees-bg-dark);
}

.page-deposit-withdrawal-transaction-fees__cta-button--secondary {
    background-color: var(--page-deposit-withdrawal-transaction-fees-secondary-color);
    color: var(--page-deposit-withdrawal-transaction-fees-text-dark);
}

.page-deposit-withdrawal-transaction-fees__cta-button--secondary:hover {
    background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-deposit-withdrawal-transaction-fees__title {
        font-size: 2.5em;
    }

    .page-deposit-withdrawal-transaction-fees__subtitle {
        font-size: 1.1em;
    }

    .page-deposit-withdrawal-transaction-fees__section-title {
        font-size: 2em;
    }

    .page-deposit-withdrawal-transaction-fees__table th,
    .page-deposit-withdrawal-transaction-fees__table td {
        padding: 10px;
        font-size: 0.9em;
    }

    .page-deposit-withdrawal-transaction-fees__list,
    .page-deposit-withdrawal-transaction-fees p,
    .page-deposit-withdrawal-transaction-fees__faq-answer {
        font-size: 1em;
    }

    .page-deposit-withdrawal-transaction-fees__faq-question {
        font-size: 1.1em;
    }

    .page-deposit-withdrawal-transaction-fees__button-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-deposit-withdrawal-transaction-fees__title {
        font-size: 2em;
    }

    .page-deposit-withdrawal-transaction-fees__section-title {
        font-size: 1.8em;
    }

    .page-deposit-withdrawal-transaction-fees__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-deposit-withdrawal-transaction-fees__faq-item {
        padding: 15px;
    }
}