.hero-section-2 {
    position: relative;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
}

/* Metin ve başlık */
.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #dbd7d3;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

/* Arka plan ikonları */
.hero-icon {
    position: absolute;
    left:20px;
    top:20px;
    width: 100px;
    opacity: 0.3;
    border-radius:8px;
    
}

.icon1 {
    background-color: white;
    top: 10%;
    left: 5%;
    transform: rotate(10deg);
}

.icon2 {
    background-color: white;
    top: 40%;
    left: 15%;
    transform: rotate(-15deg);
}

.icon3 {
    top: 70%;
    left: 0;
    transform: rotate(20deg);
}

/* CTA Buton */
.hero-cta {
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 8px;
}

/* Resim alanı */
.hero-image-wrapper {
    position: relative;
  
}

.hero-image {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
   
}

/* Alt dalgalı divider */
.hero-divider {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    clip-path: polygon(0 0, 60% 40%, 90% 50%, 0 60%);
}

/* Mobil uyum */
@media (max-width: 768px) {
    .hero-section-2 {
        padding: 60px 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-cta-wrapper {
        order: 2;
        margin-top: auto;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }

    .hero-cta {
        width: 90%;
    }

    .hero-divider {
        display:none;
     /*   height: 60px;
        width:100%;
        clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 0%);*/
    }

    .hero-icon {
        width: 35px;
    }
}
