/* style/payment-methods.css */
.page-payment-methods {
    font-family: Arial, sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark backgrounds */
    background-color: #1A202C; /* Auxiliary color as main background */
}

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

.page-payment-methods__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4250 100%); /* Darker gradient for hero */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-payment-methods__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Main color for title */
    font-weight: bold;
    line-height: 1.2;
}

.page-payment-methods__hero-title .highlight {
    color: #FFFFFF;
}

.page-payment-methods__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.page-payment-methods__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-payment-methods__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.page-payment-methods__btn--primary {
    background-color: #FFD700; /* Main color */
    color: #1A202C;
}

.page-payment-methods__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-payment-methods__btn--secondary {
    background-color: #2c3440; /* Slightly lighter dark */
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-payment-methods__btn--secondary:hover {
    background-color: #3d4655;
    transform: translateY(-2px);
}

.page-payment-methods__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-payment-methods__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-payment-methods__section {
    padding: 80px 0;
    background-color: #1A202C;
    color: #E0E0E0;
}

.page-payment-methods__section--dark {
    background-color: #2c3440;
}

.page-payment-methods__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-payment-methods__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
    color: #C0C0C0;
}

.page-payment-methods__method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-payment-methods__method-card {
    background-color: #2c3440;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-payment-methods__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: #FFD700;
    padding: 10px;
}

.page-payment-methods__method-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-payment-methods__method-description {
    font-size: 1em;
    line-height: 1.6;
    color: #C0C0C0;
}

.page-payment-methods__note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #C0C0C0;
    font-size: 0.95em;
}

.page-payment-methods__process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-payment-methods__step-card {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background-color: #FFD700;
    border-radius: 50%;
    padding: 10px;
}

.page-payment-methods__step-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-payment-methods__step-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #C0C0C0;
}

.page-payment-methods__callout {
    text-align: center;
    margin-top: 60px;
    font-size: 1.1em;
    color: #FFD700;
    font-weight: bold;
}

.page-payment-methods__detail-link-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.page-payment-methods__detail-card {
    background-color: #1A202C;
    border: 2px solid #FFD700;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__detail-card-title {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-payment-methods__detail-card-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-payment-methods__detail-card-title a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-payment-methods__detail-card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #C0C0C0;
    margin-bottom: 25px;
}

.page-payment-methods__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-payment-methods__feature-item {
    background-color: #2c3440;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background-color: #FFD700;
    border-radius: 50%;
    padding: 10px;
}

.page-payment-methods__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-payment-methods__feature-description {
    font-size: 1em;
    line-height: 1.6;
    color: #C0C0C0;
}

.page-payment-methods__cta-text {
    text-align: center;
    margin-top: 60px;
    font-size: 1.2em;
    color: #FFFFFF;
    font-weight: bold;
}

.page-payment-methods__cta-button-wrapper {
    text-align: center;
    margin-top: 30px;
}

.page-payment-methods__faq {
    background-color: #1A202C;
}

.page-payment-methods__faq-list {
    margin-top: 40px;
}

.page-payment-methods__faq-item {
    background-color: #2c3440;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    padding-right: 30px;
}

.page-payment-methods__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-payment-methods__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #C0C0C0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-payment-methods__faq-answer.active {
    max-height: 200px; /* Adjust based on content length */
    margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-payment-methods__hero-title {
        font-size: 2.5em;
    }
    .page-payment-methods__hero-description {
        font-size: 1em;
    }
    .page-payment-methods__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-payment-methods__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-payment-methods__section-title {
        font-size: 2em;
    }
    .page-payment-methods__method-grid,
    .page-payment-methods__process-steps,
    .page-payment-methods__security-features {
        grid-template-columns: 1fr;
    }
    .page-payment-methods__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-payment-methods__hero-title {
        font-size: 2em;
    }
    .page-payment-methods__hero-description {
        font-size: 0.9em;
    }
    .page-payment-methods__btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-payment-methods__section-title {
        font-size: 1.8em;
    }
    .page-payment-methods__method-card,
    .page-payment-methods__step-card,
    .page-payment-methods__feature-item,
    .page-payment-methods__detail-card {
        padding: 20px;
    }
    .page-payment-methods__faq-item {
        padding: 20px;
    }
}