:root {
  --primary-100: #0077c2;
  --primary-200: #59a5f5;
  --primary-300: #c8ffff;
  --accent-100: #00bfff;
  --accent-200: #00619a;
  --text-100: #333333;
  --text-200: #5c5c5c;
  --bg-100: #ffffff;
  --bg-200: #f5f5f5;
  --bg-300: #cccccc;
  --border-radius: 8px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Enhanced Approach Section Styles */
.approach-section {
  position: relative;
  overflow: hidden;
}

.approach-container {
  position: relative;
  z-index: 2;
}

.approach-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 60px 0;
}

.approach-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-100), var(--accent-100));
  z-index: 1;
}

.approach-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 15px;
}

.step-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: var(--shadow-lg);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.4s ease;
}

.step-icon-container::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  border-radius: 50%;
  z-index: -1;
}

.step-icon {
  font-size: 28px;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.step-content {
  max-width: 250px;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-100);
}

.step-content p {
  color: var(--text-200);
  line-height: 1.6;
}

/* Approach Stats */
.approach-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 80px;
  padding: 40px;
  background: var(--bg-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-200);
  font-weight: 500;
}

/* Responsive Styles for Approach Section */
@media (max-width: 992px) {
  .approach-timeline {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .approach-timeline::before {
    display: none;
  }

  .approach-step {
    flex-direction: row;
    text-align: left;
    width: 100%;
    max-width: 500px;
  }

  .step-icon-container {
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .step-content {
    max-width: none;
  }
}

@media (max-width: 576px) {
  .approach-step {
    flex-direction: column;
    text-align: center;
  }

  .step-icon-container {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .approach-stats {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* About Page Specific Styles */
.company-overview {
  background: var(--bg-200);
}

.overview-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.overview-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--text-100);
}

.key-achievements {
  background: var(--bg-100);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-top: 40px;
  text-align: left;
}

.key-achievements h3 {
  color: var(--text-100);
  margin-bottom: 20px;
  text-align: center;
}

.key-achievements ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.key-achievements li {
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-300);
  color: var(--text-200);
}

.key-achievements li:last-child {
  border-bottom: none;
}

.key-achievements strong {
  color: var(--primary-100);
  font-weight: 600;
}

/* Enhanced Approach Section */
.approach-section {
  position: relative;
}

.approach-container {
  position: relative;
  z-index: 2;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .key-achievements ul {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .overview-text p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .key-achievements {
    padding: 20px;
  }
}
