.site-footer {
    background: linear-gradient(to bottom, #ffffff, #ffffff);
    padding: 20px;
    text-align: center;
    border-top: 2px solid #dcdcdc;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.footer-content {
    margin-bottom: 20px;
}

.image-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.image-item {
    text-align: center;
    margin: 20px;
}

.image-item img {
   
    height: 30px;
}

.text-item {
    font-weight: bold;
    color: #333;
    margin-top: 5px; /* Resim ve metin arasındaki boşluk */
}

.contact-info {
    margin-bottom: 50px;
    color: #333;
}

.contact-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 18px;
    color: #333;
}

.contact-details {
    font-size: 18px;
    color: #333;
}

.footer-logo {
    margin: 20px 0;
}

.footer-logo-image {
    width: 250px;
    height: 100px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: inline;
    margin: 0 15px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #555;
}

.payment-logos {
    margin-top: 20px;
}

.payment-logo {
    
    height: 30px;
    margin: 0 10px;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .image-row {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links li {
        display: block;
        margin: 5px 0;
    }
    
    .payment-logo {
        width: 30px;
        height: 15px;
    }
}
