/* Deprem Nedir? Sayfası için CSS */

.deprem-nedir-icerik {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9); /* yarı şeffaf beyaz kutu */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #333;
}

/* Ana başlık */
.deprem-nedir-icerik h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    color: #b71c1c; /* kırmızı ton */
    border-bottom: 3px solid #b71c1c;
    padding-bottom: 10px;
}

/* Alt başlıklar */
.deprem-nedir-icerik h2 {
    font-size: 1.6em;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #444;
    border-left: 5px solid #b71c1c;
    padding-left: 10px;
}

/* Paragraflar */
.deprem-nedir-icerik p {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #555;
}

/* Listeler (numaralı gibi görünen paragraflar için) */
.deprem-nedir-icerik p br {
    line-height: 2;
}

/* Vurgulama için hatırlatma bölümü */
.deprem-nedir-icerik h2:last-of-type {
    color: #b71c1c;
}

.deprem-nedir-icerik p:last-of-type {
    background: #ffecec;
    border-left: 5px solid #b71c1c;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
}