/* Payment Features Section */
.payment-features {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.payment-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Payment Card Styles */
.payment-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


/* Payment Icon Styles */
.payment-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-icon svg {
    color: white;
    transition: transform 0.3s ease;
}

.payment-card:hover .payment-icon svg {
    transform: scale(1.1);
}

/* Icon Specific Colors */
.payment-icon.secured-payment {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.payment-icon.refund {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.payment-icon.telephone {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.payment-icon.distribution {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

/* Payment Content Styles */
.payment-content {
    flex: 1;
}

.payment-content h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.2;
}

.payment-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.4;
}

.payment-content span {
    font-size: 0.9rem;
    color: #eb5b5b;
    font-weight: 600;
    display: block;
}

/* Mobile - 468px */
@media (max-width: 468px) {
    .payment-features {
        padding: 30px 10px;
    }
    
    .payment-container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .payment-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .payment-icon {
        width: 50px;
        height: 50px;
    }
    
    .payment-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .payment-content h3 {
        font-size: 1.1rem;
    }
    
    .payment-content p {
        font-size: 0.9rem;
    }
    
    .payment-content span {
        font-size: 0.8rem;
    }
}

/* PC - 1600px */
@media (min-width: 1600px) {
    .payment-container {
        grid-template-columns: repeat(4, 500px);
        max-width: 2200px;
        gap: 50px;
        justify-content: center;
    }
    
    .payment-card {
        padding: 50px;
        height: 300px;
        width: 500px;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .payment-icon {
        width: 100px;
        height: 100px;
    }
    
    .payment-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .payment-content h3 {
        font-size: 2rem;
    }
    
    .payment-content p {
        font-size: 1.3rem;
    }
    
    .payment-content span {
        font-size: 1.1rem;
    }
}
