/* .diagram-container {
    text-align: center;
    padding: 2rem 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
  }
  
  .diagram-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .diagram-structure {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
  }
  
  .diagram-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: white;
  }
  
  .diagram-connector {
    width: 2px;
    height: 40px;
    background: white;
    margin: 0 auto;
    position: relative;
  }  
 
  .diagram-item {
    text-align: center;
    width: 180px;
  }
  
  .circle {
    width: 130px;
    height: 130px;
    border: 2px solid white;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    background: transparent;
  }

  
  .diagram-desc {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
  }
   */

   .platform-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  margin-top: 3rem;
}

/* .platform-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border: 2px solid white;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
} */

.platform-box {
  /* background-color: rgba(255, 255, 255, 0.1); */
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  width: 51%;
  border: 2px solid white;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}

.connections {
  display: flex;
  justify-content: space-between;
  width: 41%;
  position: relative;
  height: 30px;
  /* margin-top: -5px; */
}

.line {
  width: 2px;
  background: white;
  height: 46px;
  position: relative;
}

.circle-row {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin-top: 1rem;
  gap: 1rem;
}

.circle-block {
  text-align: center;
  flex: 1;
}

.circle {
  width: 100px;
  height: 100px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin: 0 auto 0.5rem;
}
