* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  padding-bottom: 40px;
}

header {
  text-align: center;
  background-color: #472c3d;
  color: white;
  padding: 30px 20px;
}

header img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid white;
}

p,
li {
  text-align: justify;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #614355;
}

nav a {
  color: white;
  padding: 15px 20px;
  text-decoration: none;
}

nav a:hover {
  background-color: #724c69;
}

main {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
}

section {
  margin-bottom: 40px;
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
  margin-bottom: 15px;
  color: #472c3d;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
}

li {
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  background-color: #472c3d;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #724c69;
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    padding: 10px;
    width: 100%;
    text-align: center;
  }

  header img {
    width: 90px;
    height: 90px;
  }

  main {
    padding: 0 10px;
  }

  section {
    padding: 15px;
  }

  h2 {
    font-size: 1.2rem;
  }

  input,
  textarea,
  button {
    font-size: 0.95rem;
  }

