<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 * About Page Styles - Rosewood Ridge Site
 * Web 3.0 Design System
 */

@import url('variables.css');

.about-page .container {
  /* Inherits base .container styles */
  padding-top: 4rem; /* Add more space at the top */
  padding-bottom: 4rem;
}

.about-page h1 {
  /* Inherits base h1 styles */
  margin-bottom: 1rem; /* Adjust spacing */
}

.about-page .container &gt; center p {
  /* Style the intro paragraph */
  color: var(--text-secondary-color);
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 3rem;
}

.about-page section {
  background: var(--inner-bg); /* Use inner background for sections */
  padding: 2rem 2.5rem;
  border-radius: var(--border-radius-std);
  margin-bottom: 2.5rem;
  border: 1px solid var(--accent-color);
  box-shadow: var(--box-shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page section:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-std);
}

.about-page h2 {
  /* Inherits base h2 styles */
  text-align: left; /* Align section headers left */
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--highlight-color); /* Use highlight color for section titles */
}

.about-page p {
  /* Inherits base p styles */
  color: var(--text-secondary-color); /* Use secondary text color for paragraphs */
  line-height: 1.7;
}

.about-page ul {
  list-style: none; /* Remove default bullets */
  padding-left: 0;
  margin-top: 1rem;
}

.about-page li {
  color: var(--text-color);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.about-page li::before {
  content: 'âœ¦'; /* Use a custom bullet */
  position: absolute;
  left: 0;
  color: var(--highlight-color);
  font-size: 1.1em;
  line-height: inherit;
}

/* Specific styling for the team list */
.about-page .team ul {
  margin-top: 1.5rem;
}

.about-page .team li {
  font-size: 1.1rem;
}

.about-page .team li strong {
  color: var(--highlight-color);
  font-weight: 600;
}
</pre></body></html>