html, body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: #fff;
  color: #232a4d;
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main.main {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
}

.header {
  width: 100%;
  padding: 2rem 0 0.5rem 0;
  background: #fff;
}
.header .header-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 2rem;
  box-sizing: border-box;
}
.header .header-container .logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.header .header-container .logo img, .header .header-container .logo svg {
  max-width: 200px;
  max-height: 100px;
  height: auto;
  width: auto;
  display: block;
}
.header .header-container .navbar {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  font-size: 1.1rem;
  min-width: 0;
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}
.header .header-container .navbar .navbar-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.header .header-container .navbar .navbar-links a {
  color: #232a4d;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.15rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.header .header-container .navbar .navbar-links a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #232a4d;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 30ms ease-in-out;
  transform-origin: left;
}
.header .header-container .navbar .navbar-links a:hover {
  color: #4b5a8a;
}
.header .header-container .navbar .navbar-links a:hover::after {
  transform: scaleX(1);
}
.header .header-container .navbar .menu-toggle {
  display: none;
  cursor: pointer;
}
.header .header-container .navbar .menu-toggle img, .header .header-container .navbar .menu-toggle svg {
  width: 36px;
  height: 36px;
}
@media (max-width: 600px) {
  .header .header-container .navbar .menu-toggle {
    display: block;
  }
}
.header .header-container .btn-contact {
  flex: 0 0 auto;
  background: linear-gradient(90deg, #4b5a8a 0%, #232a4d 100%);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.8rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(35, 42, 77, 0.08);
  transition: background 0.2s;
  cursor: pointer;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header .header-container .btn-contact:hover {
  background: linear-gradient(90deg, #232a4d 0%, #4b5a8a 100%);
}
@media (max-width: 900px) {
  .header .header-container {
    gap: 1rem;
    padding: 0 1rem;
  }
  .header .header-container .navbar {
    gap: 1rem;
  }
  .header .header-container .navbar .navbar-links {
    gap: 1rem;
  }
  .header .header-container .btn-contact {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .header .header-container {
    flex-direction: column;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  .header .header-container .navbar {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .header .header-container .navbar .navbar-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .header .header-container .navbar .navbar-links a {
    width: 100%;
    text-align: left;
  }
  .header .header-container .btn-contact {
    width: 100%;
    padding: 0.8rem 0;
    font-size: 1rem;
    max-width: 100%;
  }
}

.main {
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .coming-soon {
  font-size: 6vw;
  font-weight: bold;
  color: #232a4d;
  text-align: center;
}

.footer {
  background: #232a4d;
  color: #fff;
  padding: 2rem 0 1rem 0;
  border-radius: 0 0 10px 10px;
}
.footer .footer-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 900px) {
  .footer .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .footer .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.footer .footer-content .footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
.footer .footer-content .footer-left .footer-logo img, .footer .footer-content .footer-left .footer-logo svg {
  max-width: 180px;
  max-height: 116px;
  height: auto;
  width: auto;
  display: block;
}
.footer .footer-content .footer-left .footer-social {
  margin-top: 0.5rem;
  display: flex;
  gap: 1rem;
}
.footer .footer-content .footer-left .footer-social img, .footer .footer-content .footer-left .footer-social svg {
  width: 22px;
  height: 22px;
  margin: 0;
  transition: filter 0.2s;
  filter: brightness(1.1);
}
.footer .footer-content .footer-left .footer-social img:hover, .footer .footer-content .footer-left .footer-social svg:hover {
  filter: brightness(2);
}
.footer .footer-content .footer-links-columns {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}
@media (max-width: 600px) {
  .footer .footer-content .footer-links-columns {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
.footer .footer-content .footer-links-columns .footer-links, .footer .footer-content .footer-links-columns .footer-services {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer .footer-content .footer-links-columns .footer-links a, .footer .footer-content .footer-links-columns .footer-services a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  transition: color 0.2s;
}
.footer .footer-content .footer-links-columns .footer-links a:hover, .footer .footer-content .footer-links-columns .footer-services a:hover {
  color: #f5f5f5;
}
.footer .footer-content .footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
}
.footer .footer-content .footer-right .btn-contact {
  background: linear-gradient(90deg, #4b5a8a 0%, #232a4d 100%);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.8rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(35, 42, 77, 0.08);
  transition: background 0.2s;
  cursor: pointer;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer .footer-content .footer-right .btn-contact:hover {
  background: linear-gradient(90deg, #232a4d 0%, #4b5a8a 100%);
}
.footer .footer-content .footer-right .footer-bottom {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  text-align: right;
  color: #bfc3d1;
}
@media (max-width: 600px) {
  .footer .footer-content {
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-content .footer-left, .footer .footer-content .footer-right {
    align-items: center;
  }
  .footer .footer-content .footer-right .footer-bottom {
    text-align: center;
  }
}/*# sourceMappingURL=styles.css.map */