
        /* Base Styles */
   :root {
    --primary-color: #3498db;      /* Helleres Blau statt dunkelblau */
    --secondary-color: #27ae60;    /* Frischeres Grün */
    --text-color: #333;
    --light-gray: #f7f9fc;         /* Leicht bläulicher Grauton */
    --border-color: #e0e6ed;
    --hero-gradient-start: #3498db;
    --hero-gradient-end: #2980b9;
}        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', Arial, sans-serif;
        }


        
        body {
            color: var(--text-color);
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: var(--primary-color);
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        .top-bar {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 0;
        }
        
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .contact-info {
            display: flex;
            gap: 20px;
        }
        
        .contact-info a {
            color: white;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .main-header {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .logo img {
            height: 50px;
        }
        
        .main-nav ul {
            display: flex;
            gap: 20px;
        }
        
        .main-nav a {
            padding: 10px;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .main-nav a:hover {
            color: var(--secondary-color);
        }
        
        .main-nav a.active {
            border-bottom: 2px solid var(--primary-color);
        }
        
        /* Hero Section */

    .search-bar {
            background-color: var(--light-gray);
            padding: 30px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .search-container {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .search-container input {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-size: 16px;
        }



.hero {
background: linear-gradient(to right, var(--hero-gradient-start), var(--hero-gradient-end));
    color: white;
    padding: 80px 0;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-right img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive-Anpassungen */
@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column;
    }
    
    .hero-right {
        margin-top: 30px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}


        /* Carousel Styles */
        .carousel-section {
            padding: 60px 0;
            background-color: var(--light-gray);
        }
        
        .carousel-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .carousel-header h2 {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .carousel-header p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }
        
        .carousel-container {
            position: relative;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .carousel-slide {
            min-width: 300px;
            flex: 0 0 calc(33.333% - 20px);
            margin: 0 10px;
        }
        
        .carousel-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }
        
        .carousel-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .carousel-button:hover {
            background-color: #102a63;
        }
        
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #bbb;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .indicator.active {
            background-color: var(--primary-color);
        }
        
        /* Package Card Styles */
        .package-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .package-header {
            background-color: var(--primary-color);
          
        }
        
        .package-popular {
            background-color: var(--secondary-color);
        }
        
        .package-header h3 {
            font-size: 22px;
            margin-bottom: 10px;
color:white;
padding-left: 15px;
        }
        
        .package-price {
            font-size: 32px;
            font-weight: 700;
		color:white;
padding-left: 15px;
        }
        
        .price-period {
            font-size: 14px;
            opacity: 0.8;
        }
        
        .package-content {
            padding: 25px;
            flex-grow: 1;
        }
        
        .package-features {
            margin-bottom: 20px;
        }
        
        .package-feature {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .feature-check {
            color: var(--secondary-color);
            font-weight: bold;
        }
        
        .package-footer {
            padding: 0 25px 25px;
            text-align: center;
        }
        
        /* Features Section */
        .features-section {
            padding: 80px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .section-header p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 30px;
            transition: transform 0.3s;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: var(--light-gray);
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 30px;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Stats Section */
        .stats-section {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-item h3 {
            font-size: 40px;
            margin-bottom: 10px;
color:white;
            //color: var(--secondary-color);
        }
        
        .stat-item p {
            font-size: 16px;
            opacity: 0.9;
        }
        
        /* Industries Section */
        .industries-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .industry-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            text-align: center;
        }
        
        .industry-card:hover {
            transform: translateY(-5px);
        }
        
        .industry-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        
        .industry-card-content {
            padding: 20px;
        }
        
        .industry-card h3 {
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .industry-card p {
            margin-bottom: 15px;
            font-size: 14px;
            color: #666;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 0;
        }
        
        .testimonials-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            padding: 30px;
            text-align: center;
            margin: 20px auto;
        }
        
        .testimonial-text {
            font-style: italic;
            font-size: 18px;
            margin-bottom: 20px;
            color: #444;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .testimonial-company {
            color: #666;
            font-size: 14px;
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--secondary-color);
                       padding: 60px 0;
            text-align: center;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            margin-bottom: 30px;
            font-size: 18px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }
        
        /* Footer */
        .footer {
            background-color: #2980b9;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h4 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-col h4:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col a {
            color: rgba(255,255,255,0.8);
            transition: color 0.3s;
        }
        
        .footer-col a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 5px;
            font-weight: 500;
            transition: background-color 0.3s;
            text-align: center;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #102a63;
        }
        
        .btn-secondary {
            background-color: var(--secondary-color);
        }
        
        .btn-secondary:hover {
            background-color: #247312;
        }
        
        .btn-white {
            background-color: white;
            color: var(--primary-color);
        }
        
        .btn-white:hover {
            background-color: #f0f0f0;
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
        }
        
        .btn-outline:hover {
            background-color: rgba(255,255,255,0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero::after {
                width: 30%;
            }
            
            .hero .container {
                max-width: 70%;
            }
            
            .carousel-slide {
                flex: 0 0 calc(50% - 20px);
            }
        }
        
        @media (max-width: 768px) {
            .main-header .container {
                flex-direction: column;
                gap: 15px;
            }
            
            .main-nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .hero::after {
                display: none;
            }
            
            .hero .container {
                max-width: 100%;
                text-align: center;
                padding: 0 20px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .carousel-slide {
                flex: 0 0 calc(100% - 20px);
            }
            
            .contact-info {
                flex-direction: column;
                gap: 5px;
            }
            
            .top-bar .container {
                flex-direction: column;
                text-align: center;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 32px;
            }
            
            .section-header h2 {
                font-size: 28px;
            }
            
            .feature-card {
                padding: 20px;
            }
        }

