/* SSS Sayfası Premium Stilleri */

body.boxed {
    background-color: #f4f7f6;
}

.page-main.urun-container {
    padding-bottom: 60px;
}

/* --- SOL SİDEBAR (Sorular Listesi) --- */
.marker-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: sticky;
    top: 120px;
}

.marker-list li {
    border-bottom: 1px solid #f1f5f9;
}

.marker-list li:last-child {
    border-bottom: none;
}

.marker-list li a {
    display: block;
    padding: 16px 20px;
    color: #475569;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 14px;
    line-height: 1.4;
}

.marker-list li a:hover {
    background-color: #f8fafc;
    color: #0f4c81;
    /* Tema rengine uyumlu lacivert/mavi */
    border-left-color: #0f4c81;
    padding-left: 25px;
}

/* --- SAĞ İÇERİK (Accordion Panelleri) --- */
.panel-group .panel {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel-group .panel:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.panel-default>.panel-heading {
    background-color: #fff;
    border: none;
    padding: 0;
}

.panel-title {
    margin: 0;
}

.panel-title a {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    color: #1e293b;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.panel-title a:hover,
.panel-title a[aria-expanded="true"] {
    color: #0f4c81;
    background-color: #fafbfc;
}

.panel-title a .more-less {
    margin-right: 15px;
    font-size: 12px;
    color: #0f4c81;
    background: #eef2f6;
    min-width: 32px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.panel-title a:not(.collapsed) .more-less,
.panel-title a[aria-expanded="true"] .more-less {
    background: #0f4c81;
    color: #fff;
    transform: rotate(180deg);
}



.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top: none;
}

.panel-body {
    padding: 0 25px 25px 72px;
    /* İkona hizalı */
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

/* Link içindeki paragrafların margin'i olabiliyor, onu temizleyelim */
.panel-body p:last-child {
    margin-bottom: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .marker-list {
        margin-bottom: 40px;
        position: relative;
        top: 0;
    }

    .panel-body {
        padding: 0 20px 20px 20px;
    }

    .panel-title a {
        padding: 15px 20px;
        font-size: 15px;
    }

    .panel-title a .more-less {
        margin-right: 12px;
    }
}