/* assets/yardim.css */

.help-container {
    max-width: 900px;
    margin: 0 auto;
}

.help-intro {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-left: 6px solid #3b82f6;
}
.help-intro h2 { margin-top: 0; color: #1e293b; }
.help-intro p { color: #64748b; font-size: 1.05rem; line-height: 1.6; }

/* Konu Başlıkları */
.module-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    margin-bottom: 25px;
    overflow: hidden;
}

.module-header {
    padding: 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.module-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem;
}

.module-title { font-size: 1.2rem; font-weight: 700; color: #334155; margin: 0; }

.module-content { padding: 25px; }

/* Adım Listesi */
.step-list { list-style: none; padding: 0; margin: 0; }
.step-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #475569;
    line-height: 1.5;
}
.step-list li::before {
    content: '\f00c'; /* Check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0; top: 2px;
    color: #10b981;
}

/* İpucu Kutusu */
.tip-box {
    background: #fff7ed;
    border-left: 4px solid #f97316;
    padding: 15px;
    margin-top: 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #9a3412;
}
.tip-box i { margin-right: 5px; }

/* Renk Temaları */
.theme-blue .module-icon { background: #3b82f6; }
.theme-orange .module-icon { background: #f97316; }
.theme-purple .module-icon { background: #8b5cf6; }
.theme-green .module-icon { background: #10b981; }
.theme-red .module-icon { background: #ef4444; }