/* style/payment-methods-cryptocurrency.css */
.page-payment-methods-cryptocurrency {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-payment-methods-cryptocurrency__hero {
    background: linear-gradient(135deg, #1A1A2E, #3a3a5e);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-payment-methods-cryptocurrency__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B95B;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    line-height: 1.2;
}

.page-payment-methods-cryptocurrency__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    opacity: 0.9;
}

.page-payment-methods-cryptocurrency__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

.page-payment-methods-cryptocurrency__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
}

.page-payment-methods-cryptocurrency__hero > .page-payment-methods-cryptocurrency__container {
    position: relative;
    z-index: 1;
}

.page-payment-methods-cryptocurrency__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.page-payment-methods-cryptocurrency__btn--primary {
    background-color: #E0B95B;
    color: #1A1A2E;
}

.page-payment-methods-cryptocurrency__btn--primary:hover {
    background-color: #ffda6a;
    transform: translateY(-3px);
}

.page-payment-methods-cryptocurrency__btn--secondary {
    background-color: #1A1A2E;
    color: #E0B95B;
    border: 2px solid #E0B95B;
}

.page-payment-methods-cryptocurrency__btn--secondary:hover {
    background-color: #2e2e4a;
    transform: translateY(-3px);
}

.page-payment-methods-cryptocurrency__section {
    padding: 60px 0;
    background-color: #fff;
    color: #1A1A2E;
}

.page-payment-methods-cryptocurrency__section--alt-bg {
    background-color: #f0f2f5;
}

.page-payment-methods-cryptocurrency__section-title {
    font-size: 2.5em;
    color: #1A1A2E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

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

.page-payment-methods-cryptocurrency__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #E0B95B;
}

.page-payment-methods-cryptocurrency__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-cryptocurrency__grid-item-title {
    font-size: 1.6em;
    color: #1A1A2E;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-payment-methods-cryptocurrency__crypto-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-payment-methods-cryptocurrency__crypto-item {
    background-color: #1A1A2E;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.page-payment-methods-cryptocurrency__crypto-item:hover {
    background-color: #2e2e4a;
}

.page-payment-methods-cryptocurrency__crypto-item-title {
    font-size: 1.5em;
    color: #E0B95B;
    margin-bottom: 10px;
}

.page-payment-methods-cryptocurrency__steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-top: 30px;
}

.page-payment-methods-cryptocurrency__steps li {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 80px;
}

.page-payment-methods-cryptocurrency__steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 30px;
    top: 30px;
    background-color: #E0B95B;
    color: #1A1A2E;
    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.8em;
    color: #1A1A2E;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-payment-methods-cryptocurrency__warning {
    color: #d9534f;
    font-weight: bold;
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #fdf0f0;
    border-left: 5px solid #d9534f;
    border-radius: 5px;
}

.page-payment-methods-cryptocurrency__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

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

.page-payment-methods-cryptocurrency__list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #E0B95B;
}

.page-payment-methods-cryptocurrency__list-item-title {
    font-size: 1.4em;
    color: #1A1A2E;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-payment-methods-cryptocurrency__faq {
    margin-top: 30px;
}

.page-payment-methods-cryptocurrency__faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.page-payment-methods-cryptocurrency__faq-question {
    font-size: 1.5em;
    color: #1A1A2E;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    background-color: #fdfdfd;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.page-payment-methods-cryptocurrency__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #E0B95B;
    transition: transform 0.3s ease;
}

.page-payment-methods-cryptocurrency__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-payment-methods-cryptocurrency__faq-answer {
    padding: 0 25px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #555;
}

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

.page-payment-methods-cryptocurrency__section--final-cta {
    background: linear-gradient(135deg, #1A1A2E, #3a3a5e);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-payment-methods-cryptocurrency__section--final-cta .page-payment-methods-cryptocurrency__section-title {
    color: #E0B95B;
}

.page-payment-methods-cryptocurrency__section--final-cta .page-payment-methods-cryptocurrency__section-title::after {
    background-color: #E0B95B;
}

.page-payment-methods-cryptocurrency__section--final-cta p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.page-payment-methods-cryptocurrency__final-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.page-payment-methods-cryptocurrency__final-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-payment-methods-cryptocurrency__section--final-cta > .page-payment-methods-cryptocurrency__container {
    position: relative;
    z-index: 1;
}

.page-payment-methods-cryptocurrency__image-full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-cryptocurrency__link-inline {
    color: #1A1A2E;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-payment-methods-cryptocurrency__link-inline:hover {
    color: #E0B95B;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-payment-methods-cryptocurrency__hero-title {
        font-size: 2.8em;
    }
    .page-payment-methods-cryptocurrency__hero-subtitle {
        font-size: 1.1em;
    }
    .page-payment-methods-cryptocurrency__section-title {
        font-size: 2em;
    }
    .page-payment-methods-cryptocurrency__grid {
        grid-template-columns: 1fr;
    }
    .page-payment-methods-cryptocurrency__crypto-list {
        grid-template-columns: 1fr;
    }
    .page-payment-methods-cryptocurrency__steps li {
        padding-left: 60px;
    }
    .page-payment-methods-cryptocurrency__steps li::before {
        left: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }
    .page-payment-methods-cryptocurrency__step-title {
        font-size: 1.5em;
    }
    .page-payment-methods-cryptocurrency__faq-question {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-payment-methods-cryptocurrency__hero {
        padding: 60px 0;
    }
    .page-payment-methods-cryptocurrency__hero-title {
        font-size: 2.2em;
    }
    .page-payment-methods-cryptocurrency__hero-subtitle {
        font-size: 1em;
    }
    .page-payment-methods-cryptocurrency__section {
        padding: 40px 0;
    }
    .page-payment-methods-cryptocurrency__section-title {
        font-size: 1.8em;
    }
    .page-payment-methods-cryptocurrency__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-payment-methods-cryptocurrency__image-full-width {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .page-payment-methods-cryptocurrency__hero {
        padding: 40px 0;
    }
    .page-payment-methods-cryptocurrency__hero-title {
        font-size: 1.8em;
    }
    .page-payment-methods-cryptocurrency__hero-subtitle {
        font-size: 0.9em;
    }
    .page-payment-methods-cryptocurrency__section-title {
        font-size: 1.5em;
    }
    .page-payment-methods-cryptocurrency__grid-item-title,
    .page-payment-methods-cryptocurrency__crypto-item-title,
    .page-payment-methods-cryptocurrency__step-title,
    .page-payment-methods-cryptocurrency__list-item-title,
    .page-payment-methods-cryptocurrency__faq-question {
        font-size: 1.2em;
    }
    .page-payment-methods-cryptocurrency__steps li {
        padding: 20px 20px 20px 50px;
    }
    .page-payment-methods-cryptocurrency__steps li::before {
        left: 15px;
        top: 20px;
        width: 30px;
        height: 30px;
        font-size: 1.1em;
    }
    .page-payment-methods-cryptocurrency__image-full-width {
        max-height: 200px;
    }
}