.elementor-862 .elementor-element.elementor-element-49e5cd9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-8b4ae71 *//* Ana Kapsayıcı: Flexbox Düzeni */
.v-wrap {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    align-items: flex-start; /* Sidebar'ın uzamasını engeller */
}

/* Sol Ana İçerik Alanı */
.v-main {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Sağ Sidebar Alanı */
.v-side {
    width: 320px;
    position: -webkit-sticky; /* Safari desteği */
    position: sticky;
    top: 100px; /* Sayfa kayarken yukarıda duracağı mesafe */
}

/* Sidebar İçindeki Kutu Tasarımı */
.v-box {
    background: #fafafa;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.v-box h4 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
    border-bottom: 2px solid #82A68E; /* SETAF Yeşili */
    padding-bottom: 10px;
}

.v-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v-box li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #444;
}

.v-box li strong {
    color: #111;
    display: inline-block;
    width: 120px; /* Etiketlerin hizalı durması için */
}

/* Opsiyonel: İndirme Butonu */
.v-download-btn {
    display: block;
    text-align: center;
    background: #82A68E;
    color: #fff !important;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.v-download-btn:hover {
    background: #111;
}

/* Mobil Uyumluluk (Responsive) */
@media (max-width: 900px) {
    .v-wrap {
        flex-direction: column;
    }
    .v-side {
        width: 100%;
        position: static; /* Mobilde yapışkanlık iptal */
    }
}/* End custom CSS */