    .dienstleistungen {
      background-color: #fff;
      padding: 50px 40px;
      text-align: center;
      border-top: 3px solid #b30000;
      border-bottom: 3px solid #b30000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .dienstleistungen h2 {
      color: #b30000;
      font-size: 26px;
      font-weight: 600;
      margin: 0 0 30px 0;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .dienstleistungs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 30px;
      justify-items: center;
    }

    .dienstleistung {
      background: #fff;
      padding: 18px;
      border-radius: 10px;
      border-top: 3px solid #b30000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      max-width: 260px;
      text-align: center;
      position: relative;
    }

    .dienstleistung:hover {
      transform: translateY(-6px);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    }

    .dienstleistung img {
      width: 100%;
      max-width: 160px;
      aspect-ratio: 1/1;
      object-fit: contain;
      margin-bottom: 12px;
      transition: transform 0.3s ease;
    }

    .dienstleistung:hover img {
      transform: scale(1.05);
    }

    .dienstleistung-details h3 {
      color: #555;
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .dienstleistung-details .beschreibung {
      font-size: 13px;
      color: #777;
      margin: 0 0 12px 0;
    }

    .pdf-link {
      display: inline-block;
      padding: 8px 14px;
      background-color: #b30000;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 13px;
      transition: background-color 0.3s ease;
      margin: 3px;
    }

    .pdf-link:hover {
      background-color: #880404;
    }

    @media (max-width: 768px) {
      .dienstleistungen {
        padding: 40px 20px;
      }

      .dienstleistungen h2 {
        font-size: 22px;
        margin-bottom: 20px;
      }

      .dienstleistungs-grid {
        gap: 20px;
      }

      .dienstleistung {
        max-width: 220px;
      }

      .dienstleistung-details h3 {
        font-size: 14px;
      }
    }