/* Sonuçlar ve Ortaklıklar Bölümü */
.results-section {
    padding: 5rem 0;
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

#egitim-yaklasimi{
    background-color: unset  !important;
}

.results-content {
    flex: 1;
}

.results-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.results-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.results-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffd700;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.results-button:hover {
    background-color: #ffed4a;
    transform: translateY(-2px);
}

.results-image {
    flex: 1;
    position: relative;
}

.results-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
   /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
}

.image-credit {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .results-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding-bottom: 50px;
    }

    .results-title {
        font-size: 2.4rem;
    }

    .results-image img {
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .results-title {
        font-size: 2rem;
    }

    .results-description {
        font-size: 1rem;
    }

    .results-image img {
        max-width: 100%;
       
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-content {
    animation: fadeInUp 1s ease-out;
}

.results-image {
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: backwards;
} 

#egitim-yaklasimi-photo{
    max-width: 100%;
    /* scale: 1.3; */
    /* margin-left: -150px; */
    margin-top: 50px;
}

@media (max-width: 992px) {
    
    #egitim-yaklasimi-photo{
        max-width: 600px;
     /*   scale: 1.4; */
    }
}