.ai-generated-theme {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.text-block {
  text-align: center;
}

.text-block h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.text-block p {
  font-size: 1.25rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.visual-block {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.visual-block img {
  width: 100%;
  height: auto;
  display: block;
}

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

.feature-item {
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 0.75rem;
  transition: transform 0.2s;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #4b5563;
}
