.payment-methods-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.hero-section {
    background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.95;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.intro-section {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #064d31;
    margin: 0 0 1rem 0;
}

.section-description {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.payment-method-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid #0ea5e9;
}

.logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.method-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.card-body {
    padding: 2rem;
}

.method-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.method-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #475569;
}

.feature-item i {
    color: #0ea5e9;
    font-size: 1.1rem;
}

.method-steps {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #0ea5e9;
}

.method-steps h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 1rem 0;
}

.method-steps ol {
    margin: 0;
    padding-left: 1.5rem;
    color: #475569;
}

.method-steps li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.security-section {
    background: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.security-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.security-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #064d31;
    margin: 0 0 1rem 0;
}

.security-section > p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.security-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.security-item i {
    font-size: 2rem;
    color: #10b981;
}

.security-item span {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
}

.faq-section {
    background: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #064d31;
    margin: 0 0 2rem 0;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border-left: 4px solid #00a86b;
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #064d31;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h4 i {
    color: #00a86b;
}

.faq-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1.5rem;
    }

    .hero-icon {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .payment-methods-grid {
        gap: 1.5rem;
    }

    .card-header {
        padding: 1.5rem;
    }

    .logo-container {
        width: 80px;
        height: 80px;
    }

    .method-name {
        font-size: 1.5rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .method-features {
        grid-template-columns: 1fr;
    }

    .security-section {
        padding: 2rem 1.5rem;
    }

    .security-features {
        gap: 2rem;
    }

    .faq-section {
        padding: 2rem 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 2.5rem 1rem;
    }

    .hero-icon {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .method-name {
        font-size: 1.35rem;
    }

    .card-body {
        padding: 1.25rem;
    }

    .method-steps {
        padding: 1.25rem;
    }

    .security-badge {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .security-section h3 {
        font-size: 1.5rem;
    }

    .security-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .faq-section h3 {
        font-size: 1.5rem;
    }
}
