/* Overview Section - Problem & Solution */
.overview-section {
  padding: 8rem 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.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;
}

.overview-subtitle {
  font-size: 2rem;
  color: #333333;
  max-width: 700px;
  margin: 0 auto;
}

.overview-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Problem Solution Grid */
.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

/* Problem Card */
.problem-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #dc3545;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(220, 53, 69, 0.15);
}

.problem-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.problem-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.problem-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #dc3545;
  margin: 0;
}

.problem-description {
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.problem-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #fff5f5;
  border-radius: 10px;
  border-left: 3px solid #dc3545;
}

.problem-point i {
  font-size: 1.8rem;
  color: #dc3545;
  flex-shrink: 0;
}

.problem-point span {
  font-size: 1.6rem;
  color: #333333;
  font-weight: 500;
}

/* Solution Card */
.solution-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #28a745;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(40, 167, 69, 0.15);
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.solution-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #28a745;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.solution-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #28a745;
  margin: 0;
}

.solution-description {
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.solution-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fff9;
  border-radius: 10px;
  border-left: 3px solid #28a745;
  transition: transform 0.3s ease;
}

.capability-item:hover {
  transform: translateX(5px);
}

.capability-item i {
  font-size: 1.8rem;
  color: #28a745;
  flex-shrink: 0;
}

.capability-item span {
  font-size: 1.6rem;
  color: #333333;
  font-weight: 500;
}

/* Impact Metrics */
.impact-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.metric-item {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.metric-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.metric-number {
  font-size: 4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.metric-label {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.metric-description {
  font-size: 1.6rem;
  color: #666666;
}

/* Responsive Design */
@media (max-width: 992px) {
  .problem-solution-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .solution-capabilities {
    grid-template-columns: 1fr;
  }
  
  .impact-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .overview-title {
    font-size: 3rem;
  }
  
  .overview-subtitle {
    font-size: 1.8rem;
  }
  
  .problem-title,
  .solution-title {
    font-size: 2rem;
  }
  
  .impact-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .overview-section {
    padding: 4rem 2rem;
  }
  
  .overview-title {
    font-size: 2.5rem;
  }
  
  .problem-card,
  .solution-card {
    padding: 2rem;
  }
  
  .metric-item {
    padding: 2rem 1.5rem;
  }
  
  .metric-number {
    font-size: 3rem;
  }
} 