/* style/review-payment-methods.css */
.page-review-payment-methods {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f5e6ce; /* Lighter text for dark background */
    background-color: #0A1931; /* Main dark background */
}

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

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

.page-review-payment-methods__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric,dark_pattern,subtle_texture]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-review-payment-methods__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E6B325; /* Auxiliary color for emphasis */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-review-payment-methods__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-review-payment-methods__hero-button {
    display: inline-block;
    background-color: #E6B325; /* Auxiliary color for buttons */
    color: #0A1931; /* Dark text for auxiliary background */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(230, 179, 37, 0.4);
}

.page-review-payment-methods__hero-button:hover {
    background-color: #f0c950; /* Slightly lighter on hover */
    transform: translateY(-3px);
}

.page-review-payment-methods__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(230, 179, 37, 0.2);
}

.page-review-payment-methods__section:last-of-type {
    border-bottom: none;
}

.page-review-payment-methods__section-title {
    font-size: 2.5em;
    color: #E6B325;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-review-payment-methods__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E6B325;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-review-payment-methods__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-review-payment-methods__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-review-payment-methods__image--full-width {
    width: 100%;
}

.page-review-payment-methods__image--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.page-review-payment-methods__method-card {
    background-color: #1a2c4a; /* Slightly lighter dark background for cards */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-review-payment-methods__card-title {
    font-size: 1.8em;
    color: #E6B325;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(230, 179, 37, 0.3);
    padding-bottom: 10px;
}

.page-review-payment-methods__method-card p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #f5e6ce;
}

.page-review-payment-methods__method-card ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #f5e6ce;
}

.page-review-payment-methods__method-card li {
    margin-bottom: 8px;
    font-size: 0.95em;
}

.page-review-payment-methods__card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-review-payment-methods__call-to-action {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2em;
    font-weight: bold;
    color: #f5e6ce;
}

.page-review-payment-methods__link {
    color: #E6B325;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-review-payment-methods__link:hover {
    color: #f0c950;
    text-decoration: underline;
}

.page-review-payment-methods__tips ol {
    list-style-type: decimal;
    margin-left: 25px;
    margin-bottom: 30px;
    color: #f5e6ce;
}

.page-review-payment-methods__tips li {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-review-payment-methods__security ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 30px;
    color: #f5e6ce;
}

.page-review-payment-methods__security li {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.page-review-payment-methods__faq-question {
    font-size: 1.4em;
    color: #E6B325;
    margin-bottom: 10px;
}

.page-review-payment-methods__faq-answer {
    font-size: 1.05em;
    color: #f5e6ce;
}

.page-review-payment-methods__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-review-payment-methods__conclusion p {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 1.2em;
}

.page-review-payment-methods__button--primary {
    display: inline-block;
    background-color: #E6B325;
    color: #0A1931;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(230, 179, 37, 0.5);
}

.page-review-payment-methods__button--primary:hover {
    background-color: #f0c950;
    transform: translateY(-5px);
}

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

    .page-review-payment-methods__hero-subtitle {
        font-size: 1.2em;
    }

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

    .page-review-payment-methods__method-grid {
        grid-template-columns: 1fr;
    }

    .page-review-payment-methods__method-card {
        padding: 20px;
    }

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

    .page-review-payment-methods__section p,
    .page-review-payment-methods__tips li,
    .page-review-payment-methods__security li,
    .page-review-payment-methods__faq-answer {
        font-size: 1em;
    }

    .page-review-payment-methods__hero-button,
    .page-review-payment-methods__button--primary {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

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

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

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

    .page-review-payment-methods__hero {
        padding: 80px 0;
    }
}