/* Optimierter Hintergrund für license-Server */
.license-server-banner {
    background: #0078D4; /* Microsoft Blue */
    background: -webkit-linear-gradient(135deg, #0078D4 0%, #005A9E 50%, #004578 80%, #16213e 100%);
    background: -o-linear-gradient(135deg, #0078D4 0%, #005A9E 50%, #004578 80%, #16213e 100%);
    background: linear-gradient(135deg, #0078D4 0%, #005A9E 50%, #004578 80%, #16213e 100%);
    min-height: 825px; /* Höhe erhöht */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 20px;
}

.license-server-banner .container {
    z-index: 2;
    color: #fff;
}

.license-server-banner .banner-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInLeft 1s;
}

.license-server-banner .banner-subtitle {
    font-size: 1.2em;
    margin-bottom: 20px;
    animation: fadeInLeft 1.5s;
}

.license-server-banner .banner-list {
    list-style: none;
    padding: 0;
    font-size: 1.1em;
}

.license-server-banner .banner-list li {
    margin-bottom: 10px;
}

.license-server-banner .banner-small-text {
    font-size: 1em;
    margin-top: 20px;
}

.license-server-banner .banner-location {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
}

.license-server-banner .cta-buttons {
    margin-top: 20px;
}

.license-server-banner .cta-buttons .btn {
    margin-right: 10px;
}

.inner-welcome-image-group img {
    max-width: 70%; /* Bild kleiner gemacht */
    height: auto;
    animation: fadeIn 2s;
    margin-bottom: 30px; /* Platzhalter zwischen Bild und Call-to-Action-Buttons */
}

@media (max-width: 768px) {
    .license-server-banner {
        min-height: 550px; /* Höhe leicht erhöht */
        padding: 10px;
    }

    .license-server-banner .banner-title {
        font-size: 1.8em;
        margin-top: 180px; /* Weniger Abstand nach oben */
    }

    .license-server-banner .banner-subtitle {
        font-size: 1em;
        margin-top: 10px;
    }

    .license-server-banner .banner-list {
        font-size: 0.9em;
    }

    .license-server-banner .banner-small-text {
        font-size: 0.8em;
    }

    .license-server-banner .banner-location {
        font-size: 1em;
    }

    .inner-welcome-image-group img {
        max-width: 80%;
        margin-top: 20px; /* Platzhalter zwischen Bild und Call-to-Action-Buttons */
    }

    .license-server-banner .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .license-server-banner .cta-buttons .btn {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .license-server-banner {
        min-height: 900px; /* Höhe erhöht */
    }

    .license-server-banner .banner-title {
        font-size: 2em;
        margin-top: 150px; /* Abstand nach oben hinzugefügt */
    }

    .license-server-banner .banner-subtitle {
        font-size: 1.1em;
        margin-top: 10px;
    }

    .inner-welcome-image-group img {
        max-width: 70%;
        margin-bottom: 60px; /* Abstand zu den Call-to-Action-Buttons erhöht */
    }

    .image-col {
        display: none; /* Bildspalte ab dieser Breite ausgeblendet */
    }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Why Choose Us */
.server-images {
    background-color: #fff;
    padding: 50px 0;
}

.server-images img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



/* Premium-Styling für die Produktkategorien */
.product-category {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    position: relative;
}

.product-category:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.product-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: linear-gradient(to right, #1045db, #16213e);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.product-header {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #16213e;
    margin-bottom: 20px;
}

.product-body {
    text-align: center;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: #1045db;
    margin-top: 20px;
}

.product-price span {
    display: block;
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

.product-facts {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
}

.product-facts li {
    margin-bottom: 12px;
    font-size: 16px;
}

.product-facts li i {
    margin-right: 10px;
    color: #1045db;
    font-size: 18px;
}

.product-footer {
    margin-top: 30px;
    text-align: center;
}

.product-footer a {
    background-color: #1045db;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.product-footer a:hover {
    background-color: #082d91;
}

/* Illustration für Premium-Effekt */
.illustration {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.exchange-header {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1045db;
}
/* Responsive Design für Tablets (max-width: 768px) */
@media (max-width: 1000px) {
    .product-section .col-md-4 {
        width: 100%;
        margin-bottom: 20px; /* Abstand zwischen den Boxen auf kleineren Bildschirmen */
    }
}
/* Funktionsumfang Section Styling */
.features-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.features-section h2,
.features-section h3 {
    margin-bottom: 20px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Für sanftes Scrollen auf mobilen Geräten */
}

.comparison-table {
    width: 100%;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    font-size: 16px;
    vertical-align: middle;
}

.comparison-table thead th {
    background-color: #1045db;
    color: #fff;
    font-weight: 700;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f7f7f7;
}

.comparison-table tbody tr td i {
    color: #1045db;
}

/* Verbesserte mobile Darstellung für kleinere Bildschirme */
@media (max-width: 768px) {
    .comparison-table {
        display: block;
        width: 100%;
    }

    /* Einzelne Zellen in eigene Reihen verwandeln */
    .comparison-table thead {
        display: none; /* Kopfzeile ausblenden */
    }

    .comparison-table tbody tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        border-bottom: 1px solid #ddd;
    }

    .comparison-table td {
        display: flex;
        justify-content: space-between;
        padding: 10px 5px;
        font-size: 14px;
    }

    .comparison-table td:before {
        content: attr(data-label);
        font-weight: bold;
        text-align: left;
        padding-right: 10px;
    }
}
