/* Start custom CSS for html, class: .elementor-element-f132114 */.insurance-services {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.is-header {
    text-align: center;
    margin-bottom: 30px;
}
.is-header h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 10px;
}
.is-header p {
    color: #666;
    font-size: 16px;
}

.is-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
}
.is-benefit-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}
.is-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.is-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}
.is-feature-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.is-feature-card h3 {
    margin-top: 0;
    color: #e74c3c;
}
.is-feature-card h3 span {
    margin-right: 10px;
}
.is-feature-card ul {
    padding-left: 20px;
}
.is-feature-card li {
    margin-bottom: 8px;
}

.is-process {
    margin-bottom: 30px;
}
.is-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.is-step {
    flex: 1;
    min-width: 150px;
    background: #2c3e50;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}
.is-step span {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.is-cta {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.is-contact-form {
    flex: 2;
    min-width: 300px;
}
.is-whatsapp {
    display: inline-flex;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    min-width: 200px;
    height: auto;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    box-sizing: border-box;
}
.is-whatsapp:hover {
    background-color: #128C7E;
}
.is-whatsapp span {
    display: inline-block;
    line-height: normal;
}

@media (max-width: 768px) {
    .is-benefits, .is-steps, .is-cta {
        flex-direction: column;
    }
    .is-benefit-card, .is-step, .is-contact-form, .is-whatsapp {
        width: 100%;
        max-width: 100%;
    }
    .is-whatsapp {
        padding: 12px;
    }
}/* End custom CSS */