* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 15px;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 1023px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}
.button {
  border-radius: 100px;
  background: #0cd0ce;
  font-weight: 600;
  font-size: 15px;
  padding: 0.5rem 2rem;
  color: #1e2985;
  width: fit-content;
  display: inline-block;
  transition: all 0.3s ease;
}

.button:hover {
  background: #0ab5b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(12, 208, 206, 0.3);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible {
  outline: 2px solid #0cd0ce;
  outline-offset: 2px;
}
