* {
  font-family: "Nunito", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0e0e0e;
  color: #e2e2e2;
  line-height: 1.6;
}

.navbar {
  position: fixed;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 7rem;
  padding-left: 5rem;
  z-index: 4;
  width: 100%;
  background: #222;

  @media only screen and (max-width: 750px) {
    padding: 0.5rem 2rem;
    padding-left: 0;
  }
}

.nav-links {
  gap: 1.5rem;
  border-radius: 0 0 0 12px;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
  color: #76abb3;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    background: #222;
    position: absolute;
    top: -100%;
    right: 0;
    width: 50%;
    height: auto;
    text-align: center;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
  }

  .nav-links.active {
    display: flex;
    top: calc(0% + 65px);
    opacity: 1;
    visibility: visible;
  }
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo a {
  width: 170px;
  height: 50px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul {
  display: flex;
  align-items: center;
}
.content ul {
  flex-direction: column;
  align-items: flex-start;
}

li {
  list-style: none;
  font-weight: 300;
}

a {
  color: #e2e2e2;
  font-weight: 300;
  text-decoration: none;
}

a:hover {
  color: #00dcfe;
}

.contact-btn {
  border: 1px solid #00dcfe;
  border-radius: 44px;
  padding: 12px 30px;
  background: transparent;
  color: #e2e2e2;
  display: flex;
}

.contact-btn:hover {
  background: #00dcfe;
  color: #0e0e0e;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 7rem;

  @media only screen and (max-width: 750px) {
    padding: 0 2rem;
  }
}
.header.main-header {
  max-width: 50rem;
  text-align: center;
  height: calc(80vh - 100px);
  margin-top: 6rem;
  padding: 0;
  align-content: center;

  @media only screen and (max-width: 750px) {
    height: calc(90vh - 100px);
    max-width: 35rem;
    padding-bottom: 3rem;
  }
}

.header.main-header > p {
  color: #e2e2e2;
  font-size: 20px;
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 40px;
}

.header.main-header > a {
  font-size: 18px;
  border: 1px solid #00dcfe;
  background: transparent;
  color: #00dcfe;
  padding: 16px 60px;
  border-radius: 44px;
}

.header.main-header > a:hover {
  background-color: #00dcfe;
  color: #0e0e0e;
}

.header {
  max-width: 50rem;
  text-align: center;
  padding: 5rem 2rem;
  margin-top: 6rem;
  align-content: center;

  @media only screen and (max-width: 750px) {
    max-width: 35rem;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}

.header h1 {
  font-size: 48px;
  font-weight: 800;
  color: #e2e2e2;
  margin-bottom: 1rem;

  @media only screen and (max-width: 750px) {
    font-size: 35px;
  }
}

.header > .header-text {
  color: #e2e2e2;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;

  @media only screen and (max-width: 750px) {
    font-size: 40px;
  }
}

.header p {
  font-size: 18px;
  font-weight: 300;
  color: #ccc;
  /* max-width: 600px; */
  margin: 0 auto;
}

.content {
  color: #e2e2e2;
}

.content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 1rem;
  margin-top: 2rem;
  @media only screen and (max-width: 750px) {
    font-size: 27px;
  }
}

.content h2:first-child {
  margin-top: 0;
}

.content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 1rem;
  @media only screen and (max-width: 750px) {
    font-size: 18px;
  }
}

.content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #e2e2e2;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.content p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #e2e2e2;
}

.content ul,
.content ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
  list-style-type: disc;
}

.content li {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: #e2e2e2;
  display: list-item;
}

.content strong {
  font-weight: 600;
  /* color: #00dcfe; */
}

.content a {
  color: #00dcfe;
  text-decoration: underline;
}

.content a:hover {
  color: #76abb3;
}

.effective-date {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #00dcfe;
}

.effective-date p {
  margin: 0;
  font-weight: 400;
}

footer {
  text-align: center;
  color: #666;
  font-weight: 300;
  padding: 3rem 0;
  font-size: 14px;
  background: #0a0a0a;
  margin-top: 3rem;
}

.copyright {
  color: #666;
}

.update-form-section {
  background: #121212;
  color: #e2e2e2;
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.update-form-section h2 {
  font-size: 36px;
  margin-bottom: 1rem;
}

.update-text {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 1rem;
}

.update-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.update-form input[type="email"] {
  padding: 12px 20px;
  border-radius: 44px;
  border: 1px solid #e2e2e2;
  background: transparent;
  color: #e2e2e2;
  font-size: 16px;
  min-width: 250px;
}

.update-form input::placeholder {
  color: #999;
}

.update-form button {
  padding: 12px 30px;
  border-radius: 44px;
  border: 1px solid #00dcfe;
  background: transparent;
  color: #00dcfe;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.update-form button:hover {
  background: #00dcfe;
  color: #0e0e0e;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.wrapper-span {
  background-image: linear-gradient(90deg, #76abb3 0%, #00dcfe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.contact {
  background: #121212;
  padding: 4rem 5rem;
  text-align: center;
  color: #e2e2e2;
  border-radius: 12px;

  @media only screen and (max-width: 750px) {
    padding: 3rem 1.5rem;
  }
}

.contact h2 {
  margin-bottom: 35px;
}

.contact p {
  font-size: 20px;
  font-weight: 300;
}

.contact a {
  color: #00dcfe;
  text-decoration: underline;
  font-weight: 600;
}
.about {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4rem;
  color: #e2e2e2;
  gap: 60px;
}

.about-text {
  max-width: 50rem;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.about-text p {
  font-size: 20px;
  font-weight: 300;
}

.services {
  background: #121212;
  padding: 3rem;
  color: #e2e2e2;
  border-radius: 12px;

  @media only screen and (max-width: 750px) {
    padding-inline: 1.5rem;
  }
}

.services h2 {
  margin-bottom: 40px;
  text-align: center;
}

.service-item {
  margin-bottom: 40px;
}

.service-item h3 {
  font-size: 28px;
  font-weight: 800;
  color: #00dcfe;
}

.service-item p {
  font-size: 18px;
  font-weight: 300;
}

.core-features {
  padding-block: 3rem;
  width: 100%;
  color: #e2e2e2;
  text-align: center;
}

.core-features h2 {
  margin-bottom: 40px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  text-align: left;
}

.feature-item {
  background: #1a1a1a;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 220, 254, 0.4);
  position: relative;
}

.feature-icon {
  margin-bottom: 15px;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #00dcfe;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 16px;
  font-weight: 300;
  color: #ccc;
}
