* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Logo-Styling */
.logo {
    max-width: 286px;
    height: auto;
    display: block;
    margin: 0 auto 20px; /* Zentriert und mit Abstand nach unten */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    width: 85%;
    margin: 0 auto;
}

header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #007bff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #007bff;
    color: #fff;
}

nav {
    background: #fff;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

nav ul li a:hover {
    background: #007bff;
    color: #fff;
}

.main-content {
    padding: 60px 0;
    text-align: center;
}

.main-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.main-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 30%;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.card p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.card .button {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.card .button:hover {
    background: #0056b3;
}

.universalsitzbezuege {
    background-color: #e0f7fa;
    padding: 60px 0;
    text-align: center;
}

.universalsitzbezuege h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.universalsitzbezuege p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.benefits {
    padding: 50px 0;
    background-color: #f1f1f1;
    text-align: left;
}

.benefits h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 20px;
}

.benefits ul {
    list-style: disc;
    padding-left: 40px;
    font-size: 1.2em;
}

.benefits li {
    margin-bottom: 10px;
}

.faq {
    padding: 50px 0;
}

footer {
    background: #f1f1f1;
    color: #333;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

footer nav ul {
    list-style: none;
    padding-left: 0;
}

footer nav ul li {
    display: inline;
    margin-right: 15px;
}

footer nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

footer nav ul li a:hover {
    color: #0056b3; /* Hover-Farbe geändert für bessere Sichtbarkeit */
}

/* Mobile Ansicht: Karten untereinander */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        gap: 30px;
    }

    .card {
        width: 100%;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0;
    padding-right: 15px;
    font-size: 14px;
}

.cookie-banner button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
}

.cookie-banner button:hover {
    background-color: #0056b3;
}

