.sa-insurance-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f7fa;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.sa-insurance-container h2 {
    color: #1a3e60;
    margin-bottom: 5px;
    font-size: 28px;
}
.sa-subtitle {
    color: #4a627a;
    margin-bottom: 30px;
    font-size: 16px;
}
.sa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}
.sa-section {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.sa-section:hover {
    transform: translateY(-2px);
}
.sa-section h3 {
    color: #2c5a7a;
    border-left: 4px solid #f4a261;
    padding-left: 12px;
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 18px;
}
.sa-section label {
    display: block;
    font-weight: 500;
    margin: 12px 0 5px 0;
    color: #2d3e50;
    font-size: 13px;
}
.sa-section input, .sa-section select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e0;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
    transition: border 0.2s;
    box-sizing: border-box;
}
.sa-section input:focus, .sa-section select:focus {
    outline: none;
    border-color: #f4a261;
    box-shadow: 0 0 0 2px rgba(244,162,97,0.2);
}
.sa-checkbox-group {
    background: #f8fafc;
    padding: 10px;
    border-radius: 12px;
    margin: 8px 0;
}
.sa-checkbox-group label {
    display: inline-block;
    margin-right: 18px;
    font-weight: normal;
    font-size: 13px;
}
.sa-checkbox-group input {
    width: auto;
    margin-right: 5px;
}
.sa-actions {
    text-align: center;
    margin-top: 35px;
}
#sa-get-quote {
    background: #2a9d8f;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
#sa-get-quote:hover {
    background: #21867a;
    transform: scale(1.02);
}
#sa-result {
    margin-top: 30px;
    background: #e9f5f2;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    border-left: 6px solid #2a9d8f;
}
.sa-premium-amount {
    font-size: 42px;
    font-weight: bold;
    color: #1e6f5c;
    margin: 15px 0;
}
.sa-premium-amount span {
    font-size: 32px;
}
#premium-period {
    font-size: 18px;
    font-weight: normal;
    color: #4a627a;
}
.sa-disclaimer {
    font-size: 12px;
    color: #7e8c9e;
    margin-top: 15px;
}
@media (max-width: 768px) {
    .sa-grid {
        grid-template-columns: 1fr;
    }
    .sa-premium-amount {
        font-size: 32px;
    }
}