body {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #222;
  line-height: 1.7;
}

/* Page Layout */
.page-container {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  width: 100%;
}

/* Title */
.main-title {
  color: #b97025;
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

/* Featured Image */
.image-container {
  text-align: center;
  margin-bottom: 2rem;
}

.featured-image {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: 10px;
  border: 3px solid #b97025;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Sections */
.section {
  margin-bottom: 2.5rem;
}

.section-title {
  color: #b97025;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  border-left: 5px solid #b97025;
  padding-left: 12px;
}

.paragraph {
