
/* style_egitim.css */
/* Eğitim sayfasına özgü stiller */

.education-image img, .about-image {
    display: block;
    margin: 30px auto;
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f0f4f8;
    border-top: 2px solid #e0e0e0;
    border-radius: 8px;
    max-width: 1100px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.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) {
    .education-image img, .about-image {
        max-width: 100%;
    }
    .partner-logos img {
        max-height: 60px;
        max-width: 120px;
    }
}
