body {
    margin: 0;
    font-family: Arial;
    background: #f2f2f2;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #e9e9e9;
    border-bottom: 2px solid #d7bcbc;
}

.logo-sol {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-sol img {
    height: 40px;
}

.logo-sag img {
    height: 50px;
}

.ayrac {
    width: 1px;
    height: 30px;
    background: #999;
}



.container {
    max-width: 1100px;
    width: 95%;
    margin: 40px auto;
}

h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.soru-kutu {
    background: white;
    padding: 45px;
    border-radius: 14px;

    border: 2px solid #b5b5b5;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.secenk {
    display: block;
}

.secenek {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    background: white;
    transition: all .2s ease;
    position: relative;
}

.secenek input {
    display: none;
}

.checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #bdbdbd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
    background: white;
}

.checkbox:after {
    content: "✓";
    font-size: 14px;
    color: white;
    display: none;
}

.secenek input:checked+.checkbox {
    background: #1e88e5;
    border-color: #1e88e5;
}

.secenek input:checked+.checkbox:after {
    display: block;
}

.secenek input:checked~.secenek-text {
    color: #1565c0;
    font-weight: 500;
}

.secenek:has(input:checked) {
    background: #e3f2fd;
    border-color: #1e88e5;
}

.secenek:hover {
    border-color: #9e9e9e;
}

.adimlar {
    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: nowrap;

    gap: 6px;
    margin-top: 30px;

    width: max-content;
    margin-left: auto;
    margin-right: auto;

    transform: translateX(-170px);

}

.adimlar span {

    position: relative;
    padding: 8px 20px;

    background: #f1dede;
    color: #c88a8a;

    font-size: 14px;
    font-weight: 500;

    clip-path: polygon(0 0,
            calc(100% - 10px) 0,
            100% 50%,
            calc(100% - 10px) 100%,
            0 100%,
            10px 50%);

    white-space: nowrap;

}

.adimlar span.aktif {
    background: #c40000;
    color: white;
}

.adimlar a {
    text-decoration: none;
}

.butonlar {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.geri {
    background: #aaa;
    border: none;
    padding: 12px 25px;
    color: white;
    border-radius: 6px;
}

.ileri {
    background: #c40000;
    border: none;
    padding: 12px 25px;
    color: white;
    border-radius: 6px;
}

@media (max-width:768px) {

    * {
        box-sizing: border-box;
    }

    .header {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        text-align: center;
    }

    .logo-sol {
        justify-content: center;
    }

    .logo-sol img {
        height: 34px;
    }

    .logo-sag img {
        height: 38px;
    }

    .ayrac {
        display: none;
    }

    .container {
        width: 94%;
        margin: 20px auto;
    }

    h2 {
        font-size: 19px;
        text-align: center;
        line-height: 1.4;
    }

    .soru-kutu {
        padding: 18px;
    }

    .secenek {

        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
        margin-bottom: 12px;
        word-break: break-word;

    }

    .secenek-text {
        flex: 1;
        font-size: 14px;
        line-height: 1.45;
    }

    .checkbox {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        margin-top: 2px;
    }

    .butonlar {
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
    }

    .geri,
    .ileri {

        width: 100%;
        padding: 14px;
        font-size: 15px;

    }

    .adimlar {

        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        border-top: 1px solid #ddd;
        padding: 10px 8px;
        display: flex;
        gap: 6px;
        overflow-x: auto;
        justify-content: flex-start;
        transform: none;
        z-index: 999;
        scroll-behavior: smooth;

    }

    .adimlar span {

        flex-shrink: 0;
        font-size: 12px;
        padding: 6px 14px;

    }


    .adimlar span.aktif {
        background: #c40000;
        color: white;
    }

    .adimlar::-webkit-scrollbar {
        display: none;
    }

    body {
        padding-bottom: 80px;
    }

}