:root {
  --primary-orange: #e85d35;
  --text-color: #333333;
  --border-radius: 20px;
}

body {
  margin: 0;
  padding-top: 72px;
  font-family: "Inter", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.page-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #fff;
}

.main-title {
  color: var(--primary-orange);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

.section-title {
  color: var(--primary-orange);
  font-size: 24px;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--primary-orange);
}

.content-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
  display: block;
}

.hero-wrapper .content-img {
  max-height: 500px;
}

p {
  margin-bottom: 15px;
  font-size: 14px;
  color: #4a4a4a;
  text-align: justify;
}

.styled-list {
  margin: 15px 0;
  padding-left: 20px;
}

.styled-list li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #4a4a4a;
  list-style-type: disc;
}

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 20px;
}

.full-width-text {
  margin-top: 20px;
}
