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;
}

.about-page {
  padding: 80px 60px;
  text-align: center;
}

.about-img {
  margin-bottom: 40px;
}

.about-img img {
  width: 350px;
  height: auto;
}

.about-text {
  max-width: 700px;
  margin: auto;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 25px;
}

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;
}



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;
}