/* style/payment-methods-currency-exchange.css */
.page-payment-methods-currency-exchange {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark backgrounds */
    background-color: #0A192F; /* Main background color */
}

.page-payment-methods-currency-exchange__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-payment-methods-currency-exchange__hero {
    position: relative;
    background: linear-gradient(135deg, #0A192F 0%, #2a3a5f 100%);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-payment-methods-currency-exchange__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-payment-methods-currency-exchange__hero > .page-payment-methods-currency-exchange__container {
    position: relative;
    z-index: 1;
}

.page-payment-methods-currency-exchange__title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-payment-methods-currency-exchange__subtitle {
    font-size: 1.5em;
    color: #f5e6d0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods-currency-exchange__btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    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-payment-methods-currency-exchange__btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-payment-methods-currency-exchange__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-payment-methods-currency-exchange__section:last-of-type {
    border-bottom: none;
}

.page-payment-methods-currency-exchange__heading {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-payment-methods-currency-exchange__sub-heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-payment-methods-currency-exchange__paragraph {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f5e6d0;
}

.page-payment-methods-currency-exchange__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #f5e6d0;
}

.page-payment-methods-currency-exchange__list li {
    margin-bottom: 10px;
}

.page-payment-methods-currency-exchange__link {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-payment-methods-currency-exchange__link:hover {
    color: #e6c200;
}

.page-payment-methods-currency-exchange__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-currency-exchange__cta {
    text-align: center;
    background-color: #1a2a47;
    padding: 80px 0;
}

.page-payment-methods-currency-exchange__cta .page-payment-methods-currency-exchange__heading {
    color: #FFD700;
}

.page-payment-methods-currency-exchange__button-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-payment-methods-currency-exchange__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-payment-methods-currency-exchange__btn--primary:hover {
    background-color: #e6c200;
}

.page-payment-methods-currency-exchange__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-payment-methods-currency-exchange__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-payment-methods-currency-exchange__title {
        font-size: 2.5em;
    }

    .page-payment-methods-currency-exchange__subtitle {
        font-size: 1.2em;
    }

    .page-payment-methods-currency-exchange__heading {
        font-size: 2em;
    }

    .page-payment-methods-currency-exchange__sub-heading {
        font-size: 1.5em;
    }

    .page-payment-methods-currency-exchange__paragraph,
    .page-payment-methods-currency-exchange__list {
        font-size: 1em;
    }

    .page-payment-methods-currency-exchange__button-group {
        flex-direction: column;
    }

    .page-payment-methods-currency-exchange__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-payment-methods-currency-exchange__title {
        font-size: 2em;
    }

    .page-payment-methods-currency-exchange__subtitle {
        font-size: 1em;
    }

    .page-payment-methods-currency-exchange__hero {
        padding: 60px 0;
    }

    .page-payment-methods-currency-exchange__heading {
        font-size: 1.8em;
    }
}