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

body {
  background: #f5e9d8;
  color: #333;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

.header img {
  height: 50px;
}

.header a {
  text-decoration: none;
  color: #333;
  margin-left: 10px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h3 {
  font-weight: 400;
}

.hero-text h1 {
  font-size: 48px;
  color: #1e4ed8;
  margin: 10px 0;
}

.hero-text p {
  margin: 20px 0;
  line-height: 1.6;
}

.buttons img {
  height: 50px;
  margin-right: 10px;
}

/* IMAGE */
.hero-img {
  flex: 1;
  text-align: center;
}

.hero-img img {
  max-width: 100%;
}

/* PRIVACY */
.privacy {
  margin-top: 40px;
}

.privacy h1 {
  margin-bottom: 20px;
}

.privacy p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #555;
}

/* FOOTER TOP */
.footer-top {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-top img {
  height: 50px;
}

.download {
  text-align: right;
}

.download img {
  height: 45px;
  margin-left: 10px;
}

/* FOOTER */
footer {
  margin-top: 40px;
  background: #0f3cc9;
  color: #fff;
  text-align: center;
  padding: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .download {
    text-align: center;
  }

}