 /* ===== SİGORTA SAYFASI GENEL ===== */
.sigorta-container {
    background: #f0fbff;
}

.sigorta-banner {
    min-height: 850px; /* Biraz daha optimize edildi */
    background-image: url("../img/seyahatsagliksigortasi.png");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    position: relative;
    padding-bottom: 20px; /* Alt ikonlara yaklaşması için azaltıldı */
}

/* ===== ŞEFFAF KUTU ===== */
.sigorta-overlay-box {
    position: relative;
    z-index: 2;
    width: 600px;
    max-width: 95%;
    padding: 30px; /* Padding daraltıldı */
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* Altındaki boşluk azaltıldı */
}

/* ===== BİLGİ ALANI (DARALTILMIŞ) ===== */
.sigorta-content {
    background: #fff;
    padding: 20px 0; /* Üst ve alt boşluk 80px'den 20px'e düşürüldü */
    clear: both;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
}

.info-card {
    flex: 1;
    padding: 10px; /* Kart içi boşluklar azaltıldı */
}

.info-card i {
    font-size: 24px;
    color: #000;
    margin-bottom: 8px; /* İkon ile başlık arası daraltıldı */
    display: block;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px; /* Başlık ile yazı arası daraltıldı */
}

.info-card p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0; /* Paragrafın kendi boşluğu sıfırlandı */
}

/* Mobil */
@media (max-width: 768px) {
    .sigorta-banner { min-height: 500px; }
    .info-grid { flex-direction: column; gap: 15px; }
}
