/* [project]/app/about/page.module.css [app-client] (css) */
.page-module__xgPmsG__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-module__xgPmsG__title {
  color: var(--foreground);
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.page-module__xgPmsG__section {
  margin-bottom: 3rem;
}

.page-module__xgPmsG__sectionTitle {
  color: var(--foreground);
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.page-module__xgPmsG__section p {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.page-module__xgPmsG__list {
  margin-bottom: 1.5rem;
  margin-left: 2rem;
}

.page-module__xgPmsG__list li {
  margin-bottom: .75rem;
  line-height: 1.6;
}

.page-module__xgPmsG__featureList {
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
}

.page-module__xgPmsG__featureList li {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
}

.page-module__xgPmsG__featureList li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.page-module__xgPmsG__featureList h3 {
  color: #0070f3;
  margin-top: 0;
  margin-bottom: .75rem;
  font-size: 1.25rem;
}

.page-module__xgPmsG__featureList p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.page-module__xgPmsG__section a {
  color: #0070f3;
  text-decoration: none;
  transition: color .3s;
}

.page-module__xgPmsG__section a:hover {
  color: #0056b3;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .page-module__xgPmsG__featureList {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-color-scheme: dark) {
  .page-module__xgPmsG__featureList li {
    background-color: #1a1a1a;
    box-shadow: 0 2px 4px rgba(255, 255, 255, .05);
  }

  .page-module__xgPmsG__featureList li:hover {
    box-shadow: 0 5px 15px rgba(255, 255, 255, .1);
  }

  .page-module__xgPmsG__featureList h3, .page-module__xgPmsG__section a, .page-module__xgPmsG__section a:hover {
    color: #3291ff;
  }
}

/*# sourceMappingURL=app_about_page_module_ca77d05c.css.map*/