.overview-section {
  padding: 8rem 4rem;
  background: #ffffff;
}

.overview-container {
  max-width: 1400px;
  margin: 0 auto;
}

.overview-header {
  text-align: center;
  margin-bottom: 6rem;
}

.overview-title {
  font-size: 4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.overview-subtitle {
  font-size: 2rem;
  color: #666666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.overview-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.problem-card, .solution-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.problem-card {
  border-left: 5px solid #dc3545;
}

.solution-card {
  border-left: 5px solid #28a745;
}

.problem-header, .solution-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.problem-icon, .solution-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon {
  background: #dc3545;
}

.solution-icon {
  background: #28a745;
}

.problem-icon i, .solution-icon i {
  font-size: 2.4rem;
  color: #ffffff;
}

.problem-title, .solution-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.problem-description, .solution-description {
  font-size: 1.8rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.problem-points, .solution-capabilities {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-point, .capability-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  color: #333333;
}

.problem-point i {
  color: #dc3545;
  font-size: 1.8rem;
}

.capability-item i {
  color: #28a745;
  font-size: 1.8rem;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.metric-item {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.metric-number {
  font-size: 3.6rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.metric-label {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
}

.metric-description {
  font-size: 1.6rem;
  color: #666666;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .overview-section {
    padding: 6rem 2rem;
  }
  
  .overview-title {
    font-size: 3.2rem;
  }
  
  .overview-subtitle {
    font-size: 1.8rem;
  }
  
  .problem-solution-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .impact-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .overview-section {
    padding: 4rem 1.5rem;
  }
  
  .overview-title {
    font-size: 2.8rem;
  }
  
  .overview-subtitle {
    font-size: 1.6rem;
  }
  
  .problem-card, .solution-card {
    padding: 2rem;
  }
  
  .problem-title, .solution-title {
    font-size: 2rem;
  }
  
  .problem-description, .solution-description {
    font-size: 1.6rem;
  }
  
  .problem-point, .capability-item {
    font-size: 1.6rem;
  }
  
  .impact-metrics {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .metric-item {
    padding: 1.5rem;
  }
  
  .metric-number {
    font-size: 3rem;
  }
  
  .metric-label {
    font-size: 1.6rem;
  }
  
  .metric-description {
    font-size: 1.6rem;
  }
} 