/* Additional styles for inner pages */

.page-content {
  padding: 120px 0 80px;
}

.page-header {
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
}

.breadcrumb li {
  margin-right: 10px;
}

.breadcrumb li:after {
  content: '/';
  margin-left: 10px;
  color: #999;
}

.breadcrumb li:last-child:after {
  display: none;
}

.breadcrumb a {
  color: var(--secondary-color);
  text-decoration: none;
}

.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.content-section h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  margin-top: 30px;
  font-family: var(--font-heading);
}

.info-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  overflow: hidden;
}

.info-card-header {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

.info-card-header i {
  font-size: 1.5rem;
  margin-right: 15px;
}

.info-card-header h3 {
  margin: 0;
  color: white;
}

.info-card-body {
  padding: 20px;
}

.chart-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-top: 30px;
}

.chart-placeholder {
  height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 20px 0;
  margin-top: 20px;
}

.chart-bar {
  width: 60px;
  background: linear-gradient(to top, var(--secondary-color), #5dade2);
  border-radius: 5px 5px 0 0;
  position: relative;
  transition: height 1s ease;
}

.chart-label {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: #666;
}

.chart-value {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--secondary-color);
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--secondary-color);
  position: absolute;
  top: 15px;
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -14px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -14px;
}

.timeline-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.segment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.segment-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s ease;
}

.segment-card:hover {
  transform: translateY(-10px);
}

.segment-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-align: center;
}

.segment-card h3 {
  text-align: center;
  margin-bottom: 20px;
}

.segment-characteristics {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.challenge-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.challenge-item:hover {
  transform: translateY(-5px);
}

.challenge-icon {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-right: 20px;
  padding-top: 5px;
}

.challenge-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.opportunity-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.stat-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.stat-label {
  color: #666;
}

.cta-container {
  background-color: var(--primary-color);
  color: white;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin-top: 50px;
}

.cta-container h3 {
  color: white;
  margin-bottom: 20px;
}

/* Responsive styles for inner pages */
@media screen and (max-width: 991px) {
  .timeline:before {
    left: 30px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .page-content {
    padding: 100px 0 60px;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .content-section h2 {
    font-size: 1.8rem;
  }
  
  .content-section h3 {
    font-size: 1.3rem;
  }
  
  .chart-placeholder {
    height: 200px;
  }
  
  .chart-bar {
    width: 40px;
  }
  
  .cta-container {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 576px) {
  .chart-placeholder {
    height: 150px;
  }
  
  .chart-bar {
    width: 30px;
  }
  
  .chart-label, .chart-value {
    font-size: 0.8rem;
  }
  
  .stat-value {
    font-size: 2rem;
  }
}
