/* Kredi Kartları Stilleri */
.credit-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.credit-card-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 8px;
    transition: all 0.3s ease;
}

.credit-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.8; /* Hover durumunda hafif solma efekti */
}

.credit-card-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive düzenlemeler */
@media screen and (max-width: 768px) {
    .credit-cards-container {
        gap: 10px;
    }
    
    .credit-card-item {
        width: 80px;
        height: 50px;
    }
}

@media screen and (max-width: 480px) {
    .credit-cards-container {
        gap: 8px;
    }
    
    .credit-card-item {
        width: 70px;
        height: 45px;
    }
}
