.iteration-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.iteration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.iteration-card {
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.iteration-image {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #f0f0f0;
}

.iteration-content {
  padding: 2rem;
  flex: 1;
}

.iteration-content h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.iteration-content p {
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
}

.page-intro {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.page-intro p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #444;
  font-size: 1.2rem;
}

.results-video-container {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background: black;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 9/16;
}

.results-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .iteration-grid {
    grid-template-columns: 1fr;
  }
  
  .iteration-image {
    height: 250px;
  }
} 