footer {
    background-color: #2c3e50; /* Dunkler Blauton */
    color: white;
    text-align: center;
    padding: 20px 0 120px; /* Reduziertes Padding unten für mehr Platz */
    position: relative;
    z-index: 1;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
}

/* Footer Navigation */
.footer-content {
    margin-bottom: 0px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px; /* Mehr Abstand zwischen den Links */
    margin-top: 10px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.footer-nav li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-nav li a:hover {
    color: #FFD700; /* Gelb für Hover-Effekt */
    transform: translateY(-2px); /* Leichter Hover-Effekt */
}

/* Sticky-Bar */
.sticky-cta {
    position: fixed;
    bottom: 20px; /* Abstand vom unteren Rand */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    background-color: #34495e; /* Neutraler Blauton */
    color: white;
    text-align: center;
    padding: 15px 30px;
    border-radius: 30px; /* Abgerundete Ecken */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Stärkerer Schatten */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.sticky-cta span {
    font-size: 1rem;
    font-weight: 500;
    margin-right: 10px;
}

.sticky-cta-button {
    background-color: #FFD700; /* Gelb für den Button */
    color: #333; /* Dunkle Schriftfarbe für Lesbarkeit */
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-left: 10px;
}

.sticky-cta-button:hover {
    background-color: #FFC107; /* Etwas dunkleres Gelb beim Hover */
    color: white; /* Kontrastreicher Text beim Hover */
    transform: scale(1.1);
}

