/* style/resources-payment-methods-guide.css */

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

.page-resources-payment-methods-guide__hero {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #ff8400;
}

.page-resources-payment-methods-guide__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(45deg);
    z-index: 0;
}

.page-resources-payment-methods-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-payment-methods-guide__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    color: #f0f0f0;
}

.page-resources-payment-methods-guide__hero-cta {
    display: inline-block;
    background-color: #ffc107;
    color: #333333;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-resources-payment-methods-guide__hero-cta:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-payment-methods-guide__article-content {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.page-resources-payment-methods-guide__article-body {
    max-width: 800px;
    width: 100%;
    font-size: 1.1em;
    line-height: 1.8;
    color: #333333;
}

.page-resources-payment-methods-guide__intro-text {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 5px solid #007bff;
    color: #555555;
}

.page-resources-payment-methods-guide__section-title {
    font-size: 2.2em;
    color: #007bff;
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
    font-weight: 700;
}

.page-resources-payment-methods-guide__sub-section-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-resources-payment-methods-guide__table-of-contents {
    list-style: none;
    padding: 20px 0;
    margin-bottom: 40px;
    background-color: #e9f7ff;
    border-radius: 8px;
    border: 1px solid #cceeff;
}

.page-resources-payment-methods-guide__table-of-contents li {
    margin-bottom: 10px;
    padding-left: 20px;
}

.page-resources-payment-methods-guide__table-of-contents li ul {
    list-style: disc;
    padding-left: 30px;
    margin-top: 5px;
}

.page-resources-payment-methods-guide__link-toc {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.page-resources-payment-methods-guide__link-toc:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-resources-payment-methods-guide__link-inline {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-resources-payment-methods-guide__link-inline:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-resources-payment-methods-guide__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-payment-methods-guide__feature-box {
    background-color: #f0f8ff;
    border-left: 4px solid #007bff;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.page-resources-payment-methods-guide__feature-box p {
    margin-bottom: 10px;
}

.page-resources-payment-methods-guide__feature-box strong {
    color: #0056b3;
}

.page-resources-payment-methods-guide__feature-box ol {
    list-style-type: decimal;
    padding-left: 25px;
    margin-top: 15px;
}

.page-resources-payment-methods-guide__feature-box li {
    margin-bottom: 8px;
}

.page-resources-payment-methods-guide__note {
    font-style: italic;
    color: #6c757d;
    margin: 30px 0;
    padding: 15px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.page-resources-payment-methods-guide__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.page-resources-payment-methods-guide__step-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-payment-methods-guide__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-payment-methods-guide__step-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-payment-methods-guide__list {
    list-style: disc;
    padding-left: 25px;
    margin: 30px 0;
}

.page-resources-payment-methods-guide__list li {
    margin-bottom: 10px;
}

.page-resources-payment-methods-guide__cta-button {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 40px auto;
    text-align: center;
    width: fit-content;
    display: block;
}

.page-resources-payment-methods-guide__cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-resources-payment-methods-guide__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-payment-methods-guide__faq-question {
    font-size: 1.25em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

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

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

.page-resources-payment-methods-guide__faq-answer {
    font-size: 1em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-resources-payment-methods-guide__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    margin-top: 10px;
}

.page-resources-payment-methods-guide__return-link-wrapper {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
}

.page-resources-payment-methods-guide__return-link {
    display: inline-block;
    background-color: #f8f9fa;
    color: #007bff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #007bff;
}

.page-resources-payment-methods-guide__return-link:hover {
    background-color: #007bff;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

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

    .page-resources-payment-methods-guide__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-payment-methods-guide__section-title {
        font-size: 1.8em;
    }

    .page-resources-payment-methods-guide__sub-section-title {
        font-size: 1.5em;
    }

    .page-resources-payment-methods-guide__article-body {
        font-size: 1em;
    }

    .page-resources-payment-methods-guide__hero {
        padding: 60px 0;
    }
}

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

    .page-resources-payment-methods-guide__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-payment-methods-guide__hero-cta {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-resources-payment-methods-guide__article-content {
        padding: 30px 15px;
    }

    .page-resources-payment-methods-guide__section-title {
        font-size: 1.6em;
    }

    .page-resources-payment-methods-guide__sub-section-title {
        font-size: 1.3em;
    }

    .page-resources-payment-methods-guide__steps-container {
        grid-template-columns: 1fr;
    }
}