@font-face {
    font-family: 'Night';
    src: local('Night sans SemiBold'), local('Night-sans-SemiBold'),
    url('../fonts/Nightsans-SemiBold.woff2') format('woff2'),
    url('../fonts/Nightsans-SemiBold.woff') format('woff'),
    url('../fonts/Nightsans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
html, body {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    transition: 0.15s;
    opacity: 0.8;
}

h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

p {
    font-size: 22px;
    line-height: 1.6363636364;
    margin-bottom: 30px;
    font-weight: 300;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    border: none;
    outline: none;
    background: none;
}

header {
    padding: 10px 70px 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    box-shadow: 0 1px 1px rgb(0 0 0 / 7%);
    width: 100%;
    background: #fff;
    z-index: 999;
}

header ul {
    display:flex;
    gap: 15px;
}
header ul a {
    font-size: 1.2rem;
}

.header__logo {
    font-family: Night;
    font-size: 42px;
}

.header__btns {
    display: flex;
    gap: 60px;
    row-gap: 10px;
    align-items: center;
}

.header__logo-sp-1 {
    color: #333333;
}
.header__right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__logo-sp-2 {
    color: #FF671F;
}

.header__registerBtn {
    display: block;
    line-height: 40px;
    padding: 0 30px;
    text-align: center;
    margin-top: 5px;
    background: #FFFFFF;
    color: rgba(25, 111, 252, 1);
    border: 1px solid rgba(25, 111, 252, 1);
    border-radius: 0px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.header__registerBtn:hover {
    opacity: 0.75;
    transition: 0.15s;
    background: #F5F7FA;

}

.header__changeLang__wrapper {
    position: relative;
}

.header__langBtn {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 200;
    color: rgba(51, 51, 51, 1);
    cursor: pointer;
}

.header__langBtn img {
    height: 20px;
    width: 20px;
}

.header__changeLang__wrapper:hover span {
    color: #0047BB;
}

.header__changeLang__wrapper:hover img {
    filter: invert(15%) sepia(57%) saturate(4754%) hue-rotate(212deg) brightness(102%) contrast(104%);
}

.header__lang-list {
    position: absolute;
    width: 200px;
    background: #fff;
    z-index: 9999;
    left: -20px;
    text-align: left;
    box-shadow: 0 4px 12px 0 rgb(0 0 0 / 10%);
    max-height: 0px;
    transition: all .5s;
    overflow: hidden;
}

.header__changeLang__wrapper:hover .header__lang-list {
    max-height: 1000px;
    transition: all .5s;
}

.header__lang-list li {
    line-height: 42px;
    cursor: pointer;
    padding: 0 30px 0 35px;
}

.header__lang-list li a {
    display: inline-block;
    width: 100%;
    color: #333333;
}

.header__lang-list li.active a {
    color: #0047BB;
}

.webpage__wrapper {
    padding: 120px 0 0 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section__wrapper {
    padding-left: calc(8% + 15px);
    padding-right: calc(8% + 15px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section__inner {
    width: 100%;
}

.section__inner.section-app {
    width: 100%;
    max-width: 928px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-app .app-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.section-app h1 {
    color: #0047bb;
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: -0.036em;
    line-height: 1.285;
    text-align: center;
}

.section-app h3 {
    font-weight: 600;
    color: #202020;
    text-align: center;
    letter-spacing: -0.036em;

}

.section-app p {
    text-align: center;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 30px;
}

.blueBtn {
    letter-spacing: 0.125em;
    text-indent: -0.1em;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 60px;
    padding: 23px 40px;
    font-size: 24px;
    background: #0047bb;
    color: #fff;
    border-radius: 999px;
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgb(0 0 0 / 10%), 0 2px 4px rgb(0 0 0 / 10%);
    letter-spacing: 0.125em;
    text-indent: -0.1em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;


}

.blueBtn:hover {
    box-shadow: 0 6px 7px 0 rgb(0 0 0 / 15%), 0 0px 5px 0px rgb(0 0 0 / 10%);
    opacity: 1;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    transition: 0.35s;

}

.section-app .phoneImg {
    width: 100%;
    height: 500px;
    object-position: top;
    object-fit: cover;
}

.section__wrapper.section-award-wrap {
    padding: 120px calc(8% + 15px);
    background: #F6F6F6;
}

.section-award {
    display: flex;
    gap: 70px;
    align-items: center;
}

.section-award div {
    width: 50%;
}

.section-award .awardImg-div img {
    width: 100%;
}

.section-award h2 {
    color: #0047bb;
    font-size: 42px;
    line-height: 1.285;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.036em;
}

.awardImg-div h2 {
    display: none;
    width: 100%;
    text-align: center;
}

.award-content ul {
    margin-top: 50px;
}

.award-content li {
    margin-bottom: 60px;
}

.award-content li h4 {
    font-size: 30px;
    font-weight: 500;
    color: #333333;
    margin: 0;
    line-height: 1.6363636364;
}

.award-content li p {
    font-size: 24px;
    font-weight: 400;
    color: #8A8A8A;
}

.award-content li a {
    color: #1d1dff;
    font-size: 30px;
    font-weight: 500;
    transition: 0.15s;
}

.award-content li a:hover {
    transition: 0.15s;
    opacity: 0.8;
}

.section-advantages {
    padding: 150px 0 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.h-blue {
    color: #0047bb;
    font-size: 42px;
    line-height: 1.285;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.036em;
}

.section-advantages h2 {
    width: 100%;
    text-align: center;
}

.section-advantages ul {
    opacity: 0.9;
    font-size: 20px;
    line-height: 38px;
    text-align: left;
    list-style: disc;
    color: #202020;


}

.section-advantages ul .last {
    list-style: none;
    margin-left: -25px;
}

.section-advantages ul .last a {
    text-decoration: underline;
    color: #2461c5;
    font-style: italic;
}

.advantages-img {
    width: 100%;
    max-width: 722px;
    margin-bottom: 60px;
}

.downloadApp__wrapper {
    display: flex;
    justify-content: space-around;
    gap: 25px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 557px;
}

.downloadApp__wrapper img {
    width: 100%;
    max-width: 160px;
}

.section-regulated_wrapper {
    background-position: center;
    background-size: cover;
    padding-top: 200px;
    padding-bottom: 200px;
}

.section-regulated__inner p {
    opacity: 0.8;
    width: 100%;
    max-width: 559px;
    margin-bottom: 113px;
}

.section-regulated__inner .blueBtn {
    margin: 0 auto 0 auto;
}

.section-regulated__inner .btn-wrap-center {
    width: 100%;
    display: flex;
    justify-items: center;
}

.section-activation-wrap {
    background: #F6F6F6;
}

.section-activation {
    max-width: 1114px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-activation h2 {
    max-width: 532px;
    margin-bottom: 20px;
    text-align: center;
}

.section-activation .steps {
    display: flex;
    gap: 20px;
}

.section-activation .steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-activation .steps img {
    margin-top: 50px;
    margin-bottom: 40px;
    max-width: 186px;
    width: 100%;
}

.section-activation .steps h3 {
    font-size: 30px;
    color: #333;
    font-weight: 400;
}

.section-activation .steps p {
    opacity: 0.6;
    font-size: 24px;
    color: #8A8A8A;
    line-height: 26px;
    font-weight: 400;
    text-align: center;
}

.section-activation .btn-wrap-center {
    margin: 50px 0 40px 0;
}

.section-payMethods-wrap {
    padding: 40px 0 30px 0;
}

.section-payMethods-wrap h2 {
    text-align: center;
}

.section-payMethods-wrap ul {
    margin-top: 50px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.section-payMethods-wrap ul img {
    width: 100%;
    max-width: 200px;
}

.section-payMethods-wrap .section__inner {
    max-width: 1021px;
    width: 100%;
}

.modalRegisterNow {
    background: #fff;
    max-width: 600px;
    width: 100%;
    height: 150px;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    justify-content: center;
    align-items: center;
}

.modalRegisterNow.visible {
    display: flex;
}

.modalRegisterNow a {
    display: block;
    width: 336px;
    height: 72px;
    line-height: 72px;
    background: rgba(25, 111, 252, 1);
    border-radius: 3px;
    font-size: 29px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    text-decoration: none;
}

.section-trade-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-trade-wrap img {
    width: 100%;
}

.section-trade-wrap .section__inner {
    display: flex;
    gap: 65px;
}

.section-trade-wrap .section__inner div {
    width: 50%;
}

.h-border-bottom {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 1px solid #FF671F;
    font-size: 32px;
    font-weight: 400;
    color: #333333;
    line-height: 48px;
}

.small-p {
    padding-top: 20px;
    padding-bottom: 15px;
    font-size: 16px;
    font-family: roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 200;
    color: rgba(51, 51, 51, 1);
    line-height: 24px;
    font-weight: 400;
    margin: 0;
}

.mob-view {
    display: none !important;
}

.btnOpenAcc {
    display: inline-block;
    outline: none;
    background: #FFFFFF;
    border: 1px solid #0047BB;
    margin: 0;
    border-radius: 0;
    line-height: 40px;
    font-size: 16px;
    margin-bottom: 20px;
    color: #0047BB;
    padding: 0 16px;
    font-family: roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    transition: background .25s;
    -moz-transition: background .25s;
    -webkit-transition: background .25s;
    -o-transition: background .25s;
}

.btnOpenAcc:hover {
    color: #FFFFFF;
    background: #0047BB;
    opacity: 1;
}

.section-platforms-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-platforms-wrap .section__inner {
    display: flex;
    gap: 60px;
    width: 100%;
}

.section-platforms-wrap div {
    width: 50%;
}

.section-platforms-wrap img {
    width: 100%;
}

.section-platforms-wrap .h-border-bottom {
    position: relative;
    width: 100%;
}

.a-hov-red {
    position: absolute !important;
    right: 0;
    font-size: 16px;
    color: #333333;
    bottom: 6px;
    font-weight: 400;
    padding-right: 12px;
}

.a-hov-red:after {
    content: "";
    position: absolute;
    right: 0;
    width: 6px;
    height: 6px;
    border: #333333 solid;
    border-top: 2px;
    border-left: 2px;
    top: 50%;
    margin-top: -3px;
    transform: rotate(-45deg);
    border-radius: 2px;
}

.a-hov-red:hover {
    opacity: 1;
    color: #FF671F;
}

.a-hov-red:hover::after {
    border-color: #FF671F;
}

.section-platforms-wrap .h-border-bottom span {
    padding-right: 75px;
}

.section-platforms-wrap ul {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-platforms-wrap ul li {
    padding-left: 20px;
    position: relative;
    width: 100%;

}

.section-platforms-wrap ul li img {
    width: 10px;
    position: absolute;
    left: 0;
    top: 6px;
}

.section-platforms-wrap ul li p {
    padding: 0;
}

.section-trust-wrap {
    padding-top: 40px;
    padding-bottom: 60px;
}

.section-trust-wrap .section__inner {
    display: flex;
    gap: 60px;
    width: 100%;
}

.section-trust-wrap .section__inner div {
    width: 100%;
}

.section-trust-wrap .section__inner .h-border-bottom {
    width: 100%;
}

.trust-div400 {
    max-width: 400px;
}

.section-trust-wrap .section__inner a {
    position: relative;
    right: 0;
    font-size: 16px;
    color: #333333;
    bottom: 6px;
    font-weight: 400;
    padding-right: 12px;
}

.section-trust-wrap .section__inner a:after {
    content: "";
    position: absolute;
    right: 0;
    width: 6px;
    height: 6px;
    border: #333333 solid;
    border-top: 2px;
    border-left: 2px;
    top: 50%;
    margin-top: -3px;
    transform: rotate(-45deg);
    border-radius: 2px;
}

.section-trust-wrap .section__inner a:hover {
    opacity: 1;
    color: #FF671F;
}

.section-trust-wrap .section__inner a:hover::after {
    border-color: #FF671F;
}

.section-trust-wrap .section__inner ul {
    display: flex;
    gap: 35px;
    flex-direction: column;
}

.section-trust-wrap .section__inner li {
    position: relative;
    padding-left: 52px;
}

.section-trust-wrap .section__inner li p {
    padding: 0;
}

.section-trust-wrap .section__inner li img {
    width: 32px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -16px;
}

.trust-div650 {
    max-width: 650px;
}

.six-divs-wrap {
    padding-top: 60px;
    padding-bottom: 40px;
}

.six-divs-wrap .section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.six-divs-wrap .h-border-bottom {
    padding-left: 12px;
    padding-right: 12px;
}

.three-divs {
    display: flex;
    gap: 50px;
    max-width: 850px;
    margin-top: 40px;
}

.three-divs .wrap {
    width: 100%;
    display: flex;
    gap: 30px;
}

.three-divs .wrap img {
    width: 60px;
    height: 60px;
}

.three-divs .wrap h5 {
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: rgba(51, 51, 51, 1);
    line-height: 24px;
    margin-bottom: 6px;
}

.p-16 {
    text-align: left;
    font-size: 16px;
    font-weight: 200;
    color: rgba(51, 51, 51, 1);
    line-height: 24px;
}

.faq-wrap {
    width: 100%;
    max-width: 980px;
    padding: 60px 100px 80px 100px;
    background: #F5F7FA;
    flex-direction: column;
}

.faq-div-up {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.faq-div-up h3 {
    display: inline-block;
    font-size: 32px;
    font-weight: 500;
    line-height: 48px;
}

.faq-div-up a {
    height: fit-content;
    top: 0;
    margin-top: 10px;
    color: #8C9BA5;
    font-weight: 400;
}

.faq-div-up a:after {
    border-color: #8C9BA5;
}

.faq-wrap .section__inner {
    width: 100%;
    background: #FFFFFF;
    padding: 50px 80px;
    border-radius: 20px;
}

.faq-block {
    border-bottom: 1px solid #ddd;
}

.faq-block h4 {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    color: rgba(51, 51, 51, 1);
    line-height: 32px;
    padding: 15px 15px 15px 30px;

}

.faq-block h4::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
    height: 8px;
    width: 8px;

    border: rgba(51, 51, 51, 1) solid;
    border-bottom: 2px;
    border-left: 2px;
    transform: rotate(135deg);
    border-radius: 2px;
}

.section-main-features {
    padding-top: 40px;
    padding-bottom: 80px;
}

.section-main-features .section__inner {
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-main-features .section__inner h2 {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.features-wrap {
    margin-top: 40px;
    display: flex;
    gap: 100px;
}

.feature-div {
    padding-left: 50px;
    position: relative;
}

.feature-div h5 {
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    color: rgba(51, 51, 51, 1);
    line-height: 32px;
    margin-bottom: 9px;
}

.feature-div img {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
}

.features-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 50%;
}

.section-footer {
    padding: 36px 0 80px 0;
    background: #EFF1F2;
}

.section-footer .section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
}
.section-footer {
    padding-top: 20px!important;
}
.footer-app-logo {
    height: 50px;
    width: 50px;
    margin-bottom: 40px;
}

.footer-follow-p {
    color: rgba(77, 85, 90, 1);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-social-medias {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: center;
}

.footer-social-medias img {
    width: 36px;
    height: 36px;
}

.footer-div-text .a-link a {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    color: rgba(140, 155, 165, 1);
    cursor: pointer;
}

.footer-div-text .a-link {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(77, 85, 90, 1);
    line-height: 24px;
    margin-bottom: 20px;
}


@media screen and (max-width: 1024px) {
    .section-award {
        flex-direction: column-reverse;
        gap: 0;
    }

    .section-award div {
        width: 100%;
    }

    .section-trade-wrap .section__inner {
        flex-direction: column-reverse;
        gap: 0;
    }

    .PC-view {
        display: none !important;
    }

    .mob-view {
        display: block !important;
    }

    .section-trade-wrap img {
        margin-top: 20px;
    }

    .btnOpenAcc {
        display: block;
        width: 100%;
        color: rgb(255, 255, 255);
        font-weight: 500;
        font-size: 16px;
        line-height: 18px;
        text-align: center;
        background: rgb(0, 71, 187);
        padding: 12px 0px;
    }

    .section-trade-wrap .section__inner div {
        width: 100%;
    }

    .section-platforms-wrap .h-border-bottom span {
        max-width: 275px;
    }

    .section-platforms-wrap .section__inner {
        flex-direction: column;
    }

    .section-platforms-wrap div {
        width: 100%;
    }

    .section-trust-wrap .section__inner {
        flex-direction: column;
        gap: 0;
    }

    .trust-div650 {
        max-width: 100%;
    }

    .trust-div400 {
        max-width: 100%;
    }

    .trust-div400 .small-p {
        padding-left: 13px;
        padding-right: 7px;
    }

    .three-divs {
        flex-direction: column;
        gap: 10px;
    }

    .features-wrap {
        flex-direction: column;
        gap: 0px;
    }

    .features-wrap .features-block {
        width: 100%;
        gap: 0px;
    }

    .features-wrap .features-block h5 {
        font-size: 20px;
        line-height: 32px;
    }

    .features-wrap .features-block img {
        top: 0px;
    }
}

@media screen and (max-width: 768px) {

    .section__wrapper {
        padding: 0 15px;
    }
    .header__logo {
        font-size: 20px;
    }

    .header__btns {
        flex-direction: column;
    }

    .header__registerBtn {
        display: inline-block;
        text-align: center;
        height: 36px;
        line-height: 36px;
        padding: 0 2px;
        background: #3682FF;
        border-radius: 2px;
        border: 1px solid #0B6AFF;
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 1);

        margin-top: 3px;
    }

    .section-app h1 {
        font-size: 32px;
    }

    .section-app h2 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }

    .blueBtn {
        padding: 17px 28px;
        font-size: 15px;
    }
    .modalRegisterNow {
        height: 85px;
    }
    .modalRegisterNow a {
        font-size: 20px;
        width: 260px;
        height: 50px;
        line-height: 50px;
    }

    header {
        flex-direction: column;
        padding: 10px 15px 10px 15px;
        gap: 10px;
    }

    .section-app .phoneImg {
        height: 300px;
    }

    .award-content h2 {
        display: none;
    }

    .awardImg-div h2 {
        display: block;
    }

    .h-blue {
        font-size: 32px;
    }

    .award-content li h4 {
        font-size: 18px;
        font-weight: 500;
    }

    .award-content li p {
        font-size: 14px;
        font-weight: 400;
    }

    .award-content li a {
        font-size: 18px;
        font-weight: 500;
    }

    .award-content li {
        margin-bottom: 40px;
    }

    .award-content ul {
        margin: 0;
    }

    .section-advantages ul {
        font-size: 16px;
        line-height: 30px;


    }

    .section-activation .steps h3 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .section-activation .steps p {
        font-size: 16px;
        line-height: 18px;
        margin: 0 0 30px;
    }

    .section-payMethods-wrap ul {
        flex-direction: column;
    }

    .h-border-bottom {
        padding-right: 15px;
        font-size: 24px;
        color: rgb(51, 51, 51);
        line-height: 32px;
        padding-bottom: 6px;
    }

    .small-p {
        font-size: 14px;
        padding-bottom: 12px;
    }

    .faq-wrap {
        padding: 60px 20px 80px 20px;
        position: relative;
        margin: 20px;
        width: calc(100% - 40px);
    }

    .faq-wrap .section__inner {
        padding: 20px 20px 40px 20px;
    }

    .faq-wrap .faq-div-up {
        position: unset;
    }

    .faq-wrap .faq-div-up a {
        position: absolute;
        top: unset;
        bottom: 35px;
        left: 50%;
        margin-left: -18px;
        width: fit-content;
    }

    .faq-wrap .faq-block h4 {
        font-size: 16px;
        padding-right: 0;
        line-height: 24px;
    }

    .p-16 {
        font-weight: 300;
        font-size: 14px;
        line-height: 24px;
    }
}

/* Lead Form Styles */
.lead-form-section {
    background: linear-gradient(135deg, #1a4d8f 0%, #2563a8 100%);
    padding: 80px 20px;
}

.lead-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.lead-form-header {
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.lead-form-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    line-height: 1.2;
}

.lead-form-subtitle {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.lead-form-card {
    background: white;
    border-radius: 15px;
    padding: 50px 45px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.lead-form-grid {
    display: grid;
    gap: 25px;
}

.lead-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.lead-form-group {
    width: 100%;
}

.lead-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a4d8f;
    font-size: 15px;
}

.lead-form-required {
    color: #e74c3c;
}

.lead-form-input,
.lead-form-select {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.lead-form-select {
    background-color: white;
    cursor: pointer;
}

.lead-form-input:focus,
.lead-form-select:focus {
    outline: none;
    border-color: #1a4d8f;
    box-shadow: 0 0 0 3px rgba(26,77,143,0.1);
}

.lead-form-checkbox-wrapper {
    margin-top: 10px;
}

.lead-form-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.lead-form-checkbox {
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.lead-form-checkbox-label a {
    color: #1a4d8f;
    text-decoration: underline;
}

.lead-form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #1a4d8f 0%, #2563a8 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(26,77,143,0.3);
}

.lead-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,77,143,0.4);
}

.lead-form-submit:active {
    transform: translateY(0);
}

.lead-form-security-note {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin-top: 10px;
    margin-bottom: 0;
}

.lead-form-stats {
    margin-top: 40px;
    text-align: center;
    color: white;
    opacity: 0.9;
}

.lead-form-stats-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.lead-form-stat-item {
    text-align: center;
}

.lead-form-stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.lead-form-stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lead-form-section {
        padding: 50px 15px;
    }

    .lead-form-header {
        margin-bottom: 30px;
    }

    .lead-form-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .lead-form-subtitle {
        font-size: 16px;
    }

    .lead-form-card {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .lead-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lead-form-grid {
        gap: 20px;
    }

    .lead-form-input,
    .lead-form-select {
        padding: 12px 15px;
        font-size: 15px;
    }

    .lead-form-label {
        font-size: 14px;
    }

    .lead-form-submit {
        padding: 15px;
        font-size: 16px;
    }

    .lead-form-checkbox-label {
        font-size: 13px;
    }

    .lead-form-stats {
        margin-top: 30px;
    }

    .lead-form-stats-grid {
        gap: 30px;
    }

    .lead-form-stat-number {
        font-size: 28px;
    }

    .lead-form-stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .lead-form-title {
        font-size: 24px;
    }

    .lead-form-subtitle {
        font-size: 14px;
    }

    .lead-form-card {
        padding: 25px 15px;
    }

    .lead-form-stats-grid {
        gap: 20px;
        flex-direction: column;
    }

    .lead-form-stat-number {
        font-size: 32px;
    }
}

/* Contact Page Styles */
.contact-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info-title {
    font-size: 28px;
    color: #1a4d8f;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a4d8f 0%, #2563a8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    margin-left: 20px;
}

.contact-info-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-info-content a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #2563a8;
    text-decoration: underline;
}

.contact-social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.contact-social-link {
    width: 40px;
    height: 40px;
    background: #1a4d8f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: #2563a8;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(26,77,143,0.3);
}

.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-form-title {
    font-size: 28px;
    color: #1a4d8f;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.contact-form-input,
.contact-form-textarea,
.contact-form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-input:focus,
.contact-form-textarea:focus,
.contact-form-select:focus {
    outline: none;
    border-color: #1a4d8f;
    box-shadow: 0 0 0 3px rgba(26,77,143,0.1);
}

.contact-form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1a4d8f 0%, #2563a8 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.contact-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,77,143,0.4);
}

.contact-map-section {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding-top: 25px;
}

.contact-map-container {
    width: 100%;
    height: 450px;
    border: none;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-page-wrapper {
        padding: 30px 15px;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 30px 20px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 24px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-right: 15px;
    }

    .contact-map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-info-section,
    .contact-form-section {
        padding: 20px 15px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 20px;
    }

    .contact-info-content h3 {
        font-size: 16px;
    }

    .contact-info-content p {
        font-size: 14px;
    }

    .contact-map-container {
        height: 300px;
    }
}






