body {
  font-family: sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #1a202c;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

header img {
  width: 150px;
  height: auto;
}

main {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

h1, h2 {
  margin-bottom: 0.5rem;
}

section {
  margin-bottom: 2rem;
}

ul {
  padding-left: 1.5rem;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  background: #1a202c;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #2d3748;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #e2e8f0;
}

/* === Layout Enhancements === */

.section-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-container.reverse {
  flex-direction: row-reverse;
}

.section-container img {
  width: 250px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
    text-align: center;
  }

  .section-container.reverse {
    flex-direction: column;
  }

  .section-container img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
  }
}
