@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: rgb(247, 232, 229);
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.logo {
  max-width: 195px; /* 30% bigger than previous 150px */
  height: auto;
  margin-bottom: 1rem;
}

.nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem; /* More space between menu items */
  margin: 0;
  padding: 0;
  justify-content: center;
}

.nav a {
  text-decoration: none;
  color: #000; /* Black color */
  font-weight: 400; /* Not bold */
  font-size: 1.2rem; /* Bigger text */
}

.divider {
  border: none;
  border-top: 1px solid #000; /* Black and thin */
  margin: 0 1rem;
}

.main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.tagline {
  font-size: 3.5rem;
  font-weight: 400;
  color: #333;
}

.section {
  padding: 2rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.footer {
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  color: #333;
}

@media (min-width: 768px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 2rem;
  }

  .logo {
    margin-bottom: 0;
  }

  .nav ul {
    justify-content: flex-end;
  }

  .tagline {
    font-size: 4rem;
  }
}
