        
        /* Custom Styles */
        body {
            padding-top: 56px;
            background-color: #ffe7b3;
        }
        
        .header-image {
            height: 500px;
            background-image: url('bees-326337_1920.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(50, 50, 50, 0.5);
        }
        
        .header-text {
            position: relative;
            color: white;
            text-align: center;
            padding: 20px;
            z-index: 1;
        }
        
        .header-text h1 {
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .navbar {
            background-color: #FFC850 !important;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .navbar-brand,
        .nav-link {
            color: #5C3A00 !important;
            font-weight: bold;
        }
        
        .navbar-toggler {
            border-color: #5C3A00;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2892, 58, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link:hover,
        .nav-link:focus {
            color: #8B5A00 !important;
        }
        
        .navbar-brand:hover {
            color: #8B5A00 !important;
        }
        
        .section {
            padding: 60px 0;
            border-bottom: 1px solid #E4BC72;
        }

        a {
            color: #5C3A00 !important;
        }

        a:hover,
        a:focus {
            color: #8B5A00 !important;
        }

        .bg-yellow {
            background-color: rgb(253, 221, 152) !important;
        }
        
        .section-title {
            margin-bottom: 30px;
            color: #5C3A00;
        }
        
        .swarm-btn {
            position: fixed;
            top: 100px;
            right: 20px; /* Desktop: rechts */
            z-index: 1000;
            background-color: #e74c3c;
            border: none;
            padding: 10px 15px;
            color: white !important;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            width: auto;
            white-space: nowrap;
        }

        .swarm-btn,
        .swarm-btn a,
        .swarm-btn:hover,
        .swarm-btn:active,
        .swarm-btn:focus,
        .swarm-btn a:hover,
        .swarm-btn a:active,
        .swarm-btn a:focus {
            color: #fff !important;
            text-decoration: none;
        }

        .swarm-btn:hover {
            background-color: #c0392b;
            color: white !important;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 60px;
            right: 20px;
            display: none;
            background-color: #2c3e50;
            color: white !important;
            width: 50px;
            height: 50px;
            text-align: center;
            line-height: 50px;
            border-radius: 50%;
            z-index: 999;
        }
        
        .back-to-top:hover {
            background-color: #34495e;
            color: white;
        }
        
        .navbar {
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .contact-info {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 5px;
        }
        
        @media (max-width: 768px) {
            .header-text h1 {
                font-size: 1.8rem;
            }
            
            .swarm-btn {
                top: auto;
                bottom: 60px;
                right: auto; /* Rechts-Positionierung aufheben */
                left: 20px; /* Links positionieren */
            }
        }

        .card {
            transition: transform 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .position::before {
            display: block;
            content: "";
            height: 40px; /* Höhe Header */
            margin-top: -40px; /* Höhe Header */
            visibility: hidden;
        }

        .card {
            background-color: transparent;
        }


        .list-group-item {
            background-color: transparent !important;
            border: 0;
        }

        @media (max-width: 767.98px) {

            .card-img-top {
                border-radius: var(--bs-card-border-radius) var(--bs-card-border-radius) 0 0 !important;
            }
            .order-1 {
                order: 1 !important;
            }
            .order-2 {
                order: 2 !important;
            }
        }


        .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 90%;
    }

    .lightbox-content img {
      max-width: 100%;
      max-height: 100%;
      display: block;
      cursor: pointer;
    }

    .lightbox-close {
      position: absolute;
      top: -1.5rem;
      right: -1.5rem;
      font-size: 1rem;
      color: white;
      background: black;
      border: none;
      border-radius: 50%;
      width: 2.5rem;
      height: 2.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    #lightbox-caption {
      color: #fff;
      text-align: center;
      margin-top: 1rem;
      font-size: 0.95rem;
      max-width: 80vw;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
        border: 0;
    }


    .dsgvo h1, .dsgvo h2, .dsgvo h3, .dsgvo h4 {
        font-size: 1rem;
        font-weight: bold;
    }