/* Global Styles */
:root {
    --primary: #1d366a;
    --bg-cream: #fffff0;
    --text-dark: #333333;
    --text-gray: #666666;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    /* position: absolute; */
    width: 100%;
    z-index: 10;
    padding: 10px 20px 10px 20px;
    background: #fff;
    left: 0;
    right: 0;
    min-height: 60px;
    box-shadow: 0px 0px 10px #737373;
}

.navbar-brand {
    padding: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-pic {
    /* width: 55px;
    border-radius: 50%; */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-right: 0 !important;
}

.nav-link {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: #254891;
    opacity: 1;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 1;
    color: #fff;
}

.navbar .dropdown {
    display: flex;
    align-items: center;
}

.navbar .dropdown button {
    background-color: transparent;
    color: #000;
    padding: 5px 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    display: flex;
    align-items: center;
    margin: 0 0 0 10px;
}

.navbar .dropdown button.active {
    background-color: #f7fafc;
    color: #254891;
}

.navbar .dropdown button .icon {
    display: flex;
    align-items: center;
    margin: 0 10px 0 0;
}

.navbar .dropdown button .icon img {
    width: 20px;
    object-fit: contain;
}

.navbar .dropdown button:first-child {
    margin: 0;
}


/* Hero Section */
.hero {
    min-height: 480px;
    /* height: 60vh; */
    background-image: url('image/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    /* padding: 0rem 0 4rem; */
    padding: 0;
    width: 100%;
}

.index-2 .hero {
    background-image: none;
}

.index-2 .hero .hero-image {
    display: flex;
    align-items: center;
}

.index-2 .hero .hero-image img {
    width: 100%;
}

.index-2 .hero::before {
    display: none;
}

.index-2 .quote-form {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0px;
    width: 100%;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    text-align: left;
}

.hero p {
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: left;
    opacity: 0.95;
    max-width: 600px;
    margin: 0;
}

.key-benefits {
    padding: 0 50px 30px 50px;
}

.benefits-items .image {
    width: 50px;
    margin: 0 0 20px 0;
}

.benefits-items .image img {
    width: 100%;
    object-fit: contain;
}

.benefits-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.benefits-items .content p {
    font-size: 18px;
    color: #111111;
    font-family: Poppins, sans-serif !important;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

/* Quote Section */
.quote-section {
    padding: 50px 40px 50px 40px;
    background-color: var(--bg-cream);
    width: 100%;
}

.quote-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.quote-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.car-illustration {
    margin-top: 2rem;
    text-align: center;
}

.car-illustration img {
    max-width: 100%;
    height: auto;
}

.quote-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 430px;
    margin-left: auto;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--text-dark);
    background-color: white;
    transition: border-color 0.15s ease;
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 191, 166, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 0.875rem;
    background-color: var(--primary);
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #1d366a;
}
.btn.disabled, .btn:disabled, fieldset:disabled .btn { 
    background-color: #1d366a; 
}
.btn-check:checked + .btn,
.btn.active,.btn.show,.btn:first-child:active,
:not(.btn-check)+.btn:active
{ 
    background-color: #1d366a; 
}

/* Motor Product Section */

.motor-product-1 {
    padding: 80px 50px;
    background-color: #f7f7f7;
}

.mainTitle {
    padding-bottom: 50px;
    padding-left: 25px;
}

.motor-product-1 h1.mainTitle {
    font-family: "Open Sans", sans-serif;
    color: #2a2a2a;
    text-align: center;
    margin: 0 0 40px 0;
}

.motor-product-2 {
    padding: 80px 50px 0 50px;
}

h1.motor-product-2-title1 {
    color: #009245;
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 38px;
    text-align: center;
}

h2.motor-product-2-title2 {
    color: #606060;
    font-size: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 20px;
    font-family: "Open Sans", sans-serif;
    text-align: center;
}

p.motor-product-2-title3 {
    color: #009245;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    text-align: center;
}

img.motor-product-2-icon {
    padding: 20px 0;
}

p.motor-product-2-description {
    font-family: "Open Sans", sans-serif;
    text-align: center;
    color: #3b3b3b;
}

p.motor-product-2-title3 a {
    text-decoration: none;
    color: #009245;
}

p.clickhere {
    color: #606060;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

p.clickhere>a {
    color: #009245;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

/* FAQ Section */
.faq {
    padding: 50px 40px 40px 50px;
    width: 100%;
}

.faq h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-list {
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-button {
    width: 100%;
    padding: 1rem 0;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-button:hover {
    color: #002970;
}

.faq-answer {
    padding: 0 0 1rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.5;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-left: 1rem;
}

.faq-button[aria-expanded='true'] .arrow {
    transform: rotate(-135deg);
}

/* Footer */
footer {
    background-color: #0D345B;
    padding: 40px;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
}


.user-info {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center;
}

.user-info span {
    white-space: nowrap;
}

.brand {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-right a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .quote-text h2 {
        font-size: 1.75rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-right {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Step 1 Page Styles */
.step-1-main,
.step-2-main {
    max-width: 80rem;
    padding: 1.5rem .75rem;
}

.step-1-main h3 {
    font-size: 36px;
    font-weight: 800;
    padding-bottom: 0px;
    margin-bottom: 0;
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #000;
}

.step-1-main .txt_title {
    font-weight: bold;
    padding-bottom: 0px;
    padding-left: 2.25rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-1-main .pb0 {
    padding-bottom: 0;
}

.step-1-main .mb0 {
    margin-bottom: 0;
}

.step-1-main h6 {
    font-weight: bolder;
    margin-bottom: 1rem;
}


.step-1-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: #4a5568;
    gap: .75rem;
    /* gray-700 */
}

.step-1-header button {
    background: none;
    border: none;
    color: #718096;
    /* gray-500 */
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
}

.step-1-header button:hover {
    color: #4a5568;
    /* gray-700 */
}

.step-1-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0;
}

.step-1-subtitle {
    color: #4a5568;
    /* gray-700 */
    margin-bottom: 0;
}

.step-1-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.step-1-vehicle-details-inner,
.step-1-sum-covered-inner,
.step-1-insurance-details {
    background-color: #f7fafc;
    /* gray-50 */
    padding: .75rem 1.25rem;
    border-radius: 0.375rem;
}

.step-1-vehicle-details {
    padding-left: 2.25rem;
}

.step-1-vehicle-details h2,
.step-1-sum-covered h2,
.step-1-insurance-details h2 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-1-vehicle-details dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
}

.step-1-vehicle-details dt {
    font-size: 0.75rem;
    color: #4a5568;
    font-weight: 400;
    /* gray-500 */
}

.step-1-vehicle-details dd {
    font-size: 0.875rem;
    margin: 0;
    color: #000;
}

.step-1-sum-covered p {
    font-size: 0.875rem;
    color: #718096;
    /* gray-500 */
    margin-bottom: 1rem;
}

.step-1-sum-covered .options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-1-sum-covered .option {
    background: white;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    /* gray-200 */
    transition: border-color 0.2s ease;
}

.step-1-sum-covered .option:hover {
    border-color: #254891;
    /* teal-500 */
}

.step-1-sum-covered .option input[type="radio"] {
    accent-color: #254891;
    /* teal-500 */
    width: 20px;
    height: 20px;
    cursor: pointer;
    /* border: 2px solid #254891; */
    border-radius: 50%;
    /* background-color: white; */
    /* transition: background-color 0.2s, border-color 0.2s; */
}

/* .step-1-sum-covered .option input[type="radio"]:checked {
    background-color: #254891;
    border-color: #254891;
} */

.step-1-sum-covered .slider-container {
    margin-top: 1rem;
}

.items-start span {
    width: 33%
}

.items-start .text-xs {
    color: #718096;
    font-size: 12px;
}

.step-1-sum-covered label {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    display: block;
}

.step-1-sum-covered label span.text-sm {
    display: block;
}

.step-1-sum-covered label span.font-medium {
    font-weight: 600;
    font-size: 16px;
}

.step-1-insurance-details table tbody tr:first-child td {
    padding-top: 0;
    /* border-bottom: none; */
}

/* .step-1-insurance-details table tbody tr:nth-child(3) td,
.step-1-insurance-details table tbody tr:nth-child(5) td,
.step-1-insurance-details table tbody tr:nth-child(7) td {
    border-bottom: none;
} */

.details-box .row-detail span {
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
}

/* .step-1-insurance-details table tbody tr:nth-child(7) td.text-right,
.step-1-insurance-details table tbody tr:nth-child(7) td {
    font-weight: 600;
    color: #000;
}

.step-1-insurance-details table tbody tr:nth-child(7) td {
    font-weight: bold;
} */

.step-1-sum-covered .slider {
    width: 100%;
    height: 6px;
    border-radius: 9999px;
    background: #e2e8f0;
    /* gray-200 */
    position: relative;
}

.step-1-sum-covered .slider-filled {
    height: 100%;
    background: #254891;
    /* teal-500 */
    border-radius: 9999px 0 0 9999px;
    position: absolute;
    top: 0;
    left: 0;
}

.step-1-sum-covered .slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid #254891;
    /* teal-500 */
    border-radius: 50%;
    cursor: pointer;
}

.step-1-insurance-details table {
    width: 100%;
    border-collapse: collapse;
}

.step-1-insurance-details td {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
}

.step-1-insurance-details tr:not(:last-child) td {
    border-bottom: 1px solid #e2e8f0;
    /* gray-200 */
}

.step-1-insurance-details .total-row dt,
.step-1-insurance-details .total-row dd {
    font-weight: 700;
    font-size: 1.125rem;
}


.step-1-fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f7fafc;
    /* gray-50 */
    padding: 1.5rem 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
}

.step-1-fixed-bottom dl {
    margin: 0;
}

.step-1-fixed-bottom dt {
    font-size: 1.125rem;
    font-weight: 700;
}

.step-1-fixed-bottom dd {
    font-size: 1.5rem;
    font-weight: 800;
}

.btn {
    background-color: #1d366a;
    /* teal-500 */
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: #254891;
    /* teal-700 */
}

.step-1-footer-note {
    font-size: 0.75rem;
    color: #718096;
    /* gray-500 */
    margin-top: 0.5rem;
    text-align: left;
}

.width100 {
    width: 100%;
}

#sum_insured {
    width: 100%;
    accent-color: #254891;
}


input[type="range"] {
    -webkit-appearance: none;
    width: 200px;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #254891;
    /* Green thumb */
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #254891;
    border-radius: 50%;
    cursor: pointer;
}

/* Full page loader */
#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Spinner styles */
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top-color: #254891;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.form-check-input:checked {
    background-color: #254891;
    border-color: #254891;
}

.key-feature {
    padding: 60px 0 36px 0;
}

.feature-col-inner .image {
    margin: 0 0 20px 0;
}

.feature-col-inner .image img {
    width: 60px;
}

.feature-col-inner .content h2 {
    font-size: 25px;
    color: #000;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.feature-col-inner .content p {
    font-size: 18px;
    color: #707070;
    font-weight: 400;
    line-height: 1.5;
}

.hero .carousel-control-next {
    right: 30px !important;
    width: 10%;
    justify-content: flex-end
}

.hero .carousel-control-prev {
    left: 30px !important;
    width: 10%;
    justify-content: flex-start;
}

.select-group {
    display: flex;
    flex-wrap: wrap;
}

.select-group label {
    width: 100%;
}

.select-group select {
    width: 25%;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--text-dark);
    background-color: white;
    transition: border-color 0.15s ease;
    appearance: none;
    background: url(image/select-chevron-icon.svg) no-repeat 90% 50%;
}

.select-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 191, 166, 0.1);
}

.select-group input {
    width: calc(75% - 20px);
    margin-left: auto;
}

.hero-carousel .carousel-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    max-height: 600px;
}

.hero-form-column {
    position: absolute;
    top: 0;
    right: 100px;
    bottom: 0;
    margin: auto 0;
    display: flex;
    align-items: center;
    padding: 0;
}

.mobile-img {
    display: none;
}
.mobile-pay-btn {
    display: none;
}

#stickyTotalBox {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  font-family: sans-serif;
}

/* Blue header strip */
#stickyTotalBox .blue-header {
  background-color: #0D345B; /* Blue */
  font-weight: bold;
  font-size: 14px;
}

/* Main content bar */
#stickyTotalBox .content-bar {
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Left side price info */
#stickyTotalBox .price-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  color: #000;
  margin-left: 10px;
}

#stickyTotalBox .monthly-rate {
  font-weight: 600;
  color: #0D345B;
  font-size: 13px;
}

#stickyTotalBox .final-total {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}

/* Right side pay button */
#stickyTotalBox .pay-now-btn {
  background-color: #ff8000;
  color: white;
  font-weight: 600;
 /*  padding: 10px 20px; */
  /* font-size: 16px; */
  border-radius: 0px;
  border: none;
  white-space: nowrap;
  width: 200px;
}
.px-3{
    padding-left: 1rem !important;
    padding-right: 0;
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design for Step 1 Page */

@media screen and (max-width: 1299px) {
    .select-group select {
        width: 30%;
    }

    .select-group input {
        width: calc(70% - 10px);
    }
}

@media screen and (max-width: 1100px) {
    .select-group select {
        width: 35%;
    }

    .select-group input {
        width: calc(65% - 10px);
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-content .footer-left {
        margin: 0 0 20px 0;
    }

    .mobile-pay-btn {
        display: block;
    }
    .desktop-pay-btn {
        display: none;
    }
}

@media (max-width: 1024px) {
    .step-1-content {
        grid-template-columns: 1fr;
    }

    .step-1-fixed-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .step-1-fixed-bottom button {
        width: 100%;
    }

    .hero-form-column {
        position: relative;
        left: 0;
        right: 0;
        margin: 40px auto 0 auto;
    }

    .index-2 .hero {
        padding-bottom: 40px;
    }

    .mobile-img {
        display: block;
    }
    .desktop-img {
        display: none;
    }
}

@media (max-width: 991px) {
    .quote-form {
        margin: 0px auto 0 auto;
    }

    .benefits-items .content p {
        font-size: 16px;
    }

    /* .hero-carousel .carousel-item img {
        max-height: 550px;
        min-height: 550px;
    } */

    .hero-form-column {
        right: 0;
    }

    .key-feature>.row {
        margin: 0;
    }
}

@media (max-width: 767px) {

    .motor-product-2 {
        padding: 40px 20px 0 20px;
    }

    .key-benefits {
        padding: 0 20px 40px 20px;
    }

    .motor-product-1,
    .faq,
    footer {
        padding: 40px 20px;
    }

    /* .hero {
        padding: 40px 0;
    } */

    .hero-content {
        padding: 0 0px;
    }

    .motor-product-1 img.motor-product-1-img {
        margin: 0 auto;
        display: block;
    }

    .motor-product-1 h5.subTitle,
    .motor-product-1 p.planDescription,
    .motor-product-1 p {
        text-align: center;
    }

    .motor-product-1 .col-lg-9 br {
        display: none;
    }

    footer .user-info {
        flex-wrap: wrap;
    }

    .key-benefits_wrapper .row .benefits-items-wrapper {
        padding: 0 !important;
        margin: 0 0 20px 0;
    }

    .key-benefits_wrapper .row .benefits-items-wrapper:last-child {
        margin: 0;
    }

    .key-feature .row {
        margin: 0;
    }

    .key-feature-row_wrapper {
        margin: 0 !important;
    }

    .feature-col_wrapper {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .hero-form-column {
        margin: 30px auto 0 auto;
    }
}

@media (max-width: 640px) {
    .step-1-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .step-1-header h1 {
        font-size: 1.75rem;
    }

    .step-1-subtitle {
        margin-bottom: 1rem;
    }

    .quote-form {
        max-width: 475px;
    }
}

@media screen and (max-width: 500px) {
    .quote-form {
        max-width: 320px;
        padding: 20px;
    }

    .hero .carousel-control-next {
        right: 4px !important;
        width: 6%;
    }

    .hero .carousel-control-prev {
        left: 4px !important;
        width: 6%;
    }

    .select-group select {
        width: 50%;
    }

    .select-group input {
        width: calc(50% - 10px);
    }
}