/* Payments Page Styles */
.payments-hero-area {
    background: linear-gradient(135deg, rgba(241, 90, 34, 0.9), rgba(225, 74, 28, 0.9)), url('../images/payments-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.payments-hero__content .feature-item {
    display: flex;
    align-items: center;
}

.payments-hero__content .feature-item i {
    font-size: 20px;
    margin-right: 15px;
}

.payments-hero__image img {
    max-width: 100%;
    height: auto;
}

/* Payment Methods Cards */
.payment-method-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.payment-method-card .icon {
    margin-bottom: 20px;
}

.payment-method-card h5 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.payment-method-card p {
    color: #666;
    font-size: 14px;
}

/* Features Section */
.payment-features__content .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.payment-features__content .feature-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(241, 90, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.payment-features__content .feature-item .icon i {
    font-size: 20px;
}

.payment-features__content .feature-item .content h5 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-features__content .feature-item .content p {
    color: #666;
    margin: 0;
}

/* CTA Section */
.payment-cta {
    padding: 60px 0;
}

.payment-cta .title {
    color: #333;
    font-size: 36px;
    font-weight: 700;
}

.payment-cta p {
    color: #666;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .payments-hero__content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .payment-features__content .feature-item {
        text-align: center;
        flex-direction: column;
    }
    
    .payment-features__content .feature-item .icon {
        margin: 0 auto 20px;
    }
    
    .payment-cta .title {
        font-size: 28px;
    }
}