body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fb;
    color: #1a1a1a;
}

.kurs-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 60px 30px;
    max-width: 1300px;
    margin: auto;
}

.kurs-text {
    flex: 1 1 600px;
}

.kurs-text h5 {
    color: #f04f0b;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.kurs-text h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.kurs-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.kurs-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.kurs-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 220px;
    font-size: 15px;
    color: #333;
}

.icon-box i {
    font-size: 20px;
    color: #f04f0b;
}

.kurs-image {
    flex: 1 1 500px;
}

.kurs-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    max-height: 650px;
}
.about-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px;
    max-width: 1400px;
    margin: auto;
    gap: 40px;
}
.img-small,
.main-image img {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* scroll ile görünür olunca sınıf eklenecek */
.animate-on-scroll.active .img-small {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.active .img-small:nth-child(2) {
    transition-delay: 0.2s;
}

.animate-on-scroll.active .main-image img {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.4s;
}

.main-image img {
    transform: scale(0.9);
}
.image-layout {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    padding: 40px;
    flex-wrap: wrap;
    margin-top:100px;
}

/* Sol taraftaki küçük görseller */
.left-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Küçük resim stilleri */
.img-small {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
}

/* Ana görsel */
.main-image img {
    width: 300px;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transform: scale(0.9);
    opacity: 0;
}

/* Hover efekti tüm görsellere */
.img-small:hover,
.main-image img:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

/* Fade-up animasyonu */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Zoom-in animasyonu */
@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* Scroll ile görünür olunca img-small için görünür yap */
.animate-on-scroll.active .img-small {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition-delay: 0s;
}

/* İkinci küçük resme biraz gecikme */
.animate-on-scroll.active .img-small:nth-child(2) {
    transition-delay: 0.2s;
}

/* Scroll ile görünür olunca ana görseli büyüt ve görünür yap */
.animate-on-scroll.active .main-image img {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition-delay: 0.4s;
}

.about-text-grid {
    flex: 2 1 700px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-box, .cta-box {
    padding: 20px;
    border-radius: 12px;
}

.about-box h3{
    color: #f04f0b;
    font-size: 20px;
    margin-bottom: 10px;
}
.cta-box h3{
    color: #f04f0b;
    font-size: 20px;
    margin-bottom: 10px;
}

.about-box p{
    font-size: 18px;
    line-height: 1.6;
    color: black;
}
.cta-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
}

.cta-box {
    background-color: #152d77;
    color: white;
}

.cta-box a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #f04f0b;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

.cta-box a:hover {
    background-color: #f2f2f2;
    color: black;
}
.weird-faq-section {
    background: linear-gradient(145deg, #fdfbfb, #ebedee);
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.weird-faq-section h2 {
    font-size: 28px;
    color: #f04f0b;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-card {
    background: #fff;
    border-radius: 20px;
    width: 300px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s;
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

.faq-card:hover {
    transform: rotateX(5deg) scale(1.02);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #1c163d;
    margin-bottom: 10px;
    position: relative;
}

.faq-answer {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-card.open .faq-answer {
    max-height: 300px;
    margin-top: 10px;
}
.cift-slider-kapsayici {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.ust-slider, .alt-slider {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    margin: 20px 0;
}

.slider-icerik {
    display: inline-flex;
    align-items: center;
    gap: 30px;
}

.slider-icerik img {
    height: 150px;
    border-radius: 10px;
    flex-shrink: 0;
    object-fit: cover;
}
@media (max-width: 992px) {
    .kurs-container {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .kurs-text h1 {
        font-size: 30px;
    }

    .kurs-image img {
        max-height: none;
    }
    .about-text-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        flex-direction: column;
        align-items: center;
    }

    .image-layout {
        flex-direction: column;
        margin-top:-50px;
    }

    .left-images {
        flex-direction: row;
        justify-content: center;
    }

    .main-image img {
        width: 100%;
        height: auto;
    }
    .weird-faq-section {
        padding: 20px;
        max-width: 600px;
        margin: auto;
    }

    .faq-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .faq-card {
        border: 1px solid #ccc;
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
        width: 90%;
        margin-bottom: -5px;
    }

    .faq-question {
        font-weight: 500;
        padding: 15px 20px;
        cursor: pointer;
        position: relative;
        font-size: 17px;
    }

    .faq-question::after {
        content: '+';
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: red;
        font-weight: bold;
        transition: transform 0.3s;
    }

    .faq-card.active .faq-question::after {
        content: '-';
        transform: translateY(-50%) rotate(180deg);
    }

    .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        font-size: 15px;
        color: #333;
        transition: max-height 0.3s ease;
    }

    .faq-card.active .faq-answer {
        padding: 15px 20px;
        max-height: 400px;
    }
}