/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  min-height: 100vh;
  background-color: #F6F4F1;
  font-family: 'Nunito', sans-serif;
  color: #252B3E;
}

/* Header */
header {
  width: 100%;
  padding: 52px 52px 0 52px;
}
header .logo {
  width: 45px;
  height: 52px;
}

/* Main */
main {
  flex: 1;
  max-width: 966px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 16px;
  text-align: center;
  margin: 88px 52px 0 52px;
}
main h1 {
  font-family: 'Lalezar', sans-serif;
  font-weight: 400;
  font-size: 5.25rem;
  line-height: 0.8;
  color: #0D1220;
}
main h1 span {
  color: #5C6272;
  font-size: 4rem;
}
main h2 {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;
  color: #252B3E;
}

/* Features Box */
.features-box {
  display: flex;
  flex-direction: column;
  background-color: #EFEBE6;
  border-radius: 20px 64px 20px 64px;
  padding: 32px;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 140px;
  gap: 12px;
}
.features-box p {
  font-size: 1rem;
  line-height: 24px;
}
.features-box ul {
  list-style: none;
  text-align: left;
}
.features-box ul li {
  color: #5C6272;
}

/* Footer */
footer {
  width: 100%;
  background-color: #0D1220;
  color: #F6F4F1;
  padding: 64px 200px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-logo {
  width: 45px;
  height: 52px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.9rem;
}
.footer-nav a {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  text-decoration: none;
  color: #F6F4F1;
}
.divider-row {
  border: none;
  height: 1px;
  background-color: #252B3E;
  margin: 20px 0;
}
.footer-bottom {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  text-align: end;
  color: #5C6272;
}

/* Responsive */
@media (max-width: 768px) {
  main h1 {
    font-size: 4rem;
  }
  footer {
    padding: 60px 24px;
  }
  .footer-content {
    gap: 30px;
    flex-direction: column;
  }
  .footer-nav {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .divider-row {
    margin: 30px 0 20px 0;
  }
  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 360px) {
  header {
    padding: 24px 24px 0 24px;
  }
  main {
    margin: 24px 20px 0 20px;
  }
  main h1 {
    font-size: 2.75rem;
  }
  main h1 span {
    font-size: 2rem;
  }
  .features-box {
    margin-bottom: 120px;
  }
}
