/* Grundlegende Einstellungen */
:root {
    --primary-color: #2563eb;
    --secondary-color: #10b981;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --border-color: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #2563eb, #10b981);
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--dark-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.main-menu {
    display: flex;
    gap: 30px;
}

.main-menu a {
    font-weight: 500;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.main-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
}

/* Hero Section mit Video */
.hero {
    position: relative;
    padding: 160px 0 160px;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stars {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}

.star {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    background: #ffcc00;
    clip-path: polygon(
        50% 0%, 
        61% 35%, 
        98% 35%, 
        68% 57%, 
        79% 91%, 
        50% 70%, 
        21% 91%, 
        32% 57%, 
        2% 35%, 
        39% 35%
    );
    box-shadow: 0 0 6px 1px rgba(255, 204, 0, 0.6);
}

.star::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #ffffaa 0%, #ffcc00 60%);
    clip-path: polygon(
        50% 0%, 
        61% 35%, 
        98% 35%, 
        68% 57%, 
        79% 91%, 
        50% 70%, 
        21% 91%, 
        32% 57%, 
        2% 35%, 
        39% 35%
    );
    animation: twinkling 4s infinite ease-in-out;
    animation-delay: calc(var(--i, 0) * 0.5s);
}

@keyframes twinkling {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.rating p {
    font-size: 1rem;
    margin: 5px 0 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-gradient {
    background: linear-gradient(90deg, #3563dc 0%, #21c8b6 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    color: white;
    font-size: 24px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 10px;
}

/* Case Studies */
.case-studies {
    padding: 100px 0;
}

.case-studies-slider {
    position: relative;
    overflow: hidden;
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.case-study-image {
    height: 280px;  /* Feste Höhe für alle Bilder */
    width: 100%;    /* Volle Breite im Container */
    overflow: hidden;
}

.case-study-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    width: 100%;
    height: 100%;
    object-fit: fit;  /* Wichtig: Behält Seitenverhältnis bei und füllt Container */
    object-position: center;  /* Zentriert das Bild im Container */
}

.case-study-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.case-study-content p {
    color: var(--gray-color);
    margin-bottom: 30px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #a1a1aa;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a1a1aa;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.copyright {
    color: #a1a1aa;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #a1a1aa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container,
    .case-study,
    .contact .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .contact-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .footer-content,
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero {
        padding: 100px 0 120px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Completed Projects / Logo Slider */
.completed-projects {
    padding: 80px 0;
    background-color: white;
}

.logo-slider-container {
    position: relative;
    margin-top: 40px;
    padding: 0 40px;
}

.logo-slider {
    display: flex;
    overflow: hidden;
    align-items: center;
}

.logo-slide {
    min-width: calc(100% / 4);
    padding: 0 20px;
    transition: transform 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-slide img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-slide img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.logo-slider-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slider-next:hover {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 992px) {
    .logo-slide {
        min-width: calc(100% / 3);
    }
}

@media (max-width: 768px) {
    .logo-slide {
        min-width: calc(100% / 2);
    }
}

@media (max-width: 480px) {
    .logo-slide {
        min-width: 100%;
    }
}

/* Prozess-Bereich Styling */
.prozess-section {
    background-color: #ffffff;
    color: #333333;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    color: #5050ff;
    margin-bottom: 8px;
    font-size: 16px;
}

.title {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Styling */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #5050ff;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
    display: flex;
}

.timeline-item.left {
    justify-content: flex-start;
}

.timeline-item.right {
    justify-content: flex-end;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #5050ff;
    border-radius: 50%;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
}

.timeline-content {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    width: 48%;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 42px;
    color: #9f9fff;
    margin-bottom: 10px;
    font-weight: 300;
}

.step-title {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-description {
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        justify-content: flex-start;
        margin-left: 60px;
    }
    
    .timeline-item.right {
        justify-content: flex-start;
    }
    
    .timeline-dot {
        left: 40px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
    }
}

/* Leistungsseite Styles */
.page-hero {
    background: linear-gradient(to right, #1a1c2e, #2a3047);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-overview {
    padding: 80px 0;
    background-color: white;
}

.service-details {
    padding: 80px 0;
    background-color: #f9fafb;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-item.reverse {
    direction: rtl;
}

.service-detail-item.reverse .service-detail-content {
    direction: ltr;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-detail-content .subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 25px;
    color: var(--gray-color);
}

.service-detail-content h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1rem;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* CTA-Sektion mit Bildhintergrund */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-image: url('images/hero-image.png');
    background-size: cover;
    background-position: center;
    color: white;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(27, 38, 59, 0.8));
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-content .btn-gradient {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.2);
}

.cta-content .btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(37, 99, 235, 0.3);
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-item.reverse {
        direction: ltr;
    }
    
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .service-detail-content h2 {
        font-size: 1.8rem;
    }
}

/* Neue Kontaktsektion */
.contact-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 60px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

/* Kontaktinformationen Styling */
.contact-info {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-info > p {
    margin-bottom: 30px;
    color: var(--gray-color);
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-details a, 
.contact-details p {
    color: var(--gray-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.office-hours {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.office-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.office-hours p {
    color: var(--gray-color);
}

/* Kontaktformular Styling */
.contact-form-container {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.required {
    color: #e53e3e;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
    flex: 1;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.submit-btn {
    align-self: flex-start;
    padding: 14px 30px;
    font-size: 1rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-section {
        padding: 70px 0;
    }
    
    .contact-info, .contact-form-container {
        padding: 30px;
    }
}

/* Über uns Seite Styles */
.about-intro {
    padding: 100px 0;
    background-color: white;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-intro-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-intro-content p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-intro-image img {
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

/* Werte Sektion */
.about-values {
    padding: 100px 0;
    background-color: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    color: white;
    font-size: 1.8rem;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--gray-color);
}

/* Team Sektion */
.team-section {
    padding: 100px 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    padding: 20px 20px 5px;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.team-role {
    padding: 0 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-bio {
    padding: 0 20px 15px;
    font-size: 0.95rem;
    color: var(--gray-color);
}

.social-links {
    display: flex;
    padding: 0 20px 20px;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: #edf2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a i {
    color: var(--dark-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.social-links a:hover i {
    color: white;
}

/* Geschichte/Timeline */
.history-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #e2e8f0;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-date {
    position: absolute;
    width: 70px;
    text-align: right;
    left: 0;
    top: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-content {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.timeline-content p {
    color: var(--gray-color);
}

/* Kunden Sektion */
.clients-section {
    padding: 100px 0;
    background-color: white;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.client-logo {
    flex: 0 0 calc(16.666% - 50px);
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo img {
    max-height: 60px;
    width: auto;
}

/* Responsive Anpassungen */
@media (max-width: 1200px) {
    .values-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-logo {
        flex: 0 0 calc(33.333% - 50px);
    }
}

@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-content {
        order: 2;
    }
    
    .about-intro-image {
        order: 1;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-date {
        left: 0;
        width: auto;
        text-align: left;
        padding-left: 45px;
    }
}

@media (max-width: 768px) {
    .values-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .client-logo {
        flex: 0 0 calc(50% - 50px);
    }
    
    .about-intro, .about-values, .team-section, .history-section, .clients-section {
        padding: 70px 0;
    }
    
    .about-intro-content h2 {
        font-size: 2rem;
    }
}

/* Projekte Seite Styles */
.projects-filter {
    padding: 40px 0;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background-color: white;
    color: var(--gray-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.projects-grid-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.project-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.project-meta span {
    display: flex;
    align-items: center;
}

.project-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Testimonials Sektion */
.testimonials {
    padding: 100px 0;
    background-color: white;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 50px auto 30px;
}

.testimonial {
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-color);
    line-height: 1.7;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 1.8rem;
    color: var(--primary-color);
    position: absolute;
    font-family: Georgia, serif;
}

.testimonial-content p::before {
    top: -10px;
    left: 0;
}

.testimonial-content p::after {
    bottom: -20px;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.prev-slide, .next-slide {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-slide:hover, .next-slide:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Responsive Anpassungen */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start;
    }
    
    .filter-btn {
        flex: 0 0 auto;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

/* Blog Styles */
.blog-hero {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/ai-particles.png');
    background-size: cover;
    opacity: 0.1;
}

/* KI-Lösungsfinder */
.ai-solution-finder {
    padding: 100px 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.ai-solution-finder::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.1) 0%, rgba(25, 118, 210, 0) 70%);
    z-index: 1;
}

.ai-solution-finder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0) 70%);
    z-index: 1;
}

.finder-interface {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 40px auto 0;
}

.finder-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.finder-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.finder-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 25%;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.finder-step.active, .finder-step.completed {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.finder-step.active .step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.2);
}

.finder-step.completed .step-number {
    background-color: #10B981;
    border-color: #10B981;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.finder-content {
    min-height: 450px;
    position: relative;
}

.finder-screen {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.finder-screen.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.finder-screen h3 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
    color: var(--dark-color);
}

/* Industry Screen */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.industry-card {
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.industry-card.selected {
    border-color: var(--primary-color);
    background-color: rgba(59, 130, 246, 0.05);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.industry-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.industry-card.selected .industry-icon {
    background-color: var(--primary-color);
    color: white;
}

.industry-card h4 {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Challenge Screen */
.challenge-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.challenge-option {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.challenge-option:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.challenge-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(59, 130, 246, 0.05);
}

.option-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.challenge-option.selected .option-icon {
    background-color: var(--primary-color);
    color: white;
}

.option-content {
    flex: 1;
}

.option-content h4 {
    margin: 0 0 5px;
    font-weight: 600;
    font-size: 1.1rem;
}

.option-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Goals Screen */
.goals-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.goal-item:hover {
    background-color: #f3f4f6;
}

.goal-checkbox {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.goal-checkbox:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.goal-checkbox:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
}

.goal-item label {
    font-weight: 500;
    cursor: pointer;
}

/* Results Screen */
.results-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.ai-thinking {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.thinking-dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: thinking 1.4s infinite ease-in-out both;
}

.thinking-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.thinking-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes thinking {
    0%, 80%, 100% { 
        transform: scale(0);
    }
    40% { 
        transform: scale(1);
    }
}

.results-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.solution-match {
    display: flex;
    gap: 25px;
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.match-percentage {
    min-width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}

.match-content {
    flex: 1;
}

.match-content h4 {
    font-size: 1.3rem;
    margin: 0 0 10px;
}

.match-content p {
    margin: 0 0 15px;
    color: var(--gray-color);
}

.solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.solution-tag {
    background-color: #f3f4f6;
    color: var(--dark-color);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}

.additional-solutions {
    margin-bottom: 40px;
}

.additional-solution {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.additional-solution:hover {
    border-color: #d1d5db;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.additional-solution h4 {
    font-size: 1.1rem;
    margin: 0 0 8px;
}

.additional-solution p {
    margin: 0;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.case-study-reference {
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
}

.case-study-reference h4 {
    text-align: center;
    margin: 0 0 20px;
    font-size: 1.2rem;
}

.mini-case-study {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mini-case-study img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mini-case-content {
    flex: 1;
}

.mini-case-content h5 {
    margin: 0 0 10px;
    font-size: 1rem;
}

.mini-case-content p {
    margin: 0 0 15px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.85rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.finder-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.finder-nav-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.finder-nav-btn.back-btn {
    background-color: white;
    border: 1px solid #e0e0e0;
    color: var(--gray-color);
}

.finder-nav-btn.next-btn {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
}

.finder-nav-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.finder-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .finder-interface {
        padding: 30px;
    }
    
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .goals-selector {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .finder-interface {
        padding: 20px;
    }
    
    .finder-steps {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    
    .finder-step {
        min-width: 120px;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .mini-case-study {
        flex-direction: column;
        text-align: center;
    }
    
    .mini-case-study img {
        margin: 0 0 15px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .solution-match {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .match-percentage {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .finder-interface {
        padding: 15px;
    }
    
    .finder-step .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .finder-nav-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Innovative Animationen für das KI-Labor */

/* Neural Particles Hintergrund */
.neural-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #0a0a1a;
    overflow: hidden;
}

/* Transparenter Header */
.transparent-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(10, 10, 26, 0.9), rgba(10, 10, 26, 0));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.transparent-header .logo img {
    height: 50px;
    transition: all 0.3s ease;
}

.transparent-header .main-menu a {
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.transparent-header .main-menu a:hover {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Neural Hero Sektion */
.neural-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.neural-hero .container {
    position: relative;
    z-index: 5;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

/* Glitch Text Effekt */
.glitch-effect {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
    margin-bottom: 30px;
}

.glitch-effect::before,
.glitch-effect::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-effect::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch-effect::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff;
    clip: rect(24px, 450px, 100px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(54px, 450px, 60px, 0);
    }
    20% {
        clip: rect(30px, 450px, 65px, 0);
    }
    40% {
        clip: rect(24px, 450px, 24px, 0);
    }
    60% {
        clip: rect(64px, 450px, 78px, 0);
    }
    80% {
        clip: rect(2px, 450px, 13px, 0);
    }
    100% {
        clip: rect(54px, 450px, 96px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(32px, 450px, 36px, 0);
    }
    20% {
        clip: rect(12px, 450px, 46px, 0);
    }
    40% {
        clip: rect(62px, 450px, 82px, 0);
    }
    60% {
        clip: rect(14px, 450px, 26px, 0);
    }
    80% {
        clip: rect(56px, 450px, 66px, 0);
    }
    100% {
        clip: rect(8px, 450px, 97px, 0);
    }
}

/* Typewriter Effekt */
.typewriter-text {
    font-size: 1.5rem;
    margin-bottom: 40px;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    border-right: 3px solid transparent;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: rgba(79, 70, 229, 0.8) }
}

/* Pulse Button Effekt */
.pulse-effect {
    position: relative;
    overflow: hidden;
}

.pulse-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    70% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Glow Button Effekt */
.glow-effect {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glow-effect:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.hero-buttons .btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    border: none;
    color: white;
}

.hero-buttons .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
}

/* Neuronales Netzwerk Visualisierung */
.neural-network-viz {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Scroll Indikator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.7;
    animation: fadeInUp 2s ease-in-out 1s forwards;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    margin-bottom: 10px;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 0.7;
        transform: translate(-50%, 0);
    }
}

/* KI-Labor Sektion */
.ai-playground {
    padding: 100px 0;
    background-color: #0c0c20;
    position: relative;
    overflow: hidden;
}

.reveal-text {
    position: relative;
    overflow: hidden;
    display: inline-block;
    color: white;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #9333ea);
    animation: reveal-text 1.5s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

@keyframes reveal-text {
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

.fade-in-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out 0.5s forwards;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lab-interface {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.lab-interface::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.lab-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Brain Visualization */
.brain-visualization {
    position: relative;
    height: 400px;
    background: rgba(10, 10, 26, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.brain-model {
    width: 100%;
    height: 100%;
}

.brain-hotspots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
}

.hotspot-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-dot 1.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hotspot-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.hotspot:hover .hotspot-label {
    opacity: 1;
    top: -35px;
}

/* Interactive Console */
.interactive-console {
    background: #070714;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.console-header {
    background: #1a1a2e;
    padding: 12px 15px;
    display: flex;
    align-items: center;
}

.console-controls {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background-color: #ff5f56;
}

.control.yellow {
    background-color: #ffbd2e;
}

.control.green {
    background-color: #27c93f;
}

.console-title {
    color: #ddd;
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
}

.console-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    font-family: monospace;
}

.console-output {
    color: #ddd;
    font-size: 0.9rem;
    line-height: 1.6;
}

.line {
    margin-bottom: 8px;
}

.prompt {
    display: flex;
    margin-top: 15px;
}

.prompt-marker {
    color: #4f46e5;
    margin-right: 8px;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background-color: #4f46e5;
    animation: blink 1s step-start infinite;
    margin-left: 2px;
    vertical-align: middle;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* AI Capability Detail */
.ai-capability-detail {
    background: rgba(10, 10, 26, 0.5);
    border-radius: 15px;
    padding: 30px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.detail-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(to right, #fff, #99a1f5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pulse-indicator {
    position: relative;
    width: 30px;
    height: 30px;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(79, 70, 229, 0.5);
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pulse-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4f46e5;
}

@keyframes pulse-ring {
    0% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    100% {
        width: 30px;
        height: 30px;
        opacity: 0;
    }
}

.detail-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.capability-examples {
    margin: 25px 0;
}

.example-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 3px solid #4f46e5;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.example-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.example-item h5 {
    margin-bottom: 10px;
    color: white;
}

.industry-applications h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: white;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.application-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.application-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.application-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(79, 70, 229, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    font-size: 1.2rem;
}

.application-content {
    flex: 1;
}

.application-content h5 {
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: white;
}

.application-content p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Interactive Prompt */
.interactive-prompt {
    margin-top: 50px;
}

.prompt-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prompt-label {
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.prompt-input-container {
    display: flex;
    gap: 10px;
}

.prompt-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    padding: 15px;
    color: white;
    font-size: 1rem;
}

.prompt-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.5);
}

.prompt-submit {
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 8px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prompt-submit:hover {
    background: #6366f1;
    transform: translateY(-2px);
}

/* Blog Posts Section */
.blog-posts {
    padding: 100px 0;
    background-color: #0c0c20;
    position: relative;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.15;
    filter: blur(5px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #4f46e5 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation: float 20s ease-in-out infinite alternate;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #9333ea 0%, transparent 70%);
    top: 60%;
    right: 10%;
    animation: float 15s ease-in-out infinite alternate-reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    top: 30%;
    right: 20%;
    animation: float 18s ease-in-out infinite alternate;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: 20%;
    left: 15%;
    animation: float 22s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(40px, 20px) rotate(5deg);
    }
    100% {
        transform: translate(-40px, -20px) rotate(-5deg);
    }
}

/* Modal Styles - Überarbeitete Version */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
    padding: 40px 0;
}

.modal-content {
    background-color: white;
    width: 85%; /* Reduzierte Breite */
    max-width: 800px; /* Kleinere maximale Breite */
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px; /* Kleinere Schriftgröße */
    color: var(--gray-color);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1;
    width: 32px; /* Kleinerer Button */
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
}

.close-modal:hover {
    color: var(--dark-color);
    background-color: rgba(0, 0, 0, 0.1);
}

.modal-body {
    padding: 0;
}

/* Fallstudie Content Styles */
.fallstudie-header {
    padding: 30px 30px 20px; /* Reduzierte Abstände */
    background: linear-gradient(to right, #f3f4f6, #ffffff);
    border-radius: 10px 10px 0 0;
    position: relative;
}

.fallstudie-kategorie {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem; /* Kleinere Schriftgröße */
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fallstudie-header h2 {
    font-size: 1.6rem; /* Kleinere Überschrift */
    margin-bottom: 12px;
    color: var(--dark-color);
    line-height: 1.3;
}

.fallstudie-meta {
    display: flex;
    gap: 20px;
    color: var(--gray-color);
    font-size: 0.85rem; /* Kleinere Schriftgröße */
}

.fallstudie-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fallstudie-meta i {
    color: var(--primary-color);
}

.fallstudie-details {
    padding: 0 30px 30px; /* Reduzierte Abstände */
}

.fallstudie-image {
    margin: 15px 0 20px; /* Reduzierte Abstände */
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.fallstudie-image img {
    width: 100%;
    display: block;
}

.fallstudie-text h3 {
    font-size: 1.2rem; /* Kleinere Überschrift */
    margin: 20px 0 10px; /* Reduzierte Abstände */
    color: var(--dark-color);
}

.fallstudie-text p {
    margin-bottom: 15px; /* Reduzierte Abstände */
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 0.95rem; /* Kleinere Schriftgröße */
}

.fallstudie-text ul {
    margin-bottom: 20px; /* Reduzierte Abstände */
    padding-left: 15px;
}

.fallstudie-text li {
    margin-bottom: 8px; /* Reduzierte Abstände */
    position: relative;
    padding-left: 15px;
    color: var(--gray-color);
    font-size: 0.95rem; /* Kleinere Schriftgröße */
}

.fallstudie-text li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* Noch mehr Anpassungen für mobile Geräte */
@media (max-width: 768px) {
    .modal-content {
        width: 92%;
    }
    
    .fallstudie-header {
        padding: 25px 20px 15px;
    }
    
    .fallstudie-details {
        padding: 0 20px 25px;
    }
    
    .fallstudie-header h2 {
        font-size: 1.35rem;
    }
    
    .fallstudie-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .fallstudie-text h3 {
        font-size: 1.1rem;
    }
}

/* Überprüfung der kritischen Modal-Stile */
.modal {
    display: none; /* Wichtig: Modal sollte standardmäßig ausgeblendet sein */
    position: fixed;
    z-index: 10000; /* Muss höher als andere z-indices sein */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-content {
    background-color: white;
    position: relative;
}

.close-modal {
    cursor: pointer;
}

/* Rechtsseiten (Impressum, AGB) */
.page-header {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 80px 0;
}

.legal-box {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-box h2 {
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.legal-box h2:first-child {
    margin-top: 0;
}

.legal-box h3 {
    color: var(--dark-color);
    margin: 25px 0 10px;
    font-size: 1.2rem;
}

.legal-box p {
    margin-bottom: 15px;
    color: var(--gray-color);
    line-height: 1.6;
}

.legal-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-box a:hover {
    text-decoration: underline;
}

.last-update {
    margin-top: 40px;
    font-style: italic;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 40px 0;
    }
    
    .legal-box {
        padding: 30px;
    }
}

/* Verbesserte Impressum Styles */
.impressum-header {
    position: relative;
    overflow: hidden;
}

.impressum-header .header-content {
    position: relative;
    z-index: 2;
}

.impressum-header .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.impressum-header .shape-1 {
    width: 300px;
    height: 300px;
    background-color: #fff;
    top: -150px;
    right: -50px;
}

.impressum-header .shape-2 {
    width: 200px;
    height: 200px;
    background-color: #fff;
    bottom: -100px;
    left: 10%;
}

.legal-box {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-5px);
}

.legal-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.legal-info {
    flex-grow: 1;
}

.legal-info h2 {
    color: var(--dark-color);
    margin: 0 0 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.legal-info h3 {
    color: var(--dark-color);
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.legal-info p {
    margin-bottom: 15px;
    color: var(--gray-color);
    line-height: 1.7;
}

.legal-info p:last-child {
    margin-bottom: 0;
}

.legal-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.1));
    margin: 30px 0;
}

.legal-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.legal-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-card {
        flex-direction: column;
    }
    
    .legal-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .legal-box {
        padding: 25px;
    }
}

/* Hero-Bild für Impressum Header */
.impressum-header {
    position: relative;
    padding: 100px 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.impressum-header .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-image.png'); /* Fügen Sie hier Ihr Bild ein */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.impressum-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(79, 70, 229, 0.8) 100%);
    z-index: 2;
}

.impressum-header .container {
    position: relative;
    z-index: 3;
}

.impressum-header .header-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.impressum-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.impressum-header .breadcrumbs {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.impressum-header .shape {
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    opacity: 0.4;
}

/* Mobile Menü Styles */
@media (max-width: 768px) {
    /* Grundlayout für das Nav-Element im mobilen Modus */
    nav {
        position: relative;
        width: 100%;
    }
    
    /* Header-Layout für mobile Geräte */
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    /* Hamburger-Menü rechts positionieren */
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
        position: relative;
        padding: 10px;
        margin-left: auto;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #333;
        margin: 6px 0;
        transition: transform 0.3s, opacity 0.3s;
    }
    
    /* Hamburger-Animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Menü von rechts nach links öffnen */
    nav ul, .main-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -280px; /* Beginnt außerhalb des Bildschirms */
        width: 280px; /* Feste Breite des Menüs */
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 80px 30px 30px;
        margin: 0;
        box-sizing: border-box;
        list-style-type: none;
        text-align: left;
        transition: right 0.3s ease; /* Animation beim Öffnen/Schließen */
        overflow-y: auto;
    }
    
    /* Menü anzeigen wenn aktiv */
    nav.mobile-active ul, .main-menu.active {
        right: 0; /* Einblenden von rechts */
    }
    
    /* Menüpunkte gestalten */
    nav ul li, .main-menu li {
        display: block;
        margin: 12px 0;
        width: 100%;
    }
    
    nav ul li a, .main-menu li a {
        display: block;
        padding: 12px 0;
        font-size: 18px;
        color: #333;
        text-decoration: none;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    /* Verhindern des Scrollens wenn Menü offen */
    body.menu-open {
        overflow: hidden;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}
