.startkey-section {
    padding: 0 0 60px 0;
    /* Üst padding 0 yapıldı */
    position: relative;
    background-color: transparent;
    /* Arka plan kaldırıldı */
    overflow: hidden;
}

/* Arka plan deseni kaldırıldı */
.startkey-section::before {
    display: none;
}

.startkey-container {
    max-width: 1000px;
    /* Genişlik kısıtlandı */
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Sol taraf biraz daha dar */
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Sol Taraf - Resim Kolajı */
.startkey-images {
    position: relative;
    height: 400px;
    /* Yükseklik azaltıldı (600 -> 400) */
    display: flex;
    align-items: center;
    justify-content: center;
}

.sk-img-back {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 70%;
    height: 220px;
    /* Küçültüldü */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: transform 0.5s ease;
}

.sk-img-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sk-img-front {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 70%;
    height: 260px;
    /* Küçültüldü */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 4px solid #fff;
    transition: transform 0.5s ease;
}

.sk-img-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sk-logo-cube {
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 90px;
    /* Küçültüldü */
    height: 90px;
    /* Küçültüldü */
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.sk-cube-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(193, 18, 31, 0.3));
}

/* Hover Efektleri */
.startkey-images:hover .sk-img-back {
    transform: translate(-5px, -5px);
}

.startkey-images:hover .sk-img-front {
    transform: translate(5px, 5px);
}

/* Sağ Taraf - İçerik */
.startkey-content {
    padding-left: 10px;
}

.sk-top-title {
    color: #E62020;
    font-size: 0.85rem;
    /* Küçültüldü */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.sk-main-title {
    font-size: 2rem;
    /* Küçültüldü (2.8 -> 2) */
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.sk-desc {
    font-size: 0.95rem;
    /* Biraz küçültüldü */
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sk-desc strong {
    color: #333;
    font-weight: 700;
}

.sk-sub-title {
    font-size: 1.4rem;
    /* Küçültüldü (1.8 -> 1.4) */
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    margin-top: 25px;
}

.sk-btn {
    display: inline-block;
    background-color: #E62020;
    color: #fff;
    padding: 12px 30px;
    /* Buton küçültüldü */
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(230, 32, 32, 0.25);
    margin-top: 5px;
}

.sk-btn:hover {
    background-color: #C1121F;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(230, 32, 32, 0.35);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .startkey-container {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .startkey-images {
        height: 500px;
        max-width: 600px;
        margin: 0 auto;
    }

    .startkey-content {
        padding-left: 0;
        text-align: left;
    }

    .sk-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .startkey-section {
        padding: 40px 0;
    }

    .startkey-container {
        gap: 30px;
    }

    .startkey-images {
        height: auto;
        min-height: 250px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sk-img-back {
        display: none;
    }

    .sk-img-front {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 80%;
        max-width: 300px;
        height: 200px;
        margin: 0 auto;
    }

    .sk-logo-cube {
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 70px;
    }

    .sk-main-title {
        font-size: 1.5rem;
    }

    .sk-sub-title {
        font-size: 1.2rem;
    }

    .sk-desc {
        font-size: 0.85rem;
    }

    .sk-btn {
        width: 100%;
        text-align: center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}