/* Break Builder – Global Styles */

html {
  scroll-behavior: smooth;
}

/* Store buttons (App Store / Google Play) */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: not-allowed;
  opacity: 0.65;
  min-width: 160px;
  justify-content: center;
  transition: opacity 0.2s;
}

/* Feature cards */
.feature-card {
  background-color: #f9fafb;
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background-color: rgba(13, 93, 46, 0.1);
  color: #0D5D2E;
}

/* Legal content (privacy policy, terms) */
.legal-content {
  color: #374151;
  line-height: 1.75;
  font-size: 0.9375rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f3f4f6;
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.35rem;
}

.legal-content a {
  color: #0D5D2E;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(13, 93, 46, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s;
}

.legal-content a:hover {
  text-decoration-color: #0D5D2E;
}

.legal-content strong {
  font-weight: 600;
  color: #1f2937;
}
