        /* GLOBAL */
        body {
            background-image: url('../img/waben512.png');
            background-repeat: repeat;
            background-size: 512px 512px;
            background-color: #000000;
            background-attachment: fixed;
            margin: 0;
            font-family: Arial, sans-serif;
            color: #E5E5E5;
        }

        a {
            color: #D7263D;
            text-decoration: none;
        }

        a:hover {
            color: #FF0033;
        }

        /* HEADER */
        header {
            background: #0A0A0A;
            padding: 50px 20px;
            text-align: center;
            border-radius: 40px;
            margin: 20px;
            border: 1px solid #D7263D;
            box-shadow: 0 0 25px rgba(215,38,61,0.25);
        }

        .logo {
            width: 120px;      /* oder 150px / 200px – je nach Geschmack */
            height: auto;
            display: block;
            margin: 0 auto;    /* zentriert */
            filter: drop-shadow(0 0 10px rgba(215,38,61,0.4));
        }


        header h1 {
            margin: 0;
            font-size: 2.8rem;
            color: #D7263D;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        header p {
            margin-top: 10px;
            font-size: 1.2rem;
            opacity: 0.85;
        }

        /* CONTENT */
        .content {
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px;
        }

        /* CARDS */
        .card {
            background: #111111;
            color: #E5E5E5;
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 50px;
            border-left: 4px solid #D7263D;
            border-top: 4px solid #D7263D;
            box-shadow: 0 0 25px rgba(215,38,61,0.25);
        }

        /* HEADERBOX */
        .headerbox {
            background: #111111;
            color: #E5E5E5;
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 50px;
            margin: 40px auto;
            max-width: 900px;
            border-left: 4px solid #D7263D;
            border-top: 4px solid #D7263D;
            box-shadow: 0 0 25px rgba(215,38,61,0.25);
        }

        .headerbox .intro {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* KONTAKTBOX */
        .kontaktbox {
            background: #111111;
            color: #E5E5E5;
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 50px;
            margin: 0 auto 50px auto;
            max-width: 900px;
            border-left: 4px solid #D7263D;
            border-top: 4px solid #D7263D;
            box-shadow: 0 0 25px rgba(215,38,61,0.25);
        }

        /* PREISBOX */
        .preisbox {
            background: #111111;
            color: #E5E5E5;
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 50px;
            margin: 0 auto 50px auto;
            max-width: 900px;
            border-left: 4px solid #D7263D;
            border-top: 4px solid #D7263D;
            box-shadow: 0 0 25px rgba(215,38,61,0.25);
        }

        .preisbox .preis {
            font-size: 1.5rem;
            font-weight: bold;
            color: #D7263D;
            margin-top: 15px;
        }

        h2 {
            text-align: center;
            color: #D7263D;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 35px;
            margin-bottom: 20px;
        }  

        ul {
            padding-left: 20px;
        }

        /* BUTTON */
        .btn {
            display: inline-block;
            background: #D7263D;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 15px;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 5px 5px 8px rgba(215,38,61,0.45);
            transition: 0.2s;
        }

        .btn:hover {
            background: #FF0033;
            box-shadow: 0 0 25px rgba(255,0,51,0.7);
            transform: translateY(-2px);
        }

        /* CONTACT FORM */
        .kontaktformular {
            max-width: 900px;
            margin: 0 auto 20px;
            display: block;
        }

        .kontaktformular .form-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .kontaktformular .form-group {
            flex: 1 1 200px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .kontaktformular label {
            font-weight: 600;
        }

        .kontaktformular input[type="text"],
        .kontaktformular input[type="email"],
        .kontaktformular textarea {
            background: #a32c2c73;
            color: #E5E5E5;
            border: 1px solid #FF0033;
            padding: 10px;
            border-radius: 8px;
            box-shadow: inset 0 0 8px rgba(0,0,0,0.6);
            font-size: 1rem;
        }

        .kontaktformular textarea {
            min-height: 140px;
            resize: vertical;
        }

        .kontaktbutton {
            display: inline-block;
            background: #D7263D;
            color: white;
            padding: 12px 22px;
            border-radius: 8px;
            border: none;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 5px 5px 8px rgba(215,38,61,0.45);
            margin-top: 12px;
        }

        .kontaktbutton:hover {
            background: #FF0033;
            transform: translateY(-2px);
        }

        .backlink {
            display: block;
            max-width: 900px;
            margin: 20px auto;
            color: #E5E5E5;
        }

        /* FOOTER */
        footer {
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            color: #777;
            font-size: 0.9rem;
        }
