/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  background: white;
}

/* Header styles */
header {
  background-color: #112d55;
  height: 130px;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.header-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.9;
}

.login-btn {
  background-color: #00b59d;
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.login-btn:hover {
  background-color: #009885;
  transform: translateY(-1px);
}

.login-btn .arrow {
  font-size: 20px;
  order: 2;
}

/* Main content styles */
main {
  position: relative;
  background: linear-gradient(180deg, #0f3a60 0%, #112d55 100%);
  min-height: calc(100vh - 130px - 60px);
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
}

h1 {
  color: white;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 40px;
}

h1 sup {
  font-size: 0.5em;
  vertical-align: super;
}

.visit-btn {
  border: 2px solid #00b59d;
  color: #00b59d;
  background: transparent;
  padding: 14px 32px;
  border-radius: 28px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.visit-btn:hover {
  background-color: #00b59d;
  color: white;
  transform: translateY(-2px);
}

.external-icon {
  font-size: 20px;
}

/* Wave separator */
.wave-separator {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* Footer styles */
footer {
  background-color: #ededed;
  padding: 20px 60px;
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer p {
  color: #7b7b7b;
  font-size: 14px;
  font-weight: 400;
}

footer a {
  color: #7b7b7b;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #5a5a5a;
}

footer sup {
  font-size: 0.7em;
  vertical-align: super;
}

/* Responsive design for mobile */
@media (max-width: 767px) {
  header {
    height: 80px;
    padding: 0 20px;
  }

  .logo {
    font-size: 18px;
  }

  .login-btn {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 20px;
  }

  main {
    min-height: calc(100vh - 80px - 60px);
    padding-bottom: 60px;
  }

  .main-content {
    padding: 40px 20px;
  }

  h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .visit-btn {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 24px;
  }

  .wave-separator {
    height: 60px;
  }

  footer {
    padding: 20px;
    min-height: 60px;
  }

  footer p {
    font-size: 12px;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
  header {
    padding: 0 40px;
  }

  .logo {
    font-size: 20px;
  }

  h1 {
    font-size: 40px;
  }

  footer {
    padding: 20px 40px;
  }
}
