/* Color Variables for Replicating Original Design */
:root {
  --main-text-color: #1a3e1a; /* Dark Green */
  --highlight-yellow: #ffd600;
  --title-green: #17633e;
  --title-red: #b30000;
  --background-white: #ffffff;
}

/* Base Styles */
body {
  font-family: Arial, sans-serif;
  color: var(--main-text-color);
  background-color: var(--background-white);
}

.pss-rules {
  padding: 70px 0;
  background: var(--background-white);
}

.content {
  width: 80%;
  margin: auto;
  max-width: 1100px;
}

/* Headings */
h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
}

.line {
  width: 90px;
  height: 5px;
  background: var(--highlight-yellow);
  margin: 14px auto 35px auto;
  border-radius: 4px;
}

.title-green {
  color: var(--title-green);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 30px;
}

.title-red {
  color: var(--title-red);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 35px;
}

.sub-heading {
  margin-top: 30px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--title-green);
}

/* Lists and Text */
.list {
  margin: 15px 0 20px 20px;
  line-height: 1.7;
  font-size: 1.05rem;
  list-style-type: disc;
}

.sub-list {
  margin-top: 10px;
  margin-left: 25px;
  list-style: circle;
}

.text {
  line-height: 1.8;
  margin-top: 10px;
  font-size: 1.05rem;
}

/* Media Queries */
@media(max-width:768px){
  .content{width:90%;}
  h2{font-size:1.8rem;}
}