/* Container general cu imagine de fundal */
.counter-section2 {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("../images/photo6_b.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Box alb deasupra imaginii */
.counter-box2 {
  position: absolute;
  z-index: 2;
  background: rgba(173, 255, 173, 0.5);
  padding: 30px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 900px;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* Stilizare elemente counter */
.counter-item-container2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Stilizare cercuri transparente */
.counter-item2 {
  width: 100px;
  height: 100px;
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  color: white;
  position: relative;
}

/* Text titlu */
.counter-title2 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
}

/* Subtitlu */
.counter-subtitle2 {
  font-size: 14px;
  font-weight: 400;
  color: azure;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .counter-box2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .counter-box2 {
    grid-template-columns: 1fr;
  }
}
