/* Three Step Process Module - Complete CSS */

.tsp-container {
  padding: 60px 20px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.tsp-container.dark-theme {
  background-color: #0f2942;
  color: #ffffff;
}

.tsp-container.light-theme {
  background-color: #ffffff;
  color: #000000;
}

.tsp-header {
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.tsp-title {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: 'Roboto Slab', serif;
  color: inherit;
}

.tsp-description {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
}

.tsp-steps {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
  margin: 40px 0;
  position: relative;
  padding: 0 40px;
}

.tsp-step {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.tsp-number {
  width: 60px;
  height: 60px;
  border: 3px solid #4cb3d4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #4cb3d4;
  margin: 0 auto 30px;
  background: #0f2942;
}

.tsp-container.light-theme .tsp-number {
  background: #ffffff;
}

.tsp-step-title {
  font-size: 24px;
  font-weight: 600;
  color: inherit;
  margin-bottom: 15px;
  font-family: 'Roboto Slab', serif;"
}

.tsp-step-description {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.8;
}

.tsp-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.tsp-button {
  display: inline-block;
  background-color: #4cb3d4;
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.tsp-button:hover {
  background-color: #ffffff;
  color: #4cb3d4;
  border: 1px solid #4cb3d4;
  text-decoration: none;
}

.tsp-secondary {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
  padding: 0;
}

a.tsp-secondary {
  display: inline-block;
  cursor: pointer;
  color: inherit;
  text-decoration:none;
  margin-top:1.5rem;
}

a.tsp-secondary:hover {
  opacity: 1;
}

svg.connectors line {
  stroke: #4cb3d4;
  stroke-width: 2;
}

@media (max-width: 720px) {
  .tsp-container {
    padding: 40px 20px;
  }

  .tsp-steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    margin: 50px 0;
  }

  .tsp-step {
    width: 100%;
    max-width: 320px;
  }

  svg.connectors {
    display: none;
  }

  .tsp-title {
    font-size: 28px;
    
  }

  .tsp-description {
    font-size: 14px;
  }

  .tsp-number {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin: 0 auto 25px;
  }

  .tsp-step-title {
    font-size: 16px;
  }

  .tsp-step-description {
    font-size: 13px;
  }

  .tsp-button {
    padding: 12px 40px;
    font-size: 14px;
  }
}