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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #f5f5f5;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px;
  background-color: white;
  min-height: 100vh;
}

.logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo img {
  max-width: 200px;
  height: auto;
}

h1 {
  text-align: center;
  font-size: 2.2em;
  color: #201F24;
  margin-bottom: 30px;
  font-weight: 600;
  font-family: Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.intro {
  text-align: justify;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #374151;
}

h2 {
  color: #407b1e;
  font-size: 1.3em;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}

h3 {
  color: #374151;
  font-size: 1.1em;
  margin-top: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
  text-align: justify;
  color: #4a4a4a;
}

ul {
  margin-left: 25px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 8px;
  color: #4a4a4a;
  line-height: 1.6;
}

a {
  color: #6b9b3f;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

strong {
  color: #333;
}

.section {
  margin-bottom: 25px;
}