
 /* Language switcher styles */
        .language-switcher {
            display: inline-block;
            margin-left: 15px;
        }
        
        .lang-option {
            color: inherit;
            text-decoration: none;
            padding: 0 5px;
        }
        
        .lang-option.active {
            font-weight: bold;
        }
        
        .separator {
            color: rgba(255, 255, 255, 0.5);
        }

.main-nav .bold-menu-item a,
.main-nav ul li.bold-menu-item a {
    font-weight: bold !important;
}
.wrap-original-transform {
  perspective: 2000px;
  transform-style: preserve-3d;
}
.original-transform {
  transform: rotateX(0deg) rotateY(0deg) scaleX(1);
}
.software-box {
  width: 280px;
  height: 250px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.box-top {
  background-color: #4a90e2;
  color: white;
  padding: 15px;
  text-align: center;
}

.box-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.product-icon {
  font-size: 48px;
  color: #4a90e2;
  margin-bottom: 2px;
}

.product-stats {
  text-align: center;
}

.stat {
  margin: 8px 0;
  font-size: 16px;
}

.box-footer {
  padding: 15px;
  text-align: center;
  background-color: #f5f5f5;
}

.cta-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #4a90e2;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #3a80d2;
}




.logo a {
  font-family: 'Segoe UI', 'Inter', 'Arial', sans-serif;
  font-weight: 800;
  font-size: 2.5rem; /* Hier stellst du die Größe ein */
  color: #0A2540;
  text-decoration: none;
  letter-spacing: -0.5px;
  line-height: 1.1;
  display: inline-block;
}

.logo .highlight {
  color: #00B2FF;
font-size: 2.8rem;
}

.logo .dot {
  font-size: 0.6em;
  vertical-align: super;
  color: #999;
  margin-left: 2px;
}








 .hero {
                        background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: rgba(13, 34, 77, 0.7);
            z-index: 1;
        }



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











/* Positionierung des Hamburger-Icons rechts */
.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    margin-left: auto; /* Verschiebt es nach rechts */
}

/* Media Query für mobile Geräte */
@media (max-width: 768px) {
    .main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 100;
    }
    
    .main-nav.active {
        max-height: 300px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 10px 0;
    }
    
    .main-nav li {
        margin: 0;
        text-align: center;
    }
    
    .main-nav a {
        display: block;
        padding: 10px 15px;
    }
}

/* Korrektur für Hero-Section */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(13, 34, 77, 0.7);
    z-index: 1;
}

/* Stelle sicher, dass die Hero-Section nur im Hintergrund ausgegraut ist */
.hero .container {
    position: relative;
    z-index: 2; /* Höher als das Overlay */
}








        /* FAQ Styles */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .faq-item {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 20px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .contact-container {
                flex-direction: column;
            }
        }










/* Entferne die Standardfarbe von Bootstrap beim Hover */
.faq-btn:hover, 
.faq-btn:focus, 
.faq-btn:active {
    color: inherit !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

/* Standardformatierung für die FAQ-Buttons */
.faq-btn {
    color: #333 !important;
    text-decoration: none !important;
}

/* Stil für den Card-Header */
.accordion .card-header {
    background-color: #f8f9fa;
}

/* Animation für den Pfeil */
.accordion .btn-link i {
    transition: transform 0.3s;
}

.accordion .btn-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}

