/* style/payment-methods.css */
.page-payment-methods {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-payment-methods__hero {
    background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-payment-methods__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-payment-methods__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.page-payment-methods__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-payment-methods__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-payment-methods__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-payment-methods__btn--primary {
    background-color: #8B0000;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-payment-methods__btn--primary:hover {
    background-color: #FFD700;
    color: #8B0000;
    border-color: #8B0000;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__btn--secondary {
    background-color: #FFD700;
    color: #8B0000;
    border: 2px solid #8B0000;
}

.page-payment-methods__btn--secondary:hover {
    background-color: #8B0000;
    color: #FFD700;
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__btn--accent {
    background-color: #b39700;
    color: #fff;
    border: 2px solid #b39700;
}

.page-payment-methods__btn--accent:hover {
    background-color: #7a6500;
    color: #fff;
    border-color: #7a6500;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__btn--link {
    background: none;
    border: none;
    color: #8B0000;
    padding: 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-payment-methods__btn--link:hover {
    color: #FFD700;
    text-decoration: none;
}

.page-payment-methods__section {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.page-payment-methods__section:nth-of-type(even) {
    background-color: #f2f2f2;
}

.page-payment-methods__section-title {
    font-size: 2.5em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-payment-methods__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-payment-methods__sub-title {
    font-size: 1.8em;
    color: #8B0000;
    margin-top: 40px;
    margin-bottom: 20px;
}

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

.page-payment-methods__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: #FFD700;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.page-payment-methods__feature-text {
    color: #666;
}

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

.page-payment-methods__method-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__method-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-payment-methods__method-title {
    font-size: 1.6em;
    color: #8B0000;
    margin-bottom: 15px;
}

.page-payment-methods__method-text {
    color: #666;
    margin-bottom: 20px;
}

.page-payment-methods__method-steps {
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.page-payment-methods__method-steps li {
    margin-bottom: 10px;
}

.page-payment-methods__method-steps li strong {
    color: #8B0000;
}

.page-payment-methods__method-info {
    font-style: italic;
    color: #777;
    font-size: 0.95em;
    border-top: 1px dashed #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.page-payment-methods__cta-block {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-payment-methods__cta-block p {
    font-size: 1.3em;
    color: #8B0000;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-payment-methods__withdraw .page-payment-methods__steps {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
    color: #555;
}

.page-payment-methods__withdraw .page-payment-methods__steps li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-payment-methods__withdraw .page-payment-methods__steps li strong {
    color: #8B0000;
}

.page-payment-methods__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 30px;
    color: #555;
}

.page-payment-methods__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-payment-methods__list li strong {
    color: #8B0000;
}

.page-payment-methods__faq-items {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.page-payment-methods__faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-payment-methods__faq-question {
    font-size: 1.3em;
    color: #8B0000;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-payment-methods__faq-question::after {
    content: '+';
    font-size: 1.5em;
    margin-left: 10px;
    color: #FFD700;
}

.page-payment-methods__faq-question.active::after {
    content: '-';
}

.page-payment-methods__faq-answer {
    color: #666;
    font-size: 1.05em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
}

.page-payment-methods__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-payment-methods__cta-final {
    background-color: #8B0000;
    color: #fff;
    text-align: center;
}

.page-payment-methods__cta-final .page-payment-methods__section-title {
    color: #FFD700;
}

.page-payment-methods__cta-final .page-payment-methods__section-title::after {
    background-color: #fff;
}

.page-payment-methods__cta-final .page-payment-methods__section-description {
    color: #f0f0f0;
}

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

.page-payment-methods__detail-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.page-payment-methods__detail-title a {
    color: #8B0000;
    text-decoration: none;
}

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

.page-payment-methods__detail-description {
    color: #666;
    margin-bottom: 20px;
}

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

    .page-payment-methods__hero-description {
        font-size: 1em;
    }

    .page-payment-methods__section-title {
        font-size: 2em;
    }

    .page-payment-methods__sub-title {
        font-size: 1.5em;
    }

    .page-payment-methods__features,
    .page-payment-methods__deposit .page-payment-methods__method-cards,
    .page-payment-methods__detail-list {
        grid-template-columns: 1fr;
    }

    .page-payment-methods__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-payment-methods__hero {
        padding: 60px 0;
    }

    .page-payment-methods__hero-title {
        font-size: 2em;
    }

    .page-payment-methods__section {
        padding: 40px 0;
    }

    .page-payment-methods__section-title {
        font-size: 1.8em;
    }

    .page-payment-methods__faq-question {
        font-size: 1.1em;
    }
}