#sec-2 {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(309deg, rgba(206, 222, 196, 1) 35%, rgba(246, 246, 244, 1) 53%);
}

.icon1 {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 120px;
  height: 100px;
}

#circle-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden; /* Optional: prevents overflow if icons go outside */
}

.icon1 img {
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
}

.container2 {
  position: relative;
  width: 100%;
  height: 600px;
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #d3e3c8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
}

.accordion {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
}

.accordion-columns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.accordion-item summary {
  padding: 10px 15px;
  cursor: pointer;
  font-weight: bold;
}

/* Show circle layout on tablet and desktop */
@media (min-width: 768px) {
  #circle-container {
    display: block !important;
  }

  .accordion {
    display: none !important;
  }
}

/* Show accordion only on mobile */
@media (max-width: 767px) {
  #circle-container {
    display: none !important;
  }

  .accordion {
    display: block !important;
  }
}
