.page-deposit-withdrawal-transaction-fees {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0F1F30; /* Darker background to contrast with main sections */
    line-height: 1.6;
}

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

.page-deposit-withdrawal-transaction-fees__hero {
    background: linear-gradient(135deg, #1A2E44 0%, #0F1F30 100%); /* Dark blue gradient */
    color: #FFFFFF; /* White text for hero */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-deposit-withdrawal-transaction-fees__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-deposit-withdrawal-transaction-fees__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
}

.page-deposit-withdrawal-transaction-fees__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #D3D3D3;
}

.page-deposit-withdrawal-transaction-fees__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2E44; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-deposit-withdrawal-transaction-fees__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.1;
    z-index: 0;
}

.page-deposit-withdrawal-transaction-fees__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

.page-deposit-withdrawal-transaction-fees__section {
    padding: 60px 0;
    background-color: #1A2E44; /* Main section background */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-transaction-fees__section:nth-of-type(even) {
    background-color: #122436; /* Slightly different shade for alternating sections */
}

.page-deposit-withdrawal-transaction-fees__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

.page-deposit-withdrawal-transaction-fees__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #D3D3D3;
    text-align: justify;
}

.page-deposit-withdrawal-transaction-fees__overview h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.page-deposit-withdrawal-transaction-fees__overview h3 + p {
    text-align: center;
}

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

.page-deposit-withdrawal-transaction-fees__feature-item {
    flex: 1 1 300px;
    background-color: #0F1F30;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-deposit-withdrawal-transaction-fees__feature-item:hover {
    transform: translateY(-10px);
}

.page-deposit-withdrawal-transaction-fees__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-deposit-withdrawal-transaction-fees__feature-item h3 {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-transaction-fees__feature-item p {
    font-size: 1em;
    color: #B0B0B0;
}

.page-deposit-withdrawal-transaction-fees__deposit-fees h3,
.page-deposit-withdrawal-transaction-fees__withdrawal-fees h3,
.page-deposit-withdrawal-transaction-fees__bonus h3,
.page-deposit-withdrawal-transaction-fees__factors h3,
.page-deposit-withdrawal-transaction-fees__safety-tips h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 35px;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 10px;
    border-left: 5px solid #FFD700;
}

.page-deposit-withdrawal-transaction-fees__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-transaction-fees__list li {
    background-color: #122436;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    color: #D3D3D3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-deposit-withdrawal-transaction-fees__list li::before {
    content: '✔️'; /* Checkmark icon */
    color: #FFD700;
    margin-right: 15px;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.page-deposit-withdrawal-transaction-fees__list ol li::before {
    content: counter(list-item) ". ";
    counter-increment: list-item;
    color: #FFD700;
    font-weight: bold;
    margin-right: 10px;
}

.page-deposit-withdrawal-transaction-fees__note {
    font-style: italic;
    color: #B0B0B0;
    margin-top: 25px;
    padding: 15px;
    background-color: #0F1F30;
    border-left: 4px solid #FFD700;
    border-radius: 5px;
}

.page-deposit-withdrawal-transaction-fees__cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding: 30px;
    background-color: #0F1F30;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.page-deposit-withdrawal-transaction-fees__button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.15em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.page-deposit-withdrawal-transaction-fees__button--primary {
    background-color: #FFD700; /* Gold */
    color: #1A2E44; /* Dark blue */
}

.page-deposit-withdrawal-transaction-fees__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
}

.page-deposit-withdrawal-transaction-fees__button--secondary {
    background-color: #364F6B; /* A lighter shade of primary for secondary action */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-deposit-withdrawal-transaction-fees__button--secondary:hover {
    background-color: #4D6A87;
    transform: translateY(-5px);
}

.page-deposit-withdrawal-transaction-fees__button--contact {
    background-color: #FFD700;
    color: #1A2E44;
    border: 2px solid #FFD700;
}

.page-deposit-withdrawal-transaction-fees__button--contact:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
}

.page-deposit-withdrawal-transaction-fees__image-inline {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-deposit-withdrawal-transaction-fees__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-deposit-withdrawal-transaction-fees__faq-item {
    background-color: #122436;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-transaction-fees__faq-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-deposit-withdrawal-transaction-fees__faq-item h3::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-deposit-withdrawal-transaction-fees__faq-item.active h3::after {
    content: '-';
    transform: rotate(180deg);
}

.page-deposit-withdrawal-transaction-fees__faq-item p {
    color: #D3D3D3;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-deposit-withdrawal-transaction-fees__faq-item.active p {
    max-height: 200px; /* Adjust as needed for content */
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-deposit-withdrawal-transaction-fees__hero-title {
        font-size: 2.2em;
    }
    .page-deposit-withdrawal-transaction-fees__section-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal-transaction-fees__deposit-fees h3,
    .page-deposit-withdrawal-transaction-fees__withdrawal-fees h3,
    .page-deposit-withdrawal-transaction-fees__bonus h3,
    .page-deposit-withdrawal-transaction-fees__factors h3,
    .page-deposit-withdrawal-transaction-fees__safety-tips h3 {
        font-size: 1.5em;
    }
    .page-deposit-withdrawal-transaction-fees__features {
        flex-direction: column;
        align-items: center;
    }
    .page-deposit-withdrawal-transaction-fees__feature-item {
        flex: 1 1 90%;
    }
    .page-deposit-withdrawal-transaction-fees__cta-wrapper {
        flex-direction: column;
    }
    .page-deposit-withdrawal-transaction-fees__image-inline {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .page-deposit-withdrawal-transaction-fees__hero {
        padding: 60px 15px;
    }
    .page-deposit-withdrawal-transaction-fees__hero-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal-transaction-fees__hero-description {
        font-size: 1em;
    }
    .page-deposit-withdrawal-transaction-fees__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-deposit-withdrawal-transaction-fees__section {
        padding: 40px 0;
    }
    .page-deposit-withdrawal-transaction-fees__section-title {
        font-size: 1.6em;
    }
    .page-deposit-withdrawal-transaction-fees__deposit-fees h3,
    .page-deposit-withdrawal-transaction-fees__withdrawal-fees h3,
    .page-deposit-withdrawal-transaction-fees__bonus h3,
    .page-deposit-withdrawal-transaction-fees__factors h3,
    .page-deposit-withdrawal-transaction-fees__safety-tips h3 {
        font-size: 1.3em;
        padding-left: 0;
        border-left: none;
        text-align: center;
    }
    .page-deposit-withdrawal-transaction-fees__list li {
        padding: 12px 15px;
        font-size: 0.95em;
    }
    .page-deposit-withdrawal-transaction-fees__button {
        padding: 15px 25px;
        font-size: 1em;
    }
    .page-deposit-withdrawal-transaction-fees__faq-item h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-deposit-withdrawal-transaction-fees__hero {
        padding: 40px 10px;
    }
    .page-deposit-withdrawal-transaction-fees__hero-title {
        font-size: 1.5em;
    }
    .page-deposit-withdrawal-transaction-fees__section-title {
        font-size: 1.4em;
    }
    .page-deposit-withdrawal-transaction-fees__text-block {
        font-size: 0.95em;
    }
    .page-deposit-withdrawal-transaction-fees__deposit-fees h3,
    .page-deposit-withdrawal-transaction-fees__withdrawal-fees h3,
    .page-deposit-withdrawal-transaction-fees__bonus h3,
    .page-deposit-withdrawal-transaction-fees__factors h3,
    .page-deposit-withdrawal-transaction-fees__safety-tips h3 {
        font-size: 1.2em;
    }
    .page-deposit-withdrawal-transaction-fees__cta-wrapper {
        padding: 20px;
    }
    .page-deposit-withdrawal-transaction-fees__button {
        width: 100%;
        max-width: 280px;
    }
    .page-deposit-withdrawal-transaction-fees__image-inline {
        max-width: 100px;
    }
    .page-deposit-withdrawal-transaction-fees__faq-item h3 {
        font-size: 1.1em;
    }
}