/* Hesap Bilgileri Bölümü */
.hesap-bilgileri-section {
    padding: 60px 20px;
    background: rgba(59, 130, 246, 0.1);
}

.hesap-bilgileri-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.hesap-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hesap-logo img {
    max-width: 180px;
    height: auto;
}

.hesap-aciklama {
    font-size: 18px;
    line-height: 1.8;
    color: #F8FAFC;
    text-align: center;
}

.hesap-aciklama p {
    margin-bottom: 10px;
}

.hesap-aciklama strong {
    color: #3B82F6;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hesap-bilgileri-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hesap-logo {
        justify-content: center;
        order: 1;
    }
    
    .hesap-aciklama {
        font-size: 16px;
        order: 2;
    }
}

@media (orientation: portrait) {
    .hesap-bilgileri-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hesap-logo {
        justify-content: center;
        order: 1;
    }
    
    .hesap-aciklama {
        order: 2;
    }
}

