.payment-page {
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.payment-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.payment-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.payment-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.payment-intro {
    background: #e8f4f8;
    padding: 20px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.payment-intro p {
    font-size: 16px;
    color: #1a1a2e;
    margin: 0;
}

.payment-section {
    margin-bottom: 50px;
}

.payment-section h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.payment-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1a1a2e;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.method-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.method-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.method-card h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.method-card > p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.method-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.method-details li {
    font-size: 13px;
    color: #555;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.method-details li:before {
    content: '•';
    position: absolute;
    left: 5px;
    color: #1a1a2e;
    font-weight: bold;
}

.payment-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.step-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1a1a2e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto 15px;
}

.step-content h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.security-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.security-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.security-card h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.security-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.payment-faq {
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.faq-toggle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: #1a1a2e;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.payment-contacts {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.payment-contacts p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.contacts-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.contact-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #1a1a2e;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #2a2a4e;
}

.contact-btn.secondary {
    background: #6c757d;
}

.contact-btn.secondary:hover {
    background: #5a6268;
}

@media (max-width: 768px) {
    .payment-hero {
        padding: 40px 20px;
    }

    .payment-hero-content h1 {
        font-size: 32px;
    }

    .payment-section h2 {
        font-size: 24px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .payment-steps {
        grid-template-columns: 1fr;
    }

    .security-info {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .contacts-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .contact-btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .payment-hero {
        padding: 30px 20px;
    }

    .payment-intro {
        padding: 15px;
    }

    .method-card {
        padding: 20px;
    }

    .step-item {
        padding: 20px;
    }

    .security-card {
        padding: 20px;
    }
}