/* styles.css */

/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  background-color: #f9f9f9;
  padding: 20px;
}

/* Layout */
header,
section,
footer {
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Headings */
h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Paragraphs */
p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Lists */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  background: url('data:image/svg+xml;utf8,<svg fill="%23666666" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>')
    no-repeat left center;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Footer */
footer p {
  margin-bottom: 5px;
}

/* Links */
a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  header,
  section,
  footer {
    padding: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}
