.insurance-calc-wrapper * {
    box-sizing: border-box;
    font-family: system-ui, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
}
.insurance-calc-wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}
.insurance-calc-wrapper .card {
    max-width: 860px;
    width: 100%;
    background: white;
    border-radius: 32px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.2s;
}
.insurance-calc-wrapper .form-container {
    padding: 1.8rem 2rem 2rem 2rem;
}
.insurance-calc-wrapper .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}
.insurance-calc-wrapper .coffee-span-12 {
    flex: 0 0 100%;
    padding: 0 0.75rem;
}
.insurance-calc-wrapper .subgrid-row-23 {
    margin-top: 1.8rem;
}
.insurance-calc-wrapper .subgrid-column-compare-button {
    display: flex;
    justify-content: center;
}
.insurance-calc-wrapper .button-compare-now {
    background: #0a2b4e;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.9rem 2rem;
    border-radius: 48px;
    width: 100%;
    max-width: 320px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.insurance-calc-wrapper .button-compare-now:hover {
    background: #0f3b64;
    transform: scale(1.01);
}
.insurance-calc-wrapper .button-compare-now:active {
    transform: scale(0.98);
}
.insurance-calc-wrapper .text-element {
    display: block;
    font-weight: 600;
    color: #1a2c3e;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.insurance-calc-wrapper .text-1 {
    margin-top: 1rem;
}
.insurance-calc-wrapper input.zipcode {
    border: 1px solid #ccd7e6;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 1rem;
    width: 100%;
    max-width: 140px;
    background: white;
    transition: 0.2s;
}
.insurance-calc-wrapper input.zipcode:focus {
    outline: none;
    border-color: #0a2b4e;
    box-shadow: 0 0 0 3px rgba(10,43,78,0.2);
}
.insurance-calc-wrapper .select {
    border: 1px solid #ccd7e6;
    border-radius: 28px;
    padding: 10px 16px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
    width: auto;
    min-width: 110px;
    transition: 0.2s;
}
.insurance-calc-wrapper .select:focus {
    outline: none;
    border-color: #0a2b4e;
}
.insurance-calc-wrapper .radio {
    display: inline-flex;
    align-items: center;
    margin-right: 24px;
    background: #f8fafd;
    padding: 6px 14px;
    border-radius: 40px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.1s;
}
.insurance-calc-wrapper .radio input {
    margin-right: 8px;
    accent-color: #0a2b4e;
    width: 18px;
    height: 18px;
}
.insurance-calc-wrapper .radio-button-1-right {
    margin-right: 0;
}
.insurance-calc-wrapper label.radio:hover {
    background: #eef3fc;
}
.insurance-calc-wrapper .inline-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}
.insurance-calc-wrapper .inline-group .select {
    margin-right: 6px;
}
.insurance-calc-wrapper hr {
    margin: 1.2rem 0;
    border: none;
    height: 1px;
    background: linear-gradient(to right, #e2e8f0, transparent);
}
.insurance-calc-wrapper .result-area {
    background: #f9fbfe;
    border-radius: 28px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid #e9edf2;
    transition: 0.2s;
}
.insurance-calc-wrapper .quote-box {
    text-align: center;
}
.insurance-calc-wrapper .quote-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a2b4e;
    letter-spacing: -0.5px;
}
.insurance-calc-wrapper .detail-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 1rem;
    font-size: 0.85rem;
    background: white;
    padding: 1rem;
    border-radius: 24px;
}
.insurance-calc-wrapper .pill-badge {
    background: #eef2f9;
    padding: 6px 12px;
    border-radius: 40px;
    font-weight: 500;
}
.insurance-calc-wrapper .error-msg {
    color: #c2410c;
    background: #fff2ed;
    padding: 0.8rem;
    border-radius: 28px;
    font-size: 0.85rem;
    font-weight: 500;
}
.insurance-calc-wrapper footer {
    font-size: 0.7rem;
    text-align: center;
    color: #7c8b9c;
    border-top: 1px solid #eef2f9;
    padding: 1rem;
    background: white;
}
.insurance-calc-wrapper .flex-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
@media (max-width: 640px) {
    .insurance-calc-wrapper .form-container {
        padding: 1.2rem;
    }
    .insurance-calc-wrapper .select {
        width: 100%;
        margin-bottom: 8px;
    }
    .insurance-calc-wrapper .inline-group {
        flex-direction: column;
        align-items: stretch;
    }
    .insurance-calc-wrapper .radio {
        flex: 1;
        justify-content: center;
    }
}