:root {
            --content-width: 80%;
        }
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: 'Poppins', sans-serif;
        }
        .container {
            position: relative;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
            color: white;
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('background.jpg') no-repeat center center;
            background-size: cover;
        }
        .content {
            max-width: var(--content-width);
            margin: 0 auto;
        }
        h1 {
            font-size: 4rem;
            margin-bottom: 30px;
            font-weight: 700;
            line-height: 1.2;
			color: #c82161;
        }
        p {
            font-size: 1.25rem;
            margin-bottom: 40px;
            line-height: 1.6;
        }
		a {
            color: #fff;
			text-decoration: none;
        }
		a:hover {
            color: #fff;
			text-decoration: none;
        }
		a.angebot {
            color: #fff;
			text-decoration: none;
        }
		a.angebot:hover {
            color: #fff;
			text-decoration: none;
        }
		a.footer {
            color: #c82161;
			text-decoration: underline;
        }
		a.footer:hover {
            color: #fff;
			text-decoration: underline;
        }
		.cs-accent_color,
		.cs-accent_color_hover:hover {
 			color: #c82161;
		}
        .highlight {
            font-weight: 700;
			color: #c82161;
        }
        .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap instead of overflowing */
    max-width: 100%; /* Prevent them from going outside the container */
    padding: 0 10px; /* Adds slight padding to prevent edge clipping */
}
		.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap; /* Prevents text from wrapping awkwardly */
    max-width: 100%; /* Ensures it doesn’t go beyond container */
    box-sizing: border-box; /* Prevents extra width from padding */
}
        .cta-button:hover {
            transform: translateY(-3px);
        }
        .cta-button.primary {
    background-color: #c82161;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button.primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary i {
    transition: transform 0.3s ease;
}

.cta-button.primary:hover i {
    transform: scale(1.2) rotate(-10deg);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(200, 33, 97, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(200, 33, 97, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 33, 97, 0); }
}

.cta-button.primary {
    animation: pulse 2s infinite;
}

        .cta-button.secondary {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }
        .cta-button svg {
            width: 24px;
            height: 24px;
            margin-right: 10px;
        }
		.cta-button i {
    font-size: 1.5rem; /* Adjust size as needed */
    margin-right: 0.5rem;
    display: inline-flex;
    align-items: center;
}
        .footer-text {
            font-size: 0.8rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }
		.social-icons a {
            color: #c82161;
            font-size: 0.8rem;
            margin: 0 10px;
            text-decoration: none;
        }
		
		
		.cookie-overlay, .cookie-settings {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .cookie-box {
            background: #151515;
            color: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
            text-align: center;
			border: 1px solid #151515; /* Adds a solid border */
    		box-shadow: 0 0 30px #000000; /* Adds a glow effect */
        }
        .cookie-buttons {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
        }
        .cookie-revoke {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #151515;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            display: none;
			border: 1px solid #151515; /* Adds a solid border */
    		box-shadow: 0 0 30px #000000; /* Adds a glow effect */
        }
        .cookie-settings {
            display: none;
        }
		
		
		
        @media (max-width: 768px) {
            :root {
                --content-width: 95%;
            }
            h1 {
                font-size: 2.5rem;
            }
            p {
                font-size: 1rem;
            }
            .cta-buttons {
        flex-direction: column; /* Stack buttons on smaller screens */
        align-items: center;
        width: 100%;
    }

    .cta-button {
        width: 90%; /* Makes them responsive without cutting off */
    }
	