    body {
      margin: 0;
      font-family: "Segoe UI", Arial, sans-serif;
      background-color: #f7ffff; /* heller Ton, passend zu #00CCCC */
      color: #333;
      text-align: center;
    }

    header {
      padding: 1rem 0;
      background-color: white;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    header img {
      width: 400px;
      height: auto;
    }

    main {
      padding: 40px 20px;
    }

    .team-photo {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      margin-bottom: 40px;
    }

    .team-contacts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .contact-card {
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
      padding: 20px;
      width: 280px;
      transition: transform 0.2s ease;
    }

    .contact-card:hover {
      transform: translateY(-5px);
    }

    .contact-card h3 {
      color: #00CCCC;
      margin-bottom: 10px;
    }

    /* Links wie normaler Text aussehen lassen */
    .contact-card a {
      color: inherit; /* gleiche Textfarbe */
      text-decoration: none; /* keine Unterstreichung */
      cursor: pointer;
    }

    .contact-card a:hover {
      color: #00CCCC; /* leichte Hervorhebung bei Hover */
    }

    .address {
        margin-bottom: 40px;
        font-size: 16px;
        line-height: 1.5;
        color: #555;
    }
    .address strong {
        color: #00CCCC;
        font-weight: 600;
    }

    /* Links wie normaler Text aussehen lassen */
    .address a {
      color: inherit; /* gleiche Textfarbe */
      text-decoration: none; /* keine Unterstreichung */
      cursor: pointer;
    }

    .address a:hover {
      color: #00CCCC; /* leichte Hervorhebung bei Hover */
    }

    .hebamme-section {
        margin-top: 60px;
        background-color: white;
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .hebamme-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 20px;
        text-align: left;
    }

    .hebamme-photo {
        width: 150px;
        height: 240px;
        border-radius: 16px;
        object-fit: cover;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .hebamme-text {
        flex: 1;
        min-width: 250px;
    }

    .hebamme-text p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .hebamme-text strong {
        color: #A69079;
    }

    .hebamme-button {
        background-color: #A69079;
        color: white;
        padding: 12px 26px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        display: inline-block;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .hebamme-button:hover {
        background-color: #8a7864;
        transform: translateY(-2px);
    }

    footer {
      background-color: #00CCCC;
      color: white;
      padding: 15px 0;
      margin-top: 2rem;
      font-size: 14px;
    }

    /* Links wie normaler Text aussehen lassen */
    footer a {
      color: inherit; /* gleiche Textfarbe */
      text-decoration: none; /* keine Unterstreichung */
      cursor: pointer;
    }

    footer a:hover {
      color: #000000; /* leichte Hervorhebung bei Hover */
    }
    