/* @font-face {
  font-family: "Segoe UI";
  font-style: normal;
  font-weight: normal;
  src: url("../home-page-v1/segoe/Segoe UI.woff") format("woff");
}

@font-face {
  font-family: "Segoe UI Bold";
  font-style: normal;
  font-weight: normal;
  src: url("../home-page-v1/segoe/Segoe UI Bold.woff") format("woff");
} */

body {
    font-family: "Inter", sans-serif !important;
}
.logo-container {
    position: absolute;
    top: 69px;
    left: 103px;
}
.logo-container img {
    width: 26%;
    background: #fff;
    padding: 0 15px;
}
.logo-container span {
    width: 26%;
    padding: 9px 38px;
    color: #fff;
    font-size: 39px;
    background-color: #2b507f;
}

form {
    padding: 70px 20px 20px 95px;
    max-width: 900px;/*760*/
    margin: auto;
    font-family: "Inter", sans-serif;
}
.form-group {
    display: flex;
}
label {
    margin-left: 7px;
    width: 100%;
    font-weight: 600;
    color: #1e3a5fc2;
}
.form-control {
    border: 1px solid #b2a6a6 !important;
    border-radius: 7px !important;
}
.error-message {
    color: red;
    font-size: 13px;
    position: absolute;
    right: 21px;
    bottom: -16px;
    font-family: "Inter", sans-serif;
}
.error-border {
    border: 2px solid red !important;
    outline: none;
    box-shadow: 0 0 4px rgba(255, 0, 0, 0.4);
}
#text-icon {
    font-size: 34px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    margin-left: 25px;
    /* padding-bottom: 5px; */
    /* color: #364252; */
    color: #1e3a5f;
    text-transform: uppercase;
    margin-bottom: -44px;
}
#insurance-form h2 {
    color: #000;
    padding-bottom: 5px;
    font-size: 56px;
    font-weight: 700;
}
#insurance-form h6 {
    font-size: 23px;
    margin-left: 24px;
    margin-bottom: 24px;
    font-weight: 600;
    margin-top: 70px;
    color: #1e3a5f;
}
#insurance-form h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-left: 24px;
}
/* .sendEmail {
    font-size: 23px;
    color: #fff;
    background-color: #27bace;
    border: 1px solid #27bace;
    margin-left: 24px;
    margin-right: auto;
    font-family: "Inter", sans-serif;
    position: relative;
    display: block;
    padding: 7px 32px;
    cursor: pointer;
    border-radius: 5px;
    width: 50%;
} */

.btn-yellow {
    background-color: #ffce00;
    color: #1e3a5f;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    width: 50%;
    margin: 0 auto;
    margin-top: 42px;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.btn-yellow:hover {
    background-color: #e5b800;
}
.form-group {
    display: flex;
    gap: 1rem;
}

@media (max-width: 767px) {
    form {
        padding: 100px 0;
        max-width: 760px;
        /* margin: auto; */
        font-family: "Inter", sans-serif;
    }
    .logo-container img {
        width: 81%;
        background: #fff;
        padding: 0 15px;
    }
    .logo-container {
        position: absolute;
        top: 80px;
        left: 60px;
    }
    #text-icon {
        margin-left: 0;
    }
    #insurance-form h6 {
        margin-left: 4px;
        font-size: 26px;
    }
    #insurance-form h4 {
        margin-left: 4px;
    }
}


.site-footer {
    background: linear-gradient(90deg, #203e66 0%, #3076bb 100%);
    color: white;
    padding: 0px 0 20px 0px;
}
.footer-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.copyright-text {
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    opacity: 0.8;
}
.legal-links {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
}
.legal-link {
    color: white;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.legal-link:hover {
    opacity: 1;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 2.5rem);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: clamp(1rem, 2vw, 1.5rem);
    }

    .legal-links {
        justify-content: center;
    }
    .form-group {
        display: block;
    }
}
