.wireframes-section {
  background-color: #000000;
  padding: 4rem 0;
}

.wireframe-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.wireframe-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Design v1.1 Section Styles */
.design-v1-section {
  background-color: #ffffff;
  padding: 6rem 0;
  color: #333;
}

.design-v1-section .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.design-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.design-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  max-height: 80vh;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .design-v1-section {
    padding: 4rem 0;
  }

  .design-v1-section .section-title {
    font-size: 2rem;
  }

  .design-image {
    max-height: 70vh;
  }
}

/* Design Improvements Section */
.improvements-section {
  padding: 6rem 0;
  background-color: #fff;
}

.improvements-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 4rem;
  position: relative;
}

.improvements-section .section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff1493, #9400d3);
  border-radius: 2px;
}

.version-comparison {
  max-width: 1200px;
  margin: 0 auto;
}

.version-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-direction: column;
}

.version-card {
  position: relative;
  max-width: 879px;
  /* Increased from 400px by 120% */
}

.version-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.version-label {
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: #333;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-arrows {
  display: flex;
  align-items: center;
  color: #666;
}

.comparison-arrows .material-icons-outlined {
  font-size: 2rem;
}

.improvement-points {
  max-width: 800px;

  /* Supporting text for version cards */
  .image-supporting-text {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 0 0 20px 20px;
    margin-top: -5px;
  }

  .image-supporting-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
  }

  .image-supporting-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
  }

  .stats-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .stat-item {
    text-align: center;
  }

  .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
  }

  .stat-value.positive {
    color: #28a745;
  }

  .stat-value.negative {
    color: #dc3545;
  }

  .stat-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  margin: 0 auto;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.point-marker {
  width: 8px;
  height: 8px;
  background: linear-gradient(90deg, #ff1493, #9400d3);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.point p {
  margin: 0;
  color: #444;
  line-height: 1.6;
  font-size: 1.1rem;
}

@media (max-width: 991px) {
  .version-images {
    flex-direction: column;
    gap: 3rem;
  }

  .comparison-arrows {
    transform: rotate(90deg);
  }

  .version-card {
    /* max-width: 300px; */
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .improvements-section {
    padding: 4rem 0;
  }

  .improvements-section .section-title {
    font-size: 1.75rem;
    margin-bottom: 3rem;
  }

  .point p {
    font-size: 1rem;
  }
}

/* Observations Section Styles */
.observations-section {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.observations-section .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 3rem;
  text-align: center;
}

.observation-alert {
  background-color: #fff3f3;
  border: 1px solid #ffcdd2;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.alert-icon {
  color: #f44336;
  font-size: 2rem;
}

.alert-content {
  flex: 1;
}

.alert-content strong {
  display: block;
  color: #d32f2f;
  margin-bottom: 0.5rem;
}

.alert-content p {
  margin: 0;
  font-size: 1.1rem;
}

.observations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.observation-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.observation-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.observation-icon {
  font-size: 2rem;
  color: #666;
}

.observation-content {
  flex: 1;
}

.observation-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.observation-content p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.action-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 0.5rem;
}

.action-tag.retained {
  background-color: #e3f2fd;
  color: #1976d2;
}

.action-tag.modified {
  background-color: #fff3e0;
  color: #f57c00;
}

.action-tag.added {
  background-color: #e8f5e9;
  color: #388e3c;
}

@media (max-width: 768px) {
  .observations-section {
    padding: 4rem 0;
  }

  .observations-grid {
    /* grid-template-columns: 1fr; */
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .observation-card {
    padding: 1.25rem;
  }

  .observations-section .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
