
.text-center {
  text-align: center;
}

.text-black {
  color: #000;
}

.text-gray-700 {
  color: #374151;
}

.text-indigo-700 {
  color: #4338ca;
}

.text-indigo-600 {
  color: #4f46e5;
}

/* Spacing */
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }

.mb-2 { margin-bottom: 0.5rem; }

.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }

/* Typography */
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* List styles */
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }

/* Links */
a {
  color: #4f46e5;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header Section */
.header {
  background-color: #fff;
  color: #000;
  padding: 1rem 0;
}

.header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

/* Main Content */
.main-content {
  padding: 2rem 0;
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-block {
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #4338ca;
  margin-bottom: 0.5rem;
}

.section-text {
  color: #374151;
  line-height: 1.6;
}

.section-list {
  list-style-type: disc;
  list-style-position: inside;
  color: #374151;
  margin-top: 0.5rem;
}

.section-list li {
  margin-bottom: 0.25rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .header h1 {
    font-size: 1.375rem;
  }
  
  .section-title {
    font-size: 1.125rem;
  }
  
  .py-8 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .header h1 {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 1.125rem;
  }
  
  .py-4 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  .py-8 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}