
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #5d5d5d;
}

.header {
  padding: 25px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header img {
  width: 240px;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: #5d5d5d;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

nav a:hover {
  color: #55b3ff;
    text-decoration: line-through;
}

.hero {
  height: 520px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}


.hero-content {
  position: relative;

}



.hero h1 {
  color: #FFFCA6;
  font-size: 60px;
  font-family: monospace;

}

.button {
  display: inline-block;
  background: #ffffff;
  color: #5d5d5d;
  padding: 15px 60px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

.button:hover {
  background: #c3ff92;
}

.products {
  padding: 60px 50px;
}

.products h2 {
  font-size: 32px;
  margin-bottom: 35px;
}

.row {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.card {
  width: 300px;
}

.img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fffca6;
  border-radius: 20px;
  overflow: hidden;
}

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

.card h3 {
  margin-bottom: 5px;
}

.card p {
  margin-top: 0;
  font-weight: bold;
}

.about {
  width: 92%;
  margin: 40px auto 80px;
  display: flex;
  background: #fffca6;
  border-radius: 25px;
  overflow: hidden;
}

.about .img {
  width: 50%;
  height: 600px;
  background: #55b3ff;
  color: #ffffff;
}

.about .text {
  width: 50%;
  padding: 130px 70px;
    font-family: monospace;
}

.about h2 {
  font-size: 46px;
  margin-top: 0;
}

.about p {
  font-size: 18px;
  line-height: 30px;
}

.dark {
  background: #5d5d5d;
  color: #ffffff;
}

.dark:hover {
  background: #55b3ff;
}

.app {
  text-align: center;
  padding: 70px 30px;
}

.app h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.app p {
  font-size: 18px;
  margin-bottom: 35px;
}

.footer {
  background: #5d5d5d;
  color: #ffffff;
  padding: 70px 50px;
  text-align: center;
}

.footer h2 {
  font-size: 46px;
  margin-top: 0;
}

form {
  width: 420px;
  margin: 30px auto 70px;
  display: flex;
  border: 1px solid #ffffff;
  border-radius: 40px;
  overflow: hidden;
}

input {
  width: 85%;
  padding: 16px 22px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
}

input::placeholder {
  color: #ffffff;
}

button {
  width: 15%;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 22px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 180px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  color: #c3ff92;
}

@media screen and (max-width: 900px) {
  .header {
    flex-direction: column;
    gap: 20px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .row {
    flex-wrap: wrap;
  }

  .about {
    flex-direction: column;
  }

  .about .img,
  .about .text {
    width: 100%;
  }

  .about .text {
    padding: 50px 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}