/* Main container */
.content-wrapper {
  font-family: "Poppins", sans-serif;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  color: #333;
}

/* Header */
.header-section {
  text-align: center;
  margin-bottom: 40px;
}

.page-title {
  font-size: 2.5em;
  color: #2c3e50;
  margin-bottom: 10px;
}

.meta-info {
  font-size: 0.95em;
  color: #555;
}

/* Section blocks */
.section-block {
  background: #ffffff;
  border-radius: 8px;
  padding: 25px 20px;
  margin-bottom: 30px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

/* Section titles */
.section-title {
  font-size: 1.5em;
  color: #34495e;
  margin-bottom: 15px;
  border-left: 4px solid #3498db;
  padding-left: 10px;
}

/* Paragraphs */
.text-block {
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Lists */
.bullet-list {
  padding-left: 20px;
  margin-top: 10px;
}

.bullet-item {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Links */
.content-wrapper a {
  color: #3498db;
  text-decoration: none;
}

.content-wrapper a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .page-title {
    font-size: 2em;
  }

  .section-block {
    padding: 20px 15px;
  }

  .section-title {
    font-size: 1.25em;
  }
}
