/* Optimierter Hintergrund für KVM-Server */
.kvm-server-banner {
    background: #1045db;
    background: -webkit-linear-gradient(135deg, #1045db 0%, #0a3581 50%, #15095e 80%, #ff7e5f 100%);
    background: -o-linear-gradient(135deg, #1045db 0%, #0a3581 50%, #15095e 80%, #ff7e5f 100%);
    background: linear-gradient(135deg, #1045db 0%, #0a3581 50%, #15095e 80%, #ff7e5f 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;
}

.kvm-server-banner .container {
    z-index: 2;
    color: #fff;
}

.kvm-server-banner .banner-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInLeft 1s;
}

.kvm-server-banner .banner-subtitle {
    font-size: 1.2em;
    margin-bottom: 20px;
    animation: fadeInLeft 1.5s;
}

.kvm-server-banner .banner-list {
    list-style: none;
    padding: 0;
    font-size: 1.1em;
}

.kvm-server-banner .banner-list li {
    margin-bottom: 10px;
}

.kvm-server-banner .banner-small-text {
    font-size: 1em;
    margin-top: 20px;
}

.kvm-server-banner .banner-location {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
}

.kvm-server-banner .cta-buttons {
    margin-top: 20px;
}

.kvm-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) {
    .kvm-server-banner {
        min-height: 550px; /* Höhe leicht erhöht */
        padding: 10px;
    }

    .kvm-server-banner .banner-title {
        font-size: 1.8em;
        margin-top: 180px; /* Weniger Abstand nach oben */
    }

    .kvm-server-banner .banner-subtitle {
        font-size: 1em;
        margin-top: 10px;
    }

    .kvm-server-banner .banner-list {
        font-size: 0.9em;
    }

    .kvm-server-banner .banner-small-text {
        font-size: 0.8em;
    }

    .kvm-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 */
    }

    .kvm-server-banner .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .kvm-server-banner .cta-buttons .btn {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .kvm-server-banner {
        min-height: 900px; /* Höhe erhöht */
    }

    .kvm-server-banner .banner-title {
        font-size: 2em;
        margin-top: 150px; /* Abstand nach oben hinzugefügt */
    }

    .kvm-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);
}
.os-selection-container {
    text-align: center;
    padding: 20px 0;
}

.os-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.os-selection {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.os-card {
    width: 120px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    text-align: center;
}

.os-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.os-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.os-card p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

















/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.plesk-section {
    background-color: #f1f1f1;
    padding: 50px 0;
}

.plesk-section h2 {
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.plesk-section p {
    color: #555;
}

.plesk-section ul {
    list-style: none;
    padding: 0;
}

.plesk-section ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #007bff;
}

.plesk-section ul li i {
    margin-right: 8px;
}

.plesk-section .btn {
    background-color: #007bff;
    border-color: #007bff;
}

.plesk-section .btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}
/* Git Section Styling */
.git-section {
    background-color: #f9f9f9; /* Slightly different background color for visual separation */
}

.git-section h2 {
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.8em;
}


.git-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.git-section ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.git-section ul li i {
    margin-right: 8px;
}

/* WordPress Toolkit Section Styling */
.wordpress-section {
    background-color: #f1f1f1;
}

.wordpress-section h2 {
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.8em;
}



.wordpress-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.wordpress-section ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.wordpress-section ul li i {
    margin-right: 8px;
}

/* Image Styling for Git and WordPress Sections */
.git-section .img-fluid,
.wordpress-section .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .git-section, .wordpress-section {
        padding: 30px 0;
    }
    .git-section h2, .wordpress-section h2 {
        font-size: 1.5em;
    }
    .btn-lg {
        font-size: 1em;
        padding: 10px 20px;
    }
}
