/* MILESTONES TIMELINE */
.milestones-section {
  background: #f9f9f9;
  padding: 80px 20px;
  position: relative;
}

.milestones-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Línea vertical central
   Empieza a la altura del primer año (debajo del texto introductorio) */
.milestones-inner::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 260px;           /* AJUSTA este valor si quieres que suba/baje un poco */
  bottom: 0;
  width: 2px;
  background: #d0d0d0;
  transform: translateX(-50%);
}

.milestones-title {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;  /* algo menos para acercar el párrafo */
  color: #174f78;
}

/* Año */
.milestone-year {
  text-align: center;
  font-size: 64px;
  font-weight: 200;
  color: #00c896;
  margin: 50px 0 30px;
  position: relative;
  z-index: 1;
}

/* Cada item de milestone */
.milestone-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Círculo con icono */
.milestone-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #00c896;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  z-index: 2;
  position: relative;
}

/* SVG con fill (iconos check) */
.milestone-icon svg {
  width: 35px;
  height: 35px;
  color: #00c896;
}

.milestone-icon svg[fill="currentColor"],
.milestone-icon svg:not([fill="none"]) {
  fill: #00c896;
}

/* SVG con stroke (icono bandera outline) */
.milestone-icon svg[fill="none"] {
  stroke: #00c896;
  fill: none;
}

/* Caja de contenido */
.milestone-content {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 30px 35px;
  max-width: 550px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.milestone-content h3 {
  font-size: 20px;
  color: #174f78;
  margin-bottom: 15px;
  font-weight: 600;
}

.milestone-text {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .milestones-title {
    font-size: 32px;
  }
  
  .milestone-year {
    font-size: 48px;
  }
  
  .milestone-content {
    padding: 25px;
  }
  
  .milestone-icon {
    width: 70px;
    height: 70px;
  }
}
