.sigorta-bosluk {
margin-top: 50px;
}
.sigorta-kutu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 800px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
}
.sigorta-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background-color: #a38472;
    color: #fff;
    border: none;
    padding: 40px 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    min-height: 140px;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
}

.sigorta-btn:focus {
    outline: none;
}
/* Hem button hem a için hover */
.sigorta-btn:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
    text-decoration: none;
    color: #fff;
}

.sigorta-btn i {
    font-size: 34px; /* ikon boyutu büyütüldü */
}

.sigorta-btn:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

/* Köşe yuvarlatma sadece dış köşelere */
.sigorta-btn:nth-child(1) {
    border-top-left-radius: 20px;
}
.sigorta-btn:nth-child(3) {
    border-top-right-radius: 20px;
}
.sigorta-btn:nth-child(4) {
    border-bottom-left-radius: 20px;
}
.sigorta-btn:nth-child(6) {
    border-bottom-right-radius: 20px;
}

/* Renkler */
.trafik {
    background-color: #007bff;
}
.kasko {
    background-color: #6f42c1;
}
.dask {
    background-color: #e83e8c;
}
.saglik {
    background-color: #20c997;
}
.konut {
    background-color: #fd7e14;
}
.isyeri {
    background-color: #dc3545;
}
