body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2626de;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    text-decoration: none;
    color: black;
}
.btn-quote {
    background-color: #2626de;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
}
.hero {
    padding: 50px 20px;
    flex-grow: 1;
}
.insurance-options {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.option {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.option img:hover {
        background-color: #fefefe;
    
}
.option img {
    max-width: 100%;
    height: 250px;
    margin-bottom: 10px;
    
}
.highlight-section {

    height:70vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #fff;
    gap: 40px;
}
.highlight-text {
    max-width: 500px;
    text-align: left;
}
.highlight-text h2 {
    font-size: 36px;
    color: #0c0c63;
}
.highlight-text h2 span {
    color: #4a4aff;
}
.highlight-text p {
    color: #6c6c80;
    font-size: 18px;
}
.highlight-text .cta-button {
    background-color: #4a4aff;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
}
.highlight-image img {
    width: 700px ;
    border-radius: 20px;
}
.option button {
    background-color: #2626de;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    &:hover{
        background-color: grey ;
    }
}
.more-products {
    background: linear-gradient(to right, #2626de, #5c5cf4);
    color: white;
    padding: 20px;
}
.more-products nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
}
.btn-smart {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
}
footer {
    background-color: black;
    color: white;
    padding: 20px;
    margin-top: auto;
}
.quote-form {
    background-color: #f9f9ff;
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto 60px;
}
.quote-form h2 {
    color: #2626de;
}
.quote-form p {
    color: #444;
}
.question-section {
    margin-top: 30px;
    display: none;
}
.question-section.active {
    display: block;
}
.question-section h3 {
    color: #333;
}
.quote-form .option-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}
.quote-form .option-box:hover {
    transform: translateY(-2px);
}
.quote-form .option-box.selected {
    background-color: #4a4aff;
    color: white;
}
.quote-form .option-box img {
    height: 70px;
    margin-right: 20px;
}
.quote-form .continue-button {
    background-color: #4a4aff;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
}
.option-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.option-box {
    flex: 1 1 150px;
    /* max-width: 250px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}
.option-box1 {
    flex: 1 1 150px;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}
.option-box.selected {
    background-color: #4a4aff;
    color: white;
    border-color: #4a4aff;
}
.option-box:hover {
    transform: translateY(-2px);
}
.option-box img {
    height: 40px;
}
.form-select, .form-input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
.continue-button, .final-button {
    background-color: #4a4aff;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
    cursor: pointer;
}
.final-button {
    background-color: #ff6600;
}