/* [project]/components/InfoCard.module.css [app-client] (css) */
.InfoCard-module__NJVnqa__card {
  background: var(--card-background);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 2rem;
  transition: transform .2s, box-shadow .2s;
  display: flex;
}

.InfoCard-module__NJVnqa__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.InfoCard-module__NJVnqa__iconWrapper {
  width: 48px;
  height: 48px;
  color: var(--primary-gradient-start);
  background: #ff7e211a;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  display: flex;
}

.InfoCard-module__NJVnqa__iconWrapper svg {
  stroke: currentColor;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 24px;
  height: 24px;
}

.InfoCard-module__NJVnqa__title {
  color: var(--text-primary);
  margin-bottom: .75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.InfoCard-module__NJVnqa__content {
  color: var(--text-secondary);
  width: 100%;
  font-size: .95rem;
  line-height: 1.6;
}

/* [project]/app/terms/Terms.module.css [app-client] (css) */
.Terms-module__DDuGOq__section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 0;
}

.Terms-module__DDuGOq__header {
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
}

.Terms-module__DDuGOq__iconWrapper {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: #fff;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
  box-shadow: 0 10px 15px -3px #ff7e214d;
}

.Terms-module__DDuGOq__iconWrapper svg {
  stroke: currentColor;
  stroke-width: 2.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 32px;
  height: 32px;
}

.Terms-module__DDuGOq__title {
  color: var(--text-primary);
  font-size: 2.5rem;
  font-weight: 700;
}

.Terms-module__DDuGOq__intro {
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.Terms-module__DDuGOq__textSection {
  background: var(--card-background);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  padding: 2rem;
}

.Terms-module__DDuGOq__textSection h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.Terms-module__DDuGOq__textSection p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.Terms-module__DDuGOq__grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  display: grid;
}

.Terms-module__DDuGOq__list {
  padding: 0;
  list-style-type: none;
}

.Terms-module__DDuGOq__list li {
  margin-bottom: .75rem;
  padding-left: 1rem;
  position: relative;
}

.Terms-module__DDuGOq__list li:before {
  content: "•";
  color: var(--primary-gradient-start);
  font-weight: bold;
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .Terms-module__DDuGOq__header {
    text-align: center;
    flex-direction: column;
  }

  .Terms-module__DDuGOq__title {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=_3b95784c._.css.map*/