* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            padding: 20px;
        }
        
        .detail-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        /* Header Styles - Integriert in den Container */
        .header-section {
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            color: white;
            padding: 20px 30px;
            position: relative;
            overflow: hidden;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .logo {
            flex: 0 0 auto;
        }
        
        .logo-placeholder {
            width: 300px;
            height: 120px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 8px 0;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: #a8d8ff;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #a8d8ff;
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .remote-button {
            background: #2e7d32;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            text-decoration: none;
            display: inline-block;
        }
        
        .remote-button:hover {
            background: #1b5e20;
            transform: translateY(-2px);
        }
        
        /* Content Section */
        .content-section {
            padding: 40px 30px;
        }
        
        .page-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .page-subtitle {
            font-size: 1.2rem;
            color: #4a6491;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 500;
        }
        
        .intro-text {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 25px;
            line-height: 1.8;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .description {
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.7;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .services-section {
            margin-top: 40px;
        }
        
        .services-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeaea;
            text-align: center;
        }
        
        .services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .service-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 4px solid #4a6491;
            flex: 0 0 calc(33.333% - 25px);
            min-width: 300px;
            max-width: 350px;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 2rem;
            color: #4a6491;
            margin-bottom: 15px;
        }
        
        .service-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .service-description {
            color: #555;
            line-height: 1.6;
        }
        
        .cta-section {
            background: #f1f5f9;
            padding: 40px 30px;
            text-align: center;
            margin-top: 40px;
            border-radius: 8px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-title {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .cta-button {
            display: inline-block;
            background: #4a6491;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background 0.3s;
            margin-top: 15px;
        }
        
        .cta-button:hover {
            background: #2c3e50;
        }
        
        /* Footer Styles - Integriert in den Container */
        .footer {
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            color: white;
            padding: 40px 30px;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #a8d8ff;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #a8d8ff;
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: #a8d8ff;
            width: 20px;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 1100px) {
            .service-card {
                flex: 0 0 calc(50% - 25px);
            }
            
            .header-container {
                justify-content: center;
                gap: 20px;
            }
            
            .nav-menu {
                order: 3;
                width: 100%;
                justify-content: center;
                margin-top: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .header-section {
                padding: 15px 20px;
            }
            
            .logo-placeholder {
                width: 250px;
                height: 100px;
            }
            
            .nav-menu {
                gap: 15px;
                flex-wrap: wrap;
            }
            
            .service-card {
                flex: 0 0 100%;
                max-width: 400px;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .nav-menu {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .remote-button {
                margin-top: 10px;
            }
        }
		
		
		
		
		
/* CSS für Startseite Content-Section */
.teaser-section {
    height: 35vh;
    min-height: 300px;
    background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

.teaser-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.teaser-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.services-button {
    display: inline-block;
    background: #4a6491;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.services-button:hover {
    background: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.typing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.typing-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cursor {
    font-size: 2.2rem;
    color: #a8d8ff;
    animation: blink 1s infinite;
    margin-left: 5px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Willkommensbereich */
.welcome-section {
    padding: 60px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.welcome-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4a6491;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
}

.services-flow {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 60px;
}

.services-flow p {
    margin-bottom: 25px;
    text-align: justify;
}

.highlight {
    color: #4a6491;
    font-weight: 600;
    position: relative;
    padding: 0 2px;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4a6491, transparent);
    opacity: 0.7;
}

/* Approach Section */
.approach-section {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 12px;
    border-left: 5px solid #4a6491;
}

.approach-section h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.approach-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.approach-step:hover {
    transform: translateY(-5px);
}

.step-number {
    background: #4a6491;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* USP Section */
.usp-section {
    background: #f1f5f9;
    padding: 60px 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.usp-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.usp-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.usp-item:hover {
    transform: translateY(-5px);
}

.usp-icon {
    font-size: 3rem;
    color: #4a6491;
    margin-bottom: 20px;
}

.usp-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.usp-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .teaser-section {
        height: 40vh;
        min-height: 250px;
    }
    
    .typing-text {
        font-size: 1.8rem;
    }
    
    .cursor {
        font-size: 1.8rem;
    }
    
    .services-button {
        padding: 12px 25px;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .welcome-content h2 {
        font-size: 2rem;
    }
    
    .lead-text {
        font-size: 1.2rem;
    }
    
    .services-flow {
        font-size: 1rem;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
    }
    
    .approach-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .usp-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .teaser-section {
        height: 35vh;
        min-height: 200px;
    }
    
    .typing-text {
        font-size: 1.5rem;
    }
    
    .cursor {
        font-size: 1.5rem;
    }
    
    .services-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .welcome-content h2 {
        font-size: 1.8rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .approach-section {
        padding: 30px 20px;
    }
    
    .services-flow p {
        text-align: left;
    }
}






/* CSS für Neuigkeiten Content-Section */
.news-header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #4a6491;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.news-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.news-card.featured .news-image {
    height: 100%;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #4a6491;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-badge {
    background: #e74c3c;
}

.news-content {
    padding: 25px;
}

.news-card.featured .news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.news-meta i {
    margin-right: 5px;
    color: #4a6491;
}

.news-date, .news-category {
    display: flex;
    align-items: center;
}

.news-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.news-card.featured .news-title {
    font-size: 1.6rem;
}

.news-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #4a6491;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #2c3e50;
    gap: 10px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #4a6491 0%, #2c3e50 100%);
    border-radius: 12px;
    padding: 50px 40px;
    color: white;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-form input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #1b5e20;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-header {
        padding: 30px 20px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-card.featured {
        grid-column: 1;
        grid-template-columns: 1fr;
    }
    
    .news-card.featured .news-image {
        height: 250px;
    }
    
    .news-card.featured .news-title {
        font-size: 1.4rem;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .newsletter-section {
        padding: 30px 20px;
    }
    
    .newsletter-text h3 {
        font-size: 1.5rem;
    }
    
    .news-title {
        font-size: 1.2rem;
    }
    
    .news-card.featured .news-title {
        font-size: 1.3rem;
    }
}







/* CSS für Artikel-Detailseite */
.article-header {
    padding: 40px 0;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.article-category {
    background: #4a6491;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.article-date, .article-reading-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-date i, .article-reading-time i {
    color: #4a6491;
}

.article-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.article-excerpt {
    font-size: 1.3rem;
    color: #4a6491;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.author-role {
    color: #666;
    font-size: 0.9rem;
}

/* Featured Image */
.article-featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-caption {
    padding: 15px 20px;
    background: #f8f9fa;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    border-top: 1px solid #eaeaea;
}

/* Article Content */
.article-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    margin-bottom: 60px;
}

.content-wrapper {
    max-width: 100%;
}

.article-intro {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4a6491;
    margin-bottom: 40px;
}

.article-intro p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.7;
    margin: 0;
}

.article-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.article-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.article-quote {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4a6491;
    margin: 30px 0;
    font-style: italic;
}

.article-quote p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.6;
}

.article-quote cite {
    color: #666;
    font-size: 0.9rem;
    font-style: normal;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.application-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.application-item:hover {
    transform: translateX(5px);
}

.app-icon {
    width: 60px;
    height: 60px;
    background: #4a6491;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.app-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.app-content p {
    margin: 0;
    font-size: 1rem;
}

/* Strategy Steps */
.strategy-steps {
    margin: 30px 0;
}

.strategy-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.strategy-step:hover {
    border-color: #4a6491;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #4a6491;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    font-size: 1rem;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #4a6491 0%, #2c3e50 100%);
    padding: 40px;
    border-radius: 12px;
    color: white;
    text-align: center;
    margin: 50px 0;
}

.article-cta h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #1b5e20;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.author-widget {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.author-widget img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h5 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1rem;
}

.author-details p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-article {
    display: block;
    padding: 15px;
    background: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.related-article:hover {
    border-color: #4a6491;
    transform: translateX(5px);
}

.related-title {
    display: block;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.related-date {
    color: #666;
    font-size: 0.8rem;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tag {
    background: white;
    color: #4a6491;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: #4a6491;
    color: white;
}

/* Article Footer */
.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #eaeaea;
    flex-wrap: wrap;
    gap: 20px;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.article-tags span {
    color: #666;
    font-weight: 600;
}

.article-tag {
    background: #f8f9fa;
    color: #4a6491;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: #4a6491;
    color: white;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-share span {
    color: #666;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    background: #4a6491;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-excerpt {
        font-size: 1.1rem;
    }
    
    .article-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .article-featured-image img {
        height: 250px;
    }
    
    .application-item {
        flex-direction: column;
        text-align: center;
    }
    
    .strategy-step {
        flex-direction: column;
        text-align: center;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-share {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 20px 0;
    }
    
    .article-title {
        font-size: 1.7rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-cta {
        padding: 30px 20px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}








/* CSS für Kontaktformular */
.contact-header {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #4a6491;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Kontaktinformationen */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4a6491;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #4a6491;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-details p {
    color: #555;
    margin-bottom: 5px;
    line-height: 1.5;
}

.contact-details span {
    color: #4a6491;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Kontaktformular */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.form-messages {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-messages.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-messages.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eaeaea;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a6491;
    box-shadow: 0 0 0 3px rgba(74, 100, 145, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #27ae60;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 18px;
}

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.char-counter.warning {
    color: #f39c12;
}

.char-counter.error {
    color: #e74c3c;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
}

.checkbox-group a {
    color: #4a6491;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-button {
    width: 100%;
    background: #4a6491;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.submit-button:hover:not(:disabled) {
    background: #2c3e50;
    transform: translateY(-2px);
}

.submit-button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.button-loader {
    display: none;
}

.submit-button.loading .button-text {
    opacity: 0;
}

.submit-button.loading .button-loader {
    display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 30px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-header {
        padding: 20px 0;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        align-self: center;
    }
}








/* CSS für Managed Server Hosting */
.services-header {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #4a6491;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hosting Intro */
.hosting-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.hosting-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a6491;
    font-weight: 500;
}

.feature-item i {
    color: #4a6491;
    width: 20px;
}

.intro-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* OS Selection */
.os-selection {
    margin-bottom: 80px;
}

.os-selection h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

.os-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.os-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    text-align: center;
    transition: transform 0.3s ease;
}

.os-card:hover {
    transform: translateY(-5px);
}

.os-icon {
    width: 80px;
    height: 80px;
    background: #4a6491;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.os-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.os-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.os-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.os-highlights span {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    color: #4a6491;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Server Types Overview */
.server-types-overview {
    margin-bottom: 80px;
}

.server-types-overview h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

.server-type-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease;
}

.server-type-card:hover {
    transform: translateY(-5px);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: #4a6491;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.server-type-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.server-type-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.type-features {
    list-style: none;
    padding: 0;
}

.type-features li {
    padding: 5px 0;
    color: #4a6491;
    position: relative;
    padding-left: 20px;
}

.type-features li:before {
    content: "•";
    color: #4a6491;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Service Inclusions */
.service-inclusions {
    margin-bottom: 80px;
}

.service-inclusions h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.inclusion-item {
    text-align: center;
    padding: 30px 20px;
}

.inclusion-item i {
    font-size: 2.5rem;
    color: #4a6491;
    margin-bottom: 20px;
}

.inclusion-item h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.inclusion-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.hosting-cta {
    background: linear-gradient(135deg, #4a6491 0%, #2c3e50 100%);
    border-radius: 12px;
    padding: 60px 40px;
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: #2e7d32;
    color: white;
}

.cta-button.primary:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hosting-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .os-cards {
        grid-template-columns: 1fr;
    }
    
    .hosting-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-header {
        padding: 20px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .os-card,
    .server-type-card {
        padding: 25px;
    }
    
    .hosting-cta {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.7rem;
    }
}

.logo {
    text-decoration: none;
}

.logo-placeholder img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.remote-button i {
    margin-right: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: #a8d8ff;
    width: 20px;
    padding-top: 3px;
}

.detail-container main.container,
.detail-container .auth-panel {
    max-width: 720px;
    margin: 0 auto;
    padding: 50px 30px;
}

.detail-container .btn-primary {
    background: #4a6491;
    border-color: #4a6491;
}

.detail-container .btn-primary:hover,
.detail-container .btn-primary:focus {
    background: #2c3e50;
    border-color: #2c3e50;
}

.teaser-section {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2069&q=80');
}

@media (max-width: 640px) {
    body {
        padding: 10px;
    }

    .logo-placeholder {
        width: 220px;
        height: 88px;
    }

    .typing-container {
        align-items: flex-start;
    }
}

/* Auftrag 001: kompakter Header, verlinkte Leistung und Rechtstexte */
.header-container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    justify-content: initial;
    column-gap: 18px;
    row-gap: 14px;
}

.header-container nav {
    align-self: center;
    min-width: 0;
}

.header-container .nav-menu {
    justify-content: flex-start;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.header-container .remote-button {
    align-self: start;
    white-space: nowrap;
}

.service-card-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.service-card-link:focus-visible {
    outline: 3px solid #2e7d32;
    outline-offset: 4px;
}

.rendered-text {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 3px;
}

.rendered-text--footer {
    max-width: min(100%, 280px);
}

.rendered-text-stack,
.imprint-data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.rendered-text-missing {
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
}

.footer .rendered-text-missing {
    color: #ddd;
}

.contact-details h2 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-form h2 {
    color: #2c3e50;
    margin-bottom: 16px;
}

.contact-form > p {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: inherit;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-card {
    padding: 40px;
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.legal-card h2 {
    margin: 34px 0 14px;
    color: #2c3e50;
    font-size: 1.45rem;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p,
.legal-card li {
    color: #4d5660;
    line-height: 1.75;
}

.legal-card p {
    margin-bottom: 16px;
}

.legal-card ul {
    margin: 0 0 18px 22px;
}

.legal-data-list {
    margin: 0;
}

.legal-data-list > div {
    margin-bottom: 16px;
}

.legal-data-list dt {
    margin-bottom: 6px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-data-list dd {
    margin: 0;
}

.legal-reference {
    margin-top: 34px;
    padding: 18px;
    background: #f1f5f9;
    border-left: 4px solid #4a6491;
}

@media (max-width: 960px) and (min-width: 769px) {
    .header-container nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: center;
    }

    .header-container .nav-menu {
        width: auto;
        margin-top: 0;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
    }

    .header-container nav {
        width: 100%;
    }

    .header-container .nav-menu {
        width: 100%;
        justify-content: center;
        margin-top: 0;
    }

    .header-container .remote-button {
        display: none;
    }

    .legal-card {
        padding: 26px;
    }
}

@media (max-width: 480px) {
    .legal-card {
        padding: 20px;
    }
}
