/* About Page Specific Styles */

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.feature-list li i {
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.feature-list li span {
  color: var(--default-color);
  font-weight: 500;
}

/* Process Steps */
.process-step {
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(1, 95, 201, 0.3);
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(1, 95, 201, 0.4);
}

.process-step h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.process-step p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

/* Quote Box */
.quote-box {
  background: var(--light-bg);
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-box blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.6;
  position: relative;
}

.quote-box blockquote:before {
  content: '"';
  font-size: 3rem;
  color: var(--accent-color);
  position: absolute;
  left: -1rem;
  top: -0.5rem;
  font-family: serif;
}

/* Ecosystem Cards */
.ecosystem-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.ecosystem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.ecosystem-card .card-header {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: white;
  padding: 2rem;
  text-align: center;
}

.ecosystem-card .card-header .icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.ecosystem-card .card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ecosystem-card .card-body {
  padding: 2rem;
  background: white;
}

.ecosystem-card .card-body p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #000000;
  font-weight: 600;
}

.ecosystem-card .card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ecosystem-card .card-body ul li {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  color: #000000;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ecosystem-card .card-body ul li:last-child {
  border-bottom: none;
}

.ecosystem-card .card-body ul li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
  width: 20px;
  text-align: center;
}

/* Stats Section Improvements */
.stats.section {
  padding: 4rem 0;
}

.stats-item {
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.stats-item:hover {
  transform: translateY(-3px);
}

.stats-item span {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.stats-item p {
  font-size: 1rem;
  color: var(--default-color);
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .process-step {
    padding: 1.5rem 0.5rem;
    margin-bottom: 2rem;
  }
  
  .step-icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }
  
  .ecosystem-card .card-header,
  .ecosystem-card .card-body {
    padding: 1.5rem;
  }
  
  .quote-box {
    padding: 1rem;
    margin: 1.5rem 0;
  }
  
  .feature-list li {
    font-size: 1rem;
  }
  
  .stats-item span {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .step-icon {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }
  
  .process-step h4 {
    font-size: 1.125rem;
  }
  
  .ecosystem-card .card-header h3 {
    font-size: 1.25rem;
  }
  
  .stats-item span {
    font-size: 2rem;
  }
}