/* about-us.css */

/* Container centering and padding inherited from styles.css.section */
#about-us {
  background: #fff;
}

#about-us .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Page headline */
#about-us h1 {
  font-size: 2.75rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 25px;
}

/* Sub-section titles */
#about-us h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 15px;
}

/* Paragraphs */
#about-us p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Feature list styling */
#about-us ul {
  list-style: none;
  padding-left: 0;
}

#about-us ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
}

#about-us ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: bold;
}
