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

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

.page-payment-methods-cryptocurrency__section {
    padding: 60px 0;
    text-align: center;
}

.page-payment-methods-cryptocurrency__section:nth-of-type(even) {
    background-color: #f1f3f5;
}

.page-payment-methods-cryptocurrency__section-title {
    font-size: 2.5em;
    color: #0A2463;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-payment-methods-cryptocurrency__section-intro {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Hero Section */
.page-payment-methods-cryptocurrency__hero {
    background: linear-gradient(135deg, #0A2463 0%, #2A4F8C 100%); /* Darker blue to a slightly lighter blue */
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-payment-methods-cryptocurrency__hero-content {
    max-width: 600px;
    z-index: 1;
}

.page-payment-methods-cryptocurrency__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #E3B505; /* Gold for highlight */
}

.page-payment-methods-cryptocurrency__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-payment-methods-cryptocurrency__hero-button {
    display: inline-block;
    background-color: #E3B505; /* Gold button */
    color: #0A2463; /* Dark blue text for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-payment-methods-cryptocurrency__hero-button:hover {
    background-color: #FFD700; /* Lighter gold on hover */
    transform: translateY(-3px);
}

.page-payment-methods-cryptocurrency__hero-image-wrapper {
    position: relative;
    width: 45%;
    max-width: 500px;
    z-index: 1;
}

.page-payment-methods-cryptocurrency__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.page-payment-methods-cryptocurrency__benefit-item:hover {
    transform: translateY(-10px);
}

.page-payment-methods-cryptocurrency__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-payment-methods-cryptocurrency__benefit-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-payment-methods-cryptocurrency__benefit-text {
    color: #666;
    font-size: 1em;
}

/* Supported Coins Section */
.page-payment-methods-cryptocurrency__coins-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-payment-methods-cryptocurrency__coin-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 120px;
    flex: 1 1 auto;
    max-width: 180px;
}

.page-payment-methods-cryptocurrency__coin-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.page-payment-methods-cryptocurrency__coin-name {
    font-weight: bold;
    color: #0A2463;
    font-size: 1.1em;
}

.page-payment-methods-cryptocurrency__note {
    margin-top: 30px;
    font-size: 0.9em;
    color: #777;
}

/* Deposit & Withdrawal Guides */
.page-payment-methods-cryptocurrency__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-payment-methods-cryptocurrency__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 80px;
    min-height: 150px;
}

.page-payment-methods-cryptocurrency__step-number {
    position: absolute;
    left: 20px;
    top: 30px;
    background-color: #E3B505; /* Gold */
    color: #0A2463; /* Dark blue */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

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

.page-payment-methods-cryptocurrency__step-text {
    color: #555;
    font-size: 1em;
}

.page-payment-methods-cryptocurrency__step-text a {
    color: #0A2463;
    font-weight: bold;
    text-decoration: none;
}

.page-payment-methods-cryptocurrency__step-text a:hover {
    text-decoration: underline;
}

.page-payment-methods-cryptocurrency__step-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-top: 20px;
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods-cryptocurrency__cta-block {
    background-color: #0A2463;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
    text-align: center;
}

.page-payment-methods-cryptocurrency__cta-block p {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #E3B505;
}

.page-payment-methods-cryptocurrency__cta-button {
    display: inline-block;
    background-color: #E3B505;
    color: #0A2463;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-payment-methods-cryptocurrency__cta-button:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

/* Tips Section */
.page-payment-methods-cryptocurrency__tip-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.page-payment-methods-cryptocurrency__tip-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
}

.page-payment-methods-cryptocurrency__tip-list li p {
    margin: 0;
    color: #333;
}

.page-payment-methods-cryptocurrency__tip-list li strong {
    color: #0A2463;
    margin-right: 10px;
}

.page-payment-methods-cryptocurrency__outro-text {
    margin-top: 40px;
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.page-payment-methods-cryptocurrency__faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods-cryptocurrency__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-payment-methods-cryptocurrency__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #E3B505;
    font-weight: bold;
}

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

.page-payment-methods-cryptocurrency__faq-answer {
    font-size: 1em;
    color: #555;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

/* Final CTA Section */
.page-payment-methods-cryptocurrency__final-cta {
    background-color: #0A2463;
    color: #fff;
    padding: 80px 0;
}

.page-payment-methods-cryptocurrency__final-cta .page-payment-methods-cryptocurrency__section-title {
    color: #E3B505;
}

.page-payment-methods-cryptocurrency__final-cta .page-payment-methods-cryptocurrency__section-intro {
    color: #e0e0e0;
}

.page-payment-methods-cryptocurrency__final-cta-button {
    display: inline-block;
    background-color: #E3B505;
    color: #0A2463;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
}

.page-payment-methods-cryptocurrency__final-cta-button:hover {
    background-color: #FFD700;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-payment-methods-cryptocurrency__hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }

    .page-payment-methods-cryptocurrency__hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .page-payment-methods-cryptocurrency__hero-title {
        font-size: 2.8em;
    }

    .page-payment-methods-cryptocurrency__hero-description {
        font-size: 1.1em;
    }

    .page-payment-methods-cryptocurrency__hero-image-wrapper {
        width: 80%;
        max-width: 400px;
    }

    .page-payment-methods-cryptocurrency__benefits-grid,
    .page-payment-methods-cryptocurrency__steps {
        grid-template-columns: 1fr;
    }

    .page-payment-methods-cryptocurrency__step-item {
        padding-left: 30px;
        padding-top: 80px;
        min-height: unset;
    }

    .page-payment-methods-cryptocurrency__step-number {
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
    }
}

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

    .page-payment-methods-cryptocurrency__section-intro,
    .page-payment-methods-cryptocurrency__outro-text {
        font-size: 1em;
    }

    .page-payment-methods-cryptocurrency__hero-title {
        font-size: 2.2em;
    }

    .page-payment-methods-cryptocurrency__hero-button,
    .page-payment-methods-cryptocurrency__cta-button,
    .page-payment-methods-cryptocurrency__final-cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-payment-methods-cryptocurrency__coin-item {
        min-width: 100px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .page-payment-methods-cryptocurrency__hero {
        padding: 60px 15px;
    }

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

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

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

    .page-payment-methods-cryptocurrency__cta-block p {
        font-size: 1.2em;
    }

    .page-payment-methods-cryptocurrency__tip-list li,
    .page-payment-methods-cryptocurrency__faq-item {
        padding: 15px;
    }

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