:root {
    --primary-color: #DAA520;
    --secondary-color: #1E1E1E;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f1f3f5;
    --background-card: #ffffff;
    --border-color: #e0e0e0;
}

.page-payment-methods-cryptocurrency {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-dark); /* Default text color for light backgrounds */
    background-color: var(--background-light);
}

/* Top padding for fixed header */
.page-payment-methods-cryptocurrency__hero-banner {
    padding-top: 180px; /* Desktop padding */
}

@media (max-width: 768px) {
    .page-payment-methods-cryptocurrency__hero-banner {
        padding-top: 140px; /* Mobile padding */
    }
}

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

.page-payment-methods-cryptocurrency__hero-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color-light);
    text-align: center;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.page-payment-methods-cryptocurrency__main-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color-light);
}

.page-payment-methods-cryptocurrency__main-title a {
    color: var(--text-color-light);
    text-decoration: none;
}

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

.page-payment-methods-cryptocurrency__hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods-cryptocurrency__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-cryptocurrency__cta-button:hover {
    background: #FFD700; /* Lighter gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-cryptocurrency__cta-button--large {
    padding: 18px 50px;
    font-size: 20px;
}

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

.page-payment-methods-cryptocurrency__introduction {
    background-color: var(--background-card);
}

.page-payment-methods-cryptocurrency__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-color-dark);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-payment-methods-cryptocurrency__section-title a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.page-payment-methods-cryptocurrency__introduction p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.page-payment-methods-cryptocurrency__introduction p strong {
    color: var(--primary-color);
}

.page-payment-methods-cryptocurrency__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-width: 1000px;
}

.page-payment-methods-cryptocurrency__benefits {
    background-color: var(--background-light);
}

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

.page-payment-methods-cryptocurrency__card {
    background: var(--background-card);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-cryptocurrency__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-cryptocurrency__card-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-payment-methods-cryptocurrency__card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color-dark);
}

.page-payment-methods-cryptocurrency__card-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 20px auto 0;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-payment-methods-cryptocurrency__how-to {
    background-color: var(--background-card);
}

.page-payment-methods-cryptocurrency__subtitle {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-color-dark);
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
}

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

.page-payment-methods-cryptocurrency__list li {
    background: var(--background-light);
    border-left: 5px solid var(--primary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-color-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-cryptocurrency__list li strong {
    color: var(--secondary-color);
}

.page-payment-methods-cryptocurrency__list li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

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

.page-payment-methods-cryptocurrency__how-to .page-payment-methods-cryptocurrency__cta-button {
    margin-top: 20px;
    margin-bottom: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods-cryptocurrency__popular-cryptos {
    background-color: var(--background-light);
}

.page-payment-methods-cryptocurrency__crypto-card {
    background: var(--background-card);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-cryptocurrency__crypto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-payment-methods-cryptocurrency__crypto-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-payment-methods-cryptocurrency__crypto-name {
    font-size: 22px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-payment-methods-cryptocurrency__crypto-card p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color-dark);
}

.page-payment-methods-cryptocurrency__security-tips {
    background-color: var(--background-card);
}

.page-payment-methods-cryptocurrency__security-tips .page-payment-methods-cryptocurrency__list li {
    border-left-color: var(--secondary-color);
}

.page-payment-methods-cryptocurrency__security-tips .page-payment-methods-cryptocurrency__list li a {
    color: var(--secondary-color);
}

.page-payment-methods-cryptocurrency__faq-section {
    background-color: var(--background-light);
    padding-bottom: 80px;
}

.page-payment-methods-cryptocurrency__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.page-payment-methods-cryptocurrency__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-payment-methods-cryptocurrency__faq-item.active .page-payment-methods-cryptocurrency__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

.page-payment-methods-cryptocurrency__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-payment-methods-cryptocurrency__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-payment-methods-cryptocurrency__faq-question:active {
    background: #eeeeee;
}

.page-payment-methods-cryptocurrency__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--text-color-dark);
}

.page-payment-methods-cryptocurrency__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-payment-methods-cryptocurrency__faq-item.active .page-payment-methods-cryptocurrency__faq-toggle {
    color: var(--secondary-color);
    transform: rotate(45deg); /* Change + to X */
}

.page-payment-methods-cryptocurrency__conclusion {
    background: linear-gradient(135deg, var(--secondary-color), #333333);
    color: var(--text-color-light);
    text-align: center;
    padding-top: 80px;
}

.page-payment-methods-cryptocurrency__conclusion .page-payment-methods-cryptocurrency__section-title {
    color: var(--text-color-light);
}

.page-payment-methods-cryptocurrency__conclusion .page-payment-methods-cryptocurrency__section-title a {
    color: var(--primary-color);
}

.page-payment-methods-cryptocurrency__conclusion p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-payment-methods-cryptocurrency__main-title {
        font-size: 40px;
    }
    .page-payment-methods-cryptocurrency__hero-description {
        font-size: 18px;
    }
    .page-payment-methods-cryptocurrency__section-title {
        font-size: 30px;
    }
    .page-payment-methods-cryptocurrency__card-title {
        font-size: 22px;
    }
    .page-payment-methods-cryptocurrency__subtitle {
        font-size: 24px;
    }
    .page-payment-methods-cryptocurrency__list li {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-payment-methods-cryptocurrency__hero-banner {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    .page-payment-methods-cryptocurrency__main-title {
        font-size: 32px;
    }
    .page-payment-methods-cryptocurrency__hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-payment-methods-cryptocurrency__cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-payment-methods-cryptocurrency__cta-button--large {
        padding: 15px 40px;
        font-size: 18px;
    }
    .page-payment-methods-cryptocurrency__section {
        padding: 40px 0;
    }
    .page-payment-methods-cryptocurrency__section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .page-payment-methods-cryptocurrency__introduction p {
        font-size: 16px;
    }
    .page-payment-methods-cryptocurrency__grid {
        grid-template-columns: 1fr;
    }
    .page-payment-methods-cryptocurrency__card {
        padding: 25px;
    }
    .page-payment-methods-cryptocurrency__card-title {
        font-size: 20px;
    }
    .page-payment-methods-cryptocurrency__subtitle {
        font-size: 22px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-payment-methods-cryptocurrency__list li {
        font-size: 15px;
        padding: 12px 15px;
    }
    .page-payment-methods-cryptocurrency__how-to .page-payment-methods-cryptocurrency__cta-button {
        margin-bottom: 30px;
    }
    .page-payment-methods-cryptocurrency__crypto-logo {
        width: 80px;
        height: 80px;
    }
    .page-payment-methods-cryptocurrency__crypto-name {
        font-size: 20px;
    }
    .page-payment-methods-cryptocurrency__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-payment-methods-cryptocurrency__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-payment-methods-cryptocurrency__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-payment-methods-cryptocurrency__faq-answer {
        padding: 0 15px;
    }
    .page-payment-methods-cryptocurrency__faq-item.active .page-payment-methods-cryptocurrency__faq-answer {
        padding: 15px !important;
    }
    .page-payment-methods-cryptocurrency__conclusion p {
        font-size: 16px;
    }
}