@font-face {
  font-family: "Enterprise Sans VF";
  src: url("../fonts/EnterpriseSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Enterprise Sans VF";
  src: url("../fonts/EnterpriseSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Enterprise Sans VF";
  background-color: #f3f3f3;
  color: #4b4d4f;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.header {
  background: white;
  box-shadow: 0px 2px 6px 0px rgba(185, 185, 185, 0.4);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.header-content {
  padding: 27px 155px;
  padding-left: 154px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 769px) and (max-width: 1439px) {
  .header-content {
    padding: 27px 50px;
  }
}
@media (max-width: 768px) {
  .header-content {
    padding: 23px 17px;
  }
}

.logo {
  width: 115px;
  height: 34px;
}
@media (max-width: 768px) {
  .logo {
    width: 110px;
    height: 32px;
  }
}

.emergency-banner {
  background: #d9f6fa;
  padding: 10px 24px;
  text-align: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.emergency-banner p {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  color: #002677;
}
@media (max-width: 768px) {
  .emergency-banner p {
    font-size: 14px;
  }
}

.welcome-section {
  background: #faf8f2;
  padding: 50px 100px 0;
  position: relative;
  min-height: 548px;
}
@media (min-width: 769px) and (max-width: 1439px) {
  .welcome-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 50px 0 0 50px;
    padding-bottom: 70px;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .welcome-section {
    padding: 0px;
  }
}

.welcome-content {
  max-width: 544px;
  padding-left: 54px;
  position: relative;
  z-index: 2;
  top: 70px;
}
@media (min-width: 769px) and (max-width: 1439px) {
  .welcome-content {
    flex: 1;
    min-width: 0;
    max-width: none;
    padding-left: 0;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .welcome-content {
    max-width: 100%;
    padding: 20px 17px 5px;
    top: auto;
  }
}

.welcome-title {
  font-size: 52px;
  font-weight: 700;
  color: #002677;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .welcome-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
}
.welcome-title .tm {
  font-size: 18px;
  vertical-align: super;
  line-height: 0;
  margin-left: 2px;
  position: relative;
  top: -4px;
}
@media (max-width: 768px) {
  .welcome-title .tm {
    font-size: 12px;
    top: -3px;
  }
}

.welcome-description {
  font-size: 18px;
  line-height: 1.4;
  color: #4b4d4f;
  margin-bottom: 24px;
  width: auto;
}
@media (max-width: 768px) {
  .welcome-description {
    font-size: 16px;
    margin-bottom: 15px;
    width: auto;
  }
}

.welcome-image {
  position: absolute;
  right: 0;
  top: 37px;
  width: 689px;
  height: 455px;
  overflow: hidden;
}
@media (min-width: 769px) and (max-width: 1439px) {
  .welcome-image {
    position: relative;
    right: auto;
    top: auto;
    flex-shrink: 0;
    width: 44%;
    height: 360px;
    align-self: stretch;
  }
}
@media (max-width: 768px) {
  .welcome-image {
    position: relative;
    right: 0;
    top: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 12px 0;
    padding-left: 17px;
  }
}
.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
  position: relative;
}
@media (max-width: 768px) {
  .welcome-image img {
    object-fit: cover;
  }
}

.features-list {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .features-list {
    flex-direction: column;
    gap: 8px;
    opacity: 0.8;
    margin-bottom: 15px;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .feature-item {
    justify-content: flex-start;
  }
}

.feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 14px;
  line-height: 1.4;
  color: #4b4d4f;
}
@media (max-width: 768px) {
  .feature-text {
    font-weight: 500;
  }
}

.btn-primary {
  background: #002677;
  color: white;
  border: 1px solid #002677;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.35;
  height: 48px;
  width: 320px;
}
.btn-primary:hover {
  background: #001a54;
}
@media (max-width: 768px) {
  .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 12px 24px;
  }
}

.btn-icon {
  width: 8px;
  height: 18px;
  display: block;
  flex-shrink: 0;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .btn-icon {
    width: 7px;
    height: 16px;
  }
}

.terms-text {
  font-size: 14px;
  line-height: 1.4;
  color: #4b4d4f;
  margin-top: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .terms-text {
    font-size: 12px;
    margin-bottom: 0px;
  }
}
.terms-text a {
  color: #0c55b8;
  text-decoration: underline;
  font-weight: 500;
}

.stats-section {
  background: white;
  padding: 40px 155px;
  display: flex;
  justify-content: center;
  gap: 123px;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1439px) {
  .stats-section {
    padding: 40px 50px;
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .stats-section {
    padding: 25px 52px 30px;
    gap: 45px;
    flex-wrap: wrap;
  }
}

.stat-item {
  min-width: 134px;
}
@media (max-width: 768px) {
  .stat-item {
    min-width: 137px;
    flex: 1;
  }
}

.stat-number {
  font-size: 52px;
  font-weight: 700;
  color: #002677;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .stat-number {
    font-size: 29px;
  }
}

.stat-label {
  font-size: 18px;
  line-height: 1.4;
  color: #4b4d4f;
}
@media (max-width: 768px) {
  .stat-label {
    font-size: 12px;
  }
}

.security-section {
  background: #d9f6fa;
  padding: 55px 155px;
}
@media (min-width: 769px) and (max-width: 1439px) {
  .security-section {
    padding: 55px 50px;
  }
}
@media (max-width: 768px) {
  .security-section {
    padding: 22px 17px 40px;
  }
}

.security-title {
  font-size: 36px;
  font-weight: 700;
  color: #002677;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .security-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
}

.security-description {
  font-size: 18px;
  line-height: 1.4;
  color: #4b4d4f;
  text-align: center;
  max-width: 721px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .security-description {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.security-cards {
  display: flex;
  gap: 26px;
  justify-content: center;
}
@media (min-width: 769px) and (max-width: 1439px) {
  .security-cards {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .security-cards {
    flex-direction: column;
    align-items: center;
  }
}

.security-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0px 0px 4px 0px #0c55b8;
  width: 260px;
  height: 260px;
  padding: 37px;
  text-align: center;
  position: relative;
}

.security-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

.security-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #002677;
  line-height: 1.4;
  margin-bottom: 16px;
}

.security-card-text {
  font-size: 16px;
  line-height: 1.4;
  color: #4b4d4f;
}

.cta-section {
  background: white;
  padding: 53px 155px 65px;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1439px) {
  .cta-section {
    padding: 53px 50px 65px;
  }
}
@media (max-width: 768px) {
  .cta-section {
    padding: 30px 36px 24px;
  }
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #002677;
  line-height: 1.2;
  margin-bottom: 22px;
}

.cta-description {
  font-size: 18px;
  line-height: 1.4;
  color: #4b4d4f;
  max-width: 720px;
  margin: 0 auto 22px;
}
@media (max-width: 768px) {
  .cta-description {
    font-size: 18px;
  }
}

.cta-note {
  font-size: 14px;
  line-height: 1.4;
  color: #4b4d4f;
  margin-top: 18px;
}

.disclaimer-section {
  background: #faf8f2;
  padding: 27px 165px 27px 156px;
}
@media (min-width: 769px) and (max-width: 1439px) {
  .disclaimer-section {
    padding: 27px 50px;
  }
}
@media (max-width: 768px) {
  .disclaimer-section {
    padding: 20px;
  }
}

.disclaimer-title {
  font-size: 14px;
  font-weight: 700;
  color: #4b4d4f;
  line-height: 1.4;
  margin-bottom: 16px;
}

.disclaimer-text {
  font-size: 14px;
  line-height: 1.4;
  color: #4b4d4f;
}
@media (max-width: 768px) {
  .disclaimer-text {
    margin-bottom: 16px;
  }
}

.footer {
  background: #faf8f2;
  padding: 0px 155px;
  height: 68px;
}
@media (min-width: 769px) and (max-width: 1439px) {
  .footer {
    padding: 27px 50px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 0 20px 20px;
  }
}

.footer-text {
  font-size: 14px;
  line-height: 1.4;
  color: #4b4d4f;
}

/*# sourceMappingURL=style.css.map */
