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

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

.page-payment-methods__hero {
    background: linear-gradient(135deg, #0A2463 0%, #2a4a8c 100%); /* Dark blue gradient */
    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, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

.page-payment-methods__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.page-payment-methods__hero .page-payment-methods__container {
    position: relative;
    z-index: 1;
}

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

.page-payment-methods__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.page-payment-methods__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.page-payment-methods__btn--primary {
    background-color: #FFD700; /* Auxiliary color */
    color: #0A2463; /* Dark blue for contrast */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-payment-methods__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-payment-methods__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Auxiliary color */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-payment-methods__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-payment-methods__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
    margin-top: 15px;
}

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

.page-payment-methods__btn--center {
    display: block;
    margin: 30px auto 0 auto;
    width: fit-content;
}

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

.page-payment-methods__section--dark {
    background-color: #0A2463;
    color: #fff;
}

.page-payment-methods__section--dark .page-payment-methods__section-title,
.page-payment-methods__section--dark .page-payment-methods__section-description {
    color: #fff;
}

.page-payment-methods__section--faq {
    background-color: #f0f2f5;
}

.page-payment-methods__section--cta {
    background: linear-gradient(45deg, #0A2463, #3a5796);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-payment-methods__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.page-payment-methods__section--dark .page-payment-methods__section-description {
    color: #e0e0e0;
}

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

.page-payment-methods__card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-payment-methods__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.page-payment-methods__card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    object-fit: contain;
}

.page-payment-methods__card-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-payment-methods__card-text {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-payment-methods__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    color: #444;
}

.page-payment-methods__list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    font-size: 0.9em;
}

.page-payment-methods__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    color: #FFD700;
}

.page-payment-methods__process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-payment-methods__process-step {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    flex: 1 1 220px;
    max-width: 280px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-payment-methods__step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: invert(100%) brightness(1.5);
}

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

.page-payment-methods__step-text {
    font-size: 0.9em;
    color: #e0e0e0;
}

.page-payment-methods__note {
    text-align: center;
    margin-top: 40px;
    font-size: 1em;
    color: #FFD700;
    background-color: rgba(255, 215, 0, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px dashed #FFD700;
}

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

.page-payment-methods__feature-item {
    background-color: #fdfdfd;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    border-top: 5px solid #0A2463;
}

.page-payment-methods__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

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

.page-payment-methods__feature-text {
    color: #666;
    font-size: 0.95em;
}

.page-payment-methods__faq-accordion {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods__faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-payment-methods__faq-question {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1em;
    font-weight: bold;
    color: #0A2463;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-payment-methods__faq-question:hover {
    background-color: #f0f2f5;
}

.page-payment-methods__faq-question::after {
    content: '▼';
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

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

.page-payment-methods__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fdfdfd;
    color: #555;
}

.page-payment-methods__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    padding: 15px 25px 20px 25px;
}

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

.page-payment-methods__related-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    padding: 25px;
    border-left: 5px solid #FFD700;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-payment-methods__related-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-payment-methods__related-title a {
    color: #0A2463;
    text-decoration: none;
}

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

.page-payment-methods__related-description {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-payment-methods__cta-content {
    max-width: 900px;
}

.page-payment-methods__cta-content .page-payment-methods__section-title {
    color: #FFD700;
    margin-bottom: 15px;
}

.page-payment-methods__cta-content .page-payment-methods__section-description {
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-payment-methods__cta-content .page-payment-methods__cta-group {
    gap: 25px;
}

.highlight-keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-payment-methods__title {
        font-size: 2.5em;
    }
    .page-payment-methods__section-title {
        font-size: 2em;
    }
    .page-payment-methods__grid, .page-payment-methods__process-flow, .page-payment-methods__security-features, .page-payment-methods__related-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-payment-methods__hero {
        padding: 60px 0;
    }
    .page-payment-methods__title {
        font-size: 2em;
    }
    .page-payment-methods__subtitle {
        font-size: 1em;
    }
    .page-payment-methods__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-payment-methods__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-payment-methods__section {
        padding: 40px 0;
    }
    .page-payment-methods__section-title {
        font-size: 1.8em;
    }
    .page-payment-methods__section-description {
        font-size: 0.95em;
    }
    .page-payment-methods__card, .page-payment-methods__process-step, .page-payment-methods__feature-item, .page-payment-methods__related-item {
        padding: 20px;
    }
    .page-payment-methods__step-icon, .page-payment-methods__feature-icon {
        width: 50px;
        height: 50px;
    }
    .page-payment-methods__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-payment-methods__faq-answer.active {
        padding: 10px 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-payment-methods__title {
        font-size: 1.8em;
    }
    .page-payment-methods__section-title {
        font-size: 1.5em;
    }
    .page-payment-methods__btn {
        width: 100%;
        max-width: 280px;
        font-size: 1em;
    }
    .page-payment-methods__card-title {
        font-size: 1.4em;
    }
    .page-payment-methods__step-title {
        font-size: 1.2em;
    }
    .page-payment-methods__feature-title {
        font-size: 1.3em;
    }
}