body {
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9f9;
  color: #444;
  padding: 40px 20px;
  margin: 0;
}

.container {
  max-width: 850px;
  margin: auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 20px; /* space between logo and heading */
  margin-bottom: 20px;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.logo {
  width: 75px;
  height: 75px;
}

h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  margin-top: 30px;
  margin-bottom: 10px;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

ul {
  margin-left: 20px;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
}

li {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
}

a {
  color: #3366cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .container {
    padding: 20px;
  }
}
