.section-insurance {
    padding: 7em 0;
    background-color: #f9f9f9;
}

.insurance-logos {
    margin: 3em 0;
}

.insurance-item {
    padding: 20px;
    margin-bottom: 30px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.insurance-item:hover {
    transform: translateY(-5px);
}

.insurance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.insurance-item img {
    width: 120px;
    height: 80px;
    margin: 0 auto 15px;
    object-fit: contain;
    display: block;
}

.insurance-item p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

.insurance-info {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 2em;
}

.insurance-description {
    margin: 2em auto;
    max-width: 800px;
    text-align: center;
    font-size: 1.1em;
    color: #555;
}

.insurance-coverage {
    margin: 3em 0;
    padding: 2em;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.insurance-coverage h3 {
    color: #333;
    text-align: center;
    margin-bottom: 1.5em;
    font-size: 1.4em;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coverage-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
    font-size: 1.1em;
}

.coverage-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.coverage-note {
    margin-top: 2em;
    font-size: 0.9em;
    color: #777;
    text-align: center;
    font-style: italic;
}

@media screen and (max-width: 768px) {
    .insurance-item {
        margin-bottom: 20px;
        min-height: 180px;
    }
    
    .insurance-item img {
        width: 100px;
        height: 70px;
    }
}

@media screen and (max-width: 480px) {
    .insurance-item {
        min-height: 160px;
    }
    
    .insurance-item img {
        width: 90px;
        height: 60px;
    }
}