.aciklama-listesi {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.aciklama-listesi li {
    position: relative;
    margin-bottom: 8px;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.5;
    text-align: left;
}

.baslik {
    background-color: #050131;
}

.baslik h3 {
    position: relative;
    z-index: 1;
    color: #fff;
    margin: 0;
}

.proje-sag {
    background: white;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    min-height: 250px;
    margin-bottom: 2rem;
}

.proje-sag img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3),
                0 6px 6px rgba(0, 0, 0, 0.2);
}

.proje-sag::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    border-radius: 10px;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, rgb(52, 41, 109), rgb(30, 61, 220));
}

.proje-sag .col-md-6,
.proje-sag .col-md-4 { 
    position: relative;
    z-index: 1; 
}

.proje-sol.text-white h1,
.proje-sol.text-white .aciklama-listesi li {
    color: #fff;
}

.proje-sol {
    background: white;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    min-height: 250px;
    margin-bottom: 2rem;
}

.proje-sol::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    border-radius: 10px;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, rgb(52, 41, 109), rgb(30, 61, 220));
}

.proje-sol .col-md-6,
.proje-sol .col-md-4 {
    position: relative;
    z-index: 1;/
}

.proje-sol img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto; 
    object-fit: contain;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3),
                0 6px 6px rgba(0, 0, 0, 0.2);
}

.proje-sol .proje-icerik {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.proje-sol.text-white h1,
.proje-sol.text-white .aciklama-listesi li {
    color: #fff;
}


@media (min-width: 768px) {
    .proje-sag::before {
        left: 25%;
        width: 75%;
        background: linear-gradient(to right, rgb(52, 41, 109), rgb(30, 61, 220));
    }

    .proje-sol::before {
        right: 25%;
        width: 75%;
        background: linear-gradient(to right, rgb(30, 61, 220), rgb(52, 41, 109));
    }

    .proje-icerik-sol {
        margin-left: 100px;
    }
}