* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container für maximale Breite und Schatten */
.container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
nav {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    transition: color 0.3s, transform 0.3s;
}

.nav-links a:hover {
    color: #ff4500;
    transform: scale(1.05);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff4500;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-menu {
    display: none;
    background: #fff;
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 12px 0;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #ff4500;
}

/* Hero Slider */
.hero {
    position: relative;
    width: 100%;
    padding-top: 40%; /* 5:2 Verhältnis (400px Höhe bei 1000px Breite = 40%) */
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide:nth-child(1) {
    animation: slide1 15s infinite;
}

.slide:nth-child(2) {
    animation: slide2 15s infinite;
}

.slide:nth-child(3) {
    animation: slide3 15s infinite;
}

@keyframes slide1 {
    0%, 25% { opacity: 1; }
    33.33%, 100% { opacity: 0; }
}

@keyframes slide2 {
    0%, 25% { opacity: 0; }
    33.33%, 58.33% { opacity: 1; }
    66.66%, 100% { opacity: 0; }
}

@keyframes slide3 {
    0%, 58.33% { opacity: 0; }
    66.66%, 91.66% { opacity: 1; }
    100% { opacity: 0; }
}

.slide h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.slide p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.slide a {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.slide a:hover {
    background: #ff4500;
    color: #fff;
    transform: translateY(-2px);
}

/* Content Box für Seiteninhalt */
.content-box {
    padding: 40px; /* Einheitlicher Abstand zu allen Seiten (oben, unten, links, rechts) */
    background: #fff;
}

/* Features Section */
.features h2 {
    text-align: center;
    font-size: 32px;
    color: #ff4500;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s ease-out;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-box .icon {
    font-size: 40px;
    color: #ff4500;
    margin-bottom: 15px;
}

.feature-box .demo-image {
    width: 100%;
    height: auto;
    max-width: 100%; /* Verhindert, dass das Bild die Box überschreitet */
    border-radius: 8px;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 16px;
    color: #555;
}

/* Price Section */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.price-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.uber {
      font-size: 19px;
    color: #ff4500;
  
	font-weight: bold;
}	
.uberk {
      font-size: 16px;
    color: #333;
 
	font-weight: bold;
}	
.price-box h3 {
    font-size: 24px;
    color: #ff4500;
    margin-bottom: 15px;
}

.price-box .price {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.price-box .price span {
    font-size: 16px;
    font-weight: 400;
    color: #555;
}

.price-box .discount {
    font-size: 26px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #ff6347, #ff4500); /* Schöner Verlauf */
    border: 2px solid #ff4500; /* Randfarbe passend zum Hintergrund */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Weicher Schatten */
    transform: skewY(-5deg); /* Leichte Schrägstellung für einen modernen Effekt */
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.price-box .discount::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1); /* Heller Überlagerungseffekt */
    transform: skewY(5deg); /* Gleicher Effekt wie Box */
    z-index: 1;
}

.price-box .discount span {
    position: relative;
    z-index: 2; /* Sicherstellen, dass der Text oben bleibt */
}

/* New price-original style */
.price-box .price-original {
    font-size: 12px;
    color: #ff4500;
    margin-bottom: 15px;
}
.price-box .price-features {
    list-style-type: none;
    margin-bottom: 20px;
}

.price-box .price-features li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.price-box .price-button {
    display: inline-block;
    background: #ff4500;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

.price-box .price-button:hover {
    background: #e03e00;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-box i {
    font-size: 36px;
    color: #ff4500;
    margin-bottom: 15px;
}

.contact-box h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 16px;
    color: #555;
    margin: 0 0 10px 0;
}

.contact-box p a {
    color: #ff4500;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-box p a:hover {
    color: #e03e00;
}

/* Info Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.info-box i {
    font-size: 36px;
    color: #ff4500;
    margin-bottom: 15px;
}

.info-box h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 16px;
    color: #555;
    margin: 0 0 20px 0;
}

.info-box ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0 0 20px 0;
    text-align: left;
}

.info-box ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

/* Info Details Section */
.info-details {
    margin-top: 40px;
}

.info-details h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.info-details p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Divider Line */
.divider-line {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #ff4500, transparent);
    margin: 40px 0;
}

/* Divider Box mit Icons */
.divider-box {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.divider-box h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-item i {
    font-size: 24px;
    color: #ff4500;
    margin-right: 15px;
}

.service-item p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: #fff;
    max-width: 600px;
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.modal-content h3 {
    font-size: 24px;
    color: #ff4500;
    margin-bottom: 15px;
}

.modal-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-content .close:hover {
    color: #ff4500;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    color: #333;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.cta a {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.cta a:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}
.cta-logo img {
    max-width: 150px; /* Größe des Logos */
    height: auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
}

footer p a {
    color: #ff4500;
    text-decoration: none;
  
}

footer p a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .container {
        box-shadow: none; /* Schatten entfernen auf kleineren Bildschirmen */
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding-top: 40%; /* Beibehalten des 5:2 Verhältnisses */
    }

    .slide h1 {
        font-size: 32px;
    }

    .slide p {
        font-size: 16px;
    }

    .content-box {
        padding: 20px; /* Weniger Padding auf kleineren Bildschirmen */
    }

    .features h2, .info-section h2 {
        font-size: 24px;
    }

    .feature-box h3 {
        font-size: 18px;
    }

    .modal-content {
        max-width: 90%;
    }

    .cta h2 {
        font-size: 24px;
    }

    .price-box, .contact-box, .info-box {
        margin: 0 auto;
    }

    .service-item {
        flex-direction: column;
        align-items: center;
    }

    .service-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
/* Admin Service Item (rot) */
.service-itemadmin {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-itemadmin i {
    font-size: 24px;
    color: #ff0000; /* Rot, passend zur bestehenden Farbpalette; alternativ #ff0000 für reines Rot */
    margin-right: 15px;
}

.service-itemadmin p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 16px;
    flex: 1;
    min-width: 300px;
}

.cookie-content p a {
    color: #ff4500;
    text-decoration: none;
}

.cookie-content p a:hover {
    text-decoration: underline;
}

.cookie-button {
    background: #ff4500;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.cookie-button:hover {
    background: #e03e00;
    transform: translateY(-2px);
}

/* Responsive Design für Cookie-Banner */
@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-content p {
        font-size: 14px;
    }

    .cookie-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}