.container1 {
    position: relative;
    display: flex;
    width: 100%;
    height: 400px;
    overflow: hidden;
    z-index: 1;
}

.image-section1 {
    flex: 1;
}

.image-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-left: 18%;
}

.text-section1 {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 38%;
    background-color: #a10b70;
    color: white;
    padding: 2rem;
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
}

h1{
    color: white;
}

.content-block {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .image-wrapper {
    position: relative;
    width: 230px;
  }
  
  .image-wrapper img {
    width:auto;
    height: 200px;
    display: block;
    padding-left: 10%;
  }
  
  .corner-accent {
    position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 200px;
  background-color: #a10b70;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
  }
  h2{
    color: #005f50;
    margin-top: 0px;
  }
  
  .caption {
    font-size: 0.9rem;
    color: #555;
    padding-left: 10%;
  }
  
  .text-block {
    flex: 1;
    color: #005f50;
    padding-right: 14px;
    z-index: 1;
  }

  .text-accent {
    position: absolute;
    top: 10rem;
    right: 0;
    width: 10px;
    height: 80rem;
    border-right: 25rem solid #e6e6e6;
    border-top: 81rem solid transparent;
  }

  .page-content{
    padding: 0px;;
  }
  .text-block p{
    padding-right: 14px;
  }
  
  .image-wrapper2 {
    position: relative;
    width: 170px;
  }
  
  .image-wrapper2 img {
    width:auto;
    height: 140px;
    display: block;
    padding-left: 10%;
    margin-top: 80px;
    
  }
  .image-wrapper3 {
    position: relative;
    width: 230px;
  }
  
  .image-wrapper3 img {
    width:auto;
    height: 200px;
    display: block;
    padding-left: 10%;
    position: relative;
    z-index: 3;
    margin-left: 140%;
  }
  .corner-accent2 {
    position: absolute;
  top: 0;
  left: 0;
  width: 665px;
  height: 220px;
  background-color: #a10b70;
  clip-path: polygon(7% 30%, 0% 100%, 100% 100%, 100% 30%);
  z-index: 2;
  }
  .caption2 {
    font-size: 0.9rem;
    color: #555;
    padding-left: 10%;
    z-index: 3;
    position: absolute;
    line-height: 1rem;
    text-align: right;
    margin-left: 47%;
    width: 100%;
  }

  .three-columns {
    display: grid;
    grid-template-columns: 1fr 3fr; /* oder z.B. 33% 34% 33% */
    gap: 2rem;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 10px;
  }
  
  .column {
    padding: 1rem;
    border-radius: 0.5rem;
  }
  .schrift_im_bild div {
    background-color: hsla(0, 0%, 100%, 0.7);
    position: absolute;
    bottom: 444px;
    line-height: 3em;
    font-weight: bold;
    text-align: center;
    width: 260px;
}


.schrift_im_bild:hover {
    box-shadow: 5px 5px 5px grey;
}

.name-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  input {
    padding: 0.5rem;
    border: 1px solid #ccc;
  }
  
  button {
    padding: 0.75rem 1.5rem;
    background-color: #a10b70;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  button:hover {
    box-shadow: 5px 5px 5px grey;
  }