/* style_teknikdestek.css */
/* Teknik Destek sayfasına özgü düzenler */

.support-list {
    list-style-type: disc;
    padding-left: 40px;
    margin: 20px 0;
    color: #333;
    line-height: 1.8;
}

.contact-info {
    margin-top: 30px;
    background-color: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #007bff;
    border-radius: 6px;
}

.contact-info p {
    margin: 8px 0;
}

.contact-info i {
    color: #007bff;
    width: 20px;
    text-align: center;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f0f4f8;
    border-radius: 8px;
}

.partner-logos img {
    max-height: 100px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logos img:hover {
    transform: scale(1.08);
    filter: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .partner-logos img {
        max-height: 60px;
        max-width: 120px;
    }
}
