.fragen-section {
  position: relative;
  background: url("../assets/blue-eye.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px 60px;
  border-radius: 6px;
  overflow: hidden;
}

.fragen-section-v1 {
  position: relative;
  background: url("../assets/mountain.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px 60px;
  border-radius: 6px;
  overflow: hidden;
}


.fragen-section-v2 {
  position: relative;
  background: url("../assets/river/river2.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px 60px;
  border-radius: 6px;
  overflow: hidden;
}

.fragen-section-v3 {
  position: relative;
  background: url("../assets/backround/Gemini_Generated_Image_wgvaldwgvaldwgva.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px 60px;
  border-radius: 6px;
  overflow: hidden;
}

/* 🔵 Overlay Layer */
.fragen-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 38, 40, 0.6); /* semi-transparent dark blue */
  z-index: 0;
}

/* Ensure content stays above overlay */
.fragen-section > * {
  position: relative;
  z-index: 1;
}

.fragen-icon {
  position: absolute;
  top: -40px; /* pushes half outside */
  left: 50%;
  transform: translateX(-50%);
  background: #0d3d7b; /* blue circle bg */
  border-radius: 50%;
  padding: 12px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff; /* white border like in photo */
}

.fragen-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.fragen-content h2 {
  font-size: 36px;
  font-weight: 900;
  margin: 20px 0 10px;
}

.fragen-content p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.5;
}

.fragen-btn {
  display: inline-block;
  background: #0d3d7b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.fragen-btn:hover {
  background: #08284f;
}
