/*
Theme Name: Hesaplariz Tema
Author: hesaplariz.com
Description: Tailwind tabanlı modern hesaplama araçları teması.
Version: 1.0
*/
/*
Theme Name: Hesaplariz Tema
Author: hesaplariz.com
Description: Tailwind tabanlı modern hesaplama araçları teması.
Version: 1.0
*/

/* ==========================================
   SSS & KULLANIM REHBERİ ÖZEL TASARIMI
   ========================================== */

/* Nasıl Kullanılır? - Gri Zeminli Alan */
.hz-kullanim-rehberi {
    background-color: #f8fafc; /* Soft modern gri */
    border-left: 5px solid #4f46e5; /* İndigo vurgu (Tailwind uyumlu) */
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.hz-kullanim-rehberi h3 {
    margin-top: 0;
    font-weight: 800;
    color: #1e293b;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hz-kullanim-rehberi p, .hz-kullanim-rehberi li {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

/* Sıkça Sorulan Sorular - Akordiyon / Liste */
.hz-sss-alani {
    margin-top: 40px;
}

.hz-sss-alani h2 {
    font-weight: 900;
    margin-bottom: 20px;
    color: #0f172a;
}

.hz-sss-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.hz-sss-item:hover {
    border-color: #4f46e5;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hz-sss-soru {
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hz-sss-soru::after {
    content: '+';
    font-size: 1.2rem;
    color: #4f46e5;
}

.hz-sss-cevap {
    margin-top: 10px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .hz-kullanim-rehberi {
        padding: 15px;
        margin: 20px 0;
    }
}