/* style/payment-methods-online-details.css */
.page-payment-methods-online-details {
    font-family: 'Arial', sans-serif;
    color: #f8f9fa; /* Light text on dark background */
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
}

.page-payment-methods-online-details__hero {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-payment-methods-online-details__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-online-details__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

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

.page-payment-methods-online-details__section {
    padding: 60px 0;
    background-color: #2a2a4a;
}

.page-payment-methods-online-details__section--alt-bg {
    background-color: #1a1a2e;
}

.page-payment-methods-online-details__section-title {
    font-size: 2.5em;
    color: #FFC107; /* Accent color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-payment-methods-online-details__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #007BFF;
    border-radius: 2px;
}

.page-payment-methods-online-details__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: center;
}

.page-payment-methods-online-details__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-payment-methods-online-details__card {
    background-color: #3a3a5e;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-online-details__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-online-details__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.1) contrast(1.1);
}

.page-payment-methods-online-details__card-title {
    font-size: 1.8em;
    color: #FFC107;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-payment-methods-online-details__card-text {
    font-size: 1em;
    color: #cccccc;
}

.page-payment-methods-online-details__card--single {
    max-width: 700px;
    margin: 0 auto;
}

.page-payment-methods-online-details__step-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-payment-methods-online-details__step-list li {
    background-color: #3a3a5e;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    font-size: 1.1em;
    color: #e0e0e0;
    position: relative;
    padding-left: 60px;
}

.page-payment-methods-online-details__step-list li:last-child {
    margin-bottom: 0;
}

.page-payment-methods-online-details__step-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #007BFF;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-payment-methods-online-details__step-title {
    color: #FFC107;
    margin-bottom: 5px;
    display: block;
}

.page-payment-methods-online-details__step-list li a {
    color: #FFC107;
    text-decoration: none;
    font-weight: bold;
}

.page-payment-methods-online-details__step-list li a:hover {
    text-decoration: underline;
}

.page-payment-methods-online-details__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-payment-methods-online-details__main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-online-details__list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-payment-methods-online-details__list li {
    background-color: #3a3a5e;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #007BFF;
    border-radius: 8px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-payment-methods-online-details__list-item-title {
    color: #FFC107;
    margin-bottom: 5px;
    display: block;
}

.page-payment-methods-online-details__faq-item {
    background-color: #3a3a5e;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-online-details__faq-question {
    font-size: 1.4em;
    color: #007BFF;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-payment-methods-online-details__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFC107;
    transition: transform 0.3s ease;
}

.page-payment-methods-online-details__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-payment-methods-online-details__faq-answer {
    font-size: 1.1em;
    color: #cccccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-payment-methods-online-details__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-payment-methods-online-details__cta-section {
    background: linear-gradient(90deg, #007BFF, #FFC107);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-payment-methods-online-details__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-online-details__cta-text {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

.page-payment-methods-online-details__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-payment-methods-online-details__button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-online-details__button--primary {
    background-color: #007BFF;
    color: #ffffff;
    border: 2px solid #007BFF;
}

.page-payment-methods-online-details__button--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-online-details__button--secondary {
    background-color: #FFC107;
    color: #1a1a2e;
    border: 2px solid #FFC107;
}

.page-payment-methods-online-details__button--secondary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-payment-methods-online-details__hero-title {
        font-size: 2.5em;
    }
    .page-payment-methods-online-details__hero-subtitle,
    .page-payment-methods-online-details__cta-text {
        font-size: 1.1em;
    }
    .page-payment-methods-online-details__section-title {
        font-size: 2em;
    }
    .page-payment-methods-online-details__grid {
        grid-template-columns: 1fr;
    }
    .page-payment-methods-online-details__card {
        padding: 25px;
    }
    .page-payment-methods-online-details__card-title {
        font-size: 1.5em;
    }
    .page-payment-methods-online-details__step-list li {
        padding: 20px 20px 20px 50px;
        font-size: 1em;
    }
    .page-payment-methods-online-details__step-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
        left: 15px;
    }
    .page-payment-methods-online-details__faq-question {
        font-size: 1.2em;
    }
    .page-payment-methods-online-details__faq-answer {
        font-size: 1em;
    }
    .page-payment-methods-online-details__cta-title {
        font-size: 2.5em;
    }
    .page-payment-methods-online-details__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-payment-methods-online-details__hero-title {
        font-size: 2em;
    }
    .page-payment-methods-online-details__section-title {
        font-size: 1.8em;
    }
    .page-payment-methods-online-details__cta-title {
        font-size: 2em;
    }
    .page-payment-methods-online-details__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-payment-methods-online-details__button {
        width: 80%;
        max-width: 300px;
    }
}