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

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

.page-payment-methods-cryptocurrency-payments__hero {
    background: linear-gradient(135deg, #00A86B, #FFD700);
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 40px;
}

.page-payment-methods-cryptocurrency-payments__hero-content {
    max-width: 600px;
}

.page-payment-methods-cryptocurrency-payments__hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff; /* Ensure high contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-cryptocurrency-payments__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #eee; /* Ensure high contrast */
}

.page-payment-methods-cryptocurrency-payments__hero-image {
    flex-shrink: 0;
}

.page-payment-methods-cryptocurrency-payments__hero-image img {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-cryptocurrency-payments__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-payment-methods-cryptocurrency-payments__section--intro {
    background-color: #f0fdf7; /* Lighter shade of primary for background */
}

.page-payment-methods-cryptocurrency-payments__section--cta {
    background-color: #00764b; /* Darker shade of primary for CTA */
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-payment-methods-cryptocurrency-payments__section--cta h2,
.page-payment-methods-cryptocurrency-payments__section--cta p {
    color: #fff;
}

.page-payment-methods-cryptocurrency-payments__section h2 {
    font-size: 2.5em;
    color: #00764b; /* Darker primary for headings */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

.page-payment-methods-cryptocurrency-payments__section h3 {
    font-size: 1.8em;
    color: #00A86B; /* Primary color for subheadings */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-payment-methods-cryptocurrency-payments__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-payment-methods-cryptocurrency-payments__btn--primary {
    background-color: #FFD700; /* Secondary color for primary action */
    color: #333; /* Dark text for contrast */
    border: 2px solid #FFD700;
}

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

.page-payment-methods-cryptocurrency-payments__btn--secondary {
    background-color: #00A86B; /* Primary color for secondary action */
    color: #fff; /* Light text for contrast */
    border: 2px solid #00A86B;
}

.page-payment-methods-cryptocurrency-payments__btn--secondary:hover {
    background-color: #00764b;
    transform: translateY(-2px);
}

.page-payment-methods-cryptocurrency-payments__btn--cta {
    background-color: #FFD700;
    color: #333;
    font-size: 1.2em;
    padding: 15px 30px;
    margin-top: 30px;
    margin-right: 15px;
}

.page-payment-methods-cryptocurrency-payments__btn--cta:hover {
    background-color: #e6c200;
}

.page-payment-methods-cryptocurrency-payments__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    font-size: 1.2em;
    padding: 15px 30px;
    margin-top: 30px;
}

.page-payment-methods-cryptocurrency-payments__btn--outline:hover {
    background-color: #FFD700;
    color: #333;
}

.page-payment-methods-cryptocurrency-payments__img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-payment-methods-cryptocurrency-payments__feature-item {
    text-align: center;
    padding: 25px;
    background-color: #fdfdfd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-payment-methods-cryptocurrency-payments__feature-item:hover {
    transform: translateY(-5px);
}

.page-payment-methods-cryptocurrency-payments__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.page-payment-methods-cryptocurrency-payments__feature-item h3 {
    color: #00764b; /* Darker primary for feature titles */
    font-size: 1.5em;
    margin-top: 0;
}

.page-payment-methods-cryptocurrency-payments__crypto-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-payment-methods-cryptocurrency-payments__crypto-list li {
    background-color: #e8f5e9; /* Light green background */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #00A86B;
    border-radius: 5px;
    font-size: 1.1em;
    color: #222;
}

.page-payment-methods-cryptocurrency-payments__crypto-list li strong {
    color: #00764b;
}

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

.page-payment-methods-cryptocurrency-payments__step-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #00A86B;
    transition: border-color 0.3s ease;
}

.page-payment-methods-cryptocurrency-payments__step-item:hover {
    border-color: #FFD700;
}

.page-payment-methods-cryptocurrency-payments__step-item h3 {
    font-size: 1.6em;
    color: #00764b;
    margin-top: 0;
}

.page-payment-methods-cryptocurrency-payments__step-item p {
    color: #555;
    font-size: 1.05em;
}

.page-payment-methods-cryptocurrency-payments__step-item a {
    color: #00A86B;
    text-decoration: underline;
}

.page-payment-methods-cryptocurrency-payments__section--tips ul,
.page-payment-methods-cryptocurrency-payments__section--tips ol {
    margin-top: 20px;
    padding-left: 25px;
    color: #444;
}

.page-payment-methods-cryptocurrency-payments__section--tips li {
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 1.05em;
}

.page-payment-methods-cryptocurrency-payments__section--tips ul li::before {
    content: '✅';
    margin-right: 10px;
}

.page-payment-methods-cryptocurrency-payments__section--tips ol li {
    list-style-type: decimal;
}

.page-payment-methods-cryptocurrency-payments__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.page-payment-methods-cryptocurrency-payments__faq-item:hover {
    background-color: #f0fdf7;
}

.page-payment-methods-cryptocurrency-payments__faq-item h3 {
    font-size: 1.4em;
    color: #00A86B;
    margin-top: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-payment-methods-cryptocurrency-payments__faq-item h3::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-payment-methods-cryptocurrency-payments__faq-item.active h3::after {
    content: '-';
    transform: rotate(180deg);
}

.page-payment-methods-cryptocurrency-payments__faq-item p {
    margin-top: 15px;
    color: #555;
    display: none;
    font-size: 1.05em;
}

.page-payment-methods-cryptocurrency-payments__faq-item.active p {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-payment-methods-cryptocurrency-payments__hero {
        flex-direction: column;
        text-align: center;
    }
    .page-payment-methods-cryptocurrency-payments__hero-image img {
        max-width: 300px;
    }
    .page-payment-methods-cryptocurrency-payments__hero h1 {
        font-size: 2.5em;
    }
    .page-payment-methods-cryptocurrency-payments__section h2 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-payment-methods-cryptocurrency-payments__hero {
        padding: 60px 0;
    }
    .page-payment-methods-cryptocurrency-payments__hero h1 {
        font-size: 2em;
    }
    .page-payment-methods-cryptocurrency-payments__hero p {
        font-size: 1em;
    }
    .page-payment-methods-cryptocurrency-payments__section {
        padding: 40px 0;
    }
    .page-payment-methods-cryptocurrency-payments__section h2 {
        font-size: 1.8em;
    }
    .page-payment-methods-cryptocurrency-payments__section h3 {
        font-size: 1.5em;
    }
    .page-payment-methods-cryptocurrency-payments__features-grid,
    .page-payment-methods-cryptocurrency-payments__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-payment-methods-cryptocurrency-payments__btn {
        width: 100%;
        margin-bottom: 15px;
    }
    .page-payment-methods-cryptocurrency-payments__btn--cta,
    .page-payment-methods-cryptocurrency-payments__btn--outline {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .page-payment-methods-cryptocurrency-payments__hero-image img {
        max-width: 250px;
    }
    .page-payment-methods-cryptocurrency-payments__hero h1 {
        font-size: 1.8em;
    }
    .page-payment-methods-cryptocurrency-payments__section h2 {
        font-size: 1.5em;
    }
    .page-payment-methods-cryptocurrency-payments__section h3 {
        font-size: 1.3em;
    }
    .page-payment-methods-cryptocurrency-payments__btn {
        font-size: 0.9em;
        padding: 10px 20px;
    }
    .page-payment-methods-cryptocurrency-payments__btn--cta,
    .page-payment-methods-cryptocurrency-payments__btn--outline {
        font-size: 1em;
        padding: 12px 25px;
    }
}