/* Allgemeine Einstellungen */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #555555;
}

/* Flexbox-Layout */
main {
    flex: 1 0 auto;
}

/* Navigation Styles */
/* Navigation Styles */
.navbar {
    background-color: #343434;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid #e99400;
}

.navbar-brand {
    color: #e99400;
    font-size: 24px;
    font-weight: bold;
    margin-right: 1.5rem;
}

.navbar-nav .nav-link {
    font-size: 18px;
    color: white;
    padding: 10px 15px;
    margin-right: 1rem;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    background-color: #e99400;
    border-radius: 5px;
    color: white;
}

/* Dropdown Styles */
.dropdown-menu {
    background-color: #232323;
    border-radius: 10px;
    padding: 15px;
    display: none;  /* Standardmäßig ausgeblendet */
}

.dropdown-item {
    color: white;
}

.dropdown-item:hover {
    background-color: #343434;
    color: white;
    border-radius: 4px;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .navbar-collapse {
        justify-content: flex-start;
    }

    .navbar-nav {
        flex-direction: column;
        text-align: left;
    }

    .navbar-nav .nav-link {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .navbar-nav .dropdown-menu {
        width: 100%;  /* Breites Dropdown für mobile Ansicht */
        display: none;  /* Standardmäßig ausgeblendet */
    }
    
    .dropdown-menu.show {
        display: block;  /* Dropdown sichtbar bei mobilem Klick */
    }
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, #343434, #4f4f4f);
    color: white;
    text-align: center;
    padding: 100px 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-small {
    padding: 25px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

.hero .btn {
    background-color: #e99400;
    border: none;
    padding: 10px 30px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background-color: #e89a1c;
    transform: translateY(-3px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

/* Server Tabelle */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

th, td {
    padding: 15px;
    text-align: left;
}

th {
    background-color: #343434;
    color: white;
}

td {
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s;
}

td:hover {
    background-color: #f0f0f0;
}

.servertable tr:nth-child(even) td {
    background-color: #3e3e3e;
}

tr:hover td {
    background-color: #ffe1ac1a;
    color: white;
}

.bg-dark {
    background-color: #343434 !important;
}

/* Section Styling */
#plans {
    background-color: #f8f9fa;
}

.plan-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    border: 1px solid #e9940059;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.plan-icon {
    color: #e99400;
}

.price {
    font-size: 24px;
    color: #e99400;
    margin-bottom: 15px;
}

.feature-list {
    padding: 0;
    list-style: none;
}

.feature-list li {
    font-size: 16px;
    margin-bottom: 10px;
}

.feature-list li i {
    color: #e99400;
    margin-right: 10px;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .plan-card {
        margin-bottom: 30px;
    }
}


/* Footer */
footer {
    background-color: #343434;
    color: white;
    padding: 50px 0;
}

footer.adt{
    padding-top: 4.5rem !important;
}


footer h5 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

footer ul {
    padding: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #e99400;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #fff;
}

footer hr {
    border: 0;
    height: 1px;
    background: #e99400;
    width: 60%;
    margin: 20px auto;
}

.footer-logo {
    max-width: 150px;
    margin: 20px auto;
    display: block;
}

footer p {
    font-size: 14px;
    margin-top: 20px;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .navbar-nav {
        justify-content: center;
    }

    .plan-card {
        margin-bottom: 30px;
    }

    footer .text-center,
    footer .text-md-start,
    footer .text-md-end {
        text-align: center;
    }
}


/* Hosting Features Section */
#hosting-features {
    background-color: #343434; /* Dunkler Hintergrund */
    padding: 60px 0;
}

.section-title {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #e0e0e0;
    margin-bottom: 40px;
}

.feature-card {
    background-color: #232323;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon i {
    color: #e99400;
}

.feature-card h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #d3d3d3;
    font-size: 16px;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 30px;
    }
}

/* Blob Styling with 3D Effect */
/* Subtiler Blob-Effekt */
.blob-shape {
    position: absolute;
    top: -100px; /* Leicht nach oben verschoben */
    right: -100px;
    width: 450px; /* Blob-Größe verkleinert */
    height: 450px;
    z-index: 1;
    opacity: 0.4; /* Geringere Deckkraft */
    transform: rotate(45deg); /* Leichte Neigung */
}

/* Animation für sanfte Bewegung */
@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.03); /* Leichte Bewegung */
    }
}

/* Data Center Section */
#data-center {
    background-color: #f8f9fa;
    padding: 60px 0;
    position: relative;
    overflow: visible; /* Wichtiger Punkt: Ermöglicht das „Über-den-Rand-Hinaus“-Zeichnen des Blobs */
}

.data-center img {
    border-radius: 15px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: #e99400;
    font-size: 28px;
    margin-bottom: 20px;
}

.section-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.section-title, .section-text {
    z-index: 3; /* Text immer im Vordergrund */
}

/* .btn-warning {
    background-color: #e99400;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-warning:hover {
    background-color: #cf8400;
} */

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .data-center .row {
        flex-direction: column;
        text-align: center;
    }

    .data-center img {
        margin-bottom: 20px;
    }

    .blob-shape {
        top: -300px;
        right: -150px;
        width: 500px;
        height: 500px;
    }
}


/* Styling for the modern dark table */
table {
    background-color: #343434;
    color: white;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

table th, table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #444;
}

thead.thead-dark th {
    background-color: #222;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
}

table tbody tr {
    transition: background-color 0.3s ease;
}

table tbody tr:hover {
    background-color: #ffe1ac1a;
}

table tbody tr td small {
    color: #aaa;
}

.table td, .table th {
    color: white; 
}

.table-hover > tbody > tr:hover > * {
    color:white;

}

/* Styling for the buttons */
/* .btn-warning {
    background-color: #e99400;
    color: white;
    border-radius: 4px;
    padding: 8px 20px;
    transition: background-color 0.3s ease;
}

.btn-warning:hover {
    background-color: #cf8400;
} */

.light-section {
    background-color: #f8f9fa !important;
}

.dark-section {
    background-color: #343434 !important;
}




/* Styling for the FAQ section */
#faq {
    padding: 60px 0;
}

.faq-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #555555;
    margin-bottom: 20px;
    position: relative;
}

.faq-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    width: 40px;
    height: 3px;
    background-color: #e99400;
    transform: translateY(-50%);
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
}

.faq-header {
    background-color: #4a4a4a;
    color: white;
    padding: 0;
    border-radius: 8px;
    border-bottom: none;
}

.faq-header .btn-faq {
    display: block;
    width: 100%;
    padding: 20px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    text-align: left;
    background: none;
    border: none;
    text-decoration: none;
    transition: background-color 0.3s;
}

.faq-header .btn-faq:hover {
    background-color: #e99400;
    color: white;
    border-radius: 8px;
}

.faq-body {
    padding: 20px;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
}
/* 
.btn-warning {
    background-color: #e99400;
    color: white;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.btn-warning:hover {
    background-color: #cf8400;
} */

.btn-faq {
    color: #343434;
    font-size: 1rem;
}





.testimonial-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.testimonial-section h2 {
    color: #555555;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-section p {
    color: #777;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #343434;
}

.testimonial-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.testimonial-content p {
    font-style: italic;
    color: #777;
    margin-bottom: 15px;
}

.testimonial-content h5 {
    color: #555555;
    font-weight: bold;
}

.social-links a {
    color: #777;
    margin: 0 5px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e99400;
}

/* Custom Colors for Testimonial Cards */
.green {
    background-color: #34d399; /* Grüner Farbton */
}

.orange {
    background-color: #e99400; /* Dein Firmen-Orange */
}

.blue {
    background-color: #3b82f6; /* Blau */
}

@media (max-width: 768px) {
    .testimonial-section h2 {
        font-size: 1.5rem;
    }

    .testimonial-card {
        margin-bottom: 30px;
    }
}

.text-gold{
    color: #ffd75f;
}

.text-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    color: #343434;
  }
  
  .text-section h2 {
    color: #e99400;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .text-section p {
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  
  @media (max-width: 768px) {
    .text-section h2 {
      font-size: 1.5rem;
    }
  
    .text-section p {
      font-size: 1rem;
    }
  }




  .pricing-section {
    background-color: #343434;
    color: #ffffff;
    padding: 60px 0;
}

.pricing-section h2 {
    color: #e99400;
    font-size: 2rem;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    color: #e99400;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
}

.pricing-card p {
    color: #b8b8b8;
    margin-bottom: 20px;
}

.btn-custom {
    background-color: #e99400;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #ffaf1a;
    color: #ffffff;
}

.features {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.features li {
    margin-bottom: 10px;
    color: #ffffff;
    text-align: left;
}

.features li:before {
    content: "✔";
    color: #e99400;
    margin-right: 10px;
}

.features li:contains("✘")::before {
    content: "✘";
    color: #ff4040;
}

@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 20px;
    }
}


.info-section {
    background-color: #1f1f1f;
    color: #ffffff;
}

.section-title {
    color: #e99400;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.section-text {
    color: #6c6c6c;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-info-custom {
    background-color: #e99400;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.btn-info-custom:hover {
    background-color: #ffaf1a;
    color: #ffffff;
}

.info-section img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .info-section .row {
        flex-direction: column-reverse;
    }
    .info-section img {
        margin-bottom: 20px;
    }
}




.server-section {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.server-section .section-title h2 {
    color: #e99400;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.section-title p {
    color: #717171;
    font-size: 18px;
    margin-bottom: 40px;
}

.server-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.server-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 600px;
    padding: 20px;
    transition: all 0.3s ease;
}

.server-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.amd-server {
    border-top: 5px solid #e99400;
}

.intel-server {
    border-top: 5px solid #828282
}

.server-card h3 {
    color: #e99400;
    font-size: 24px;
    margin-bottom: 15px;
}

.server-card p {
    color: #777;
    font-size: 16px;
    margin-bottom: 25px;
}

.btn-server {
    background-color: #e99400;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-server:hover {
    background-color: #343434;
    color: white;
}

.btn-bottom {
    position: relative;
    bottom: -20px;
}

.btn-server:active {
    background-color: #555353 !important;
    color: white !important;
}

.accordion-button:focus{
    box-shadow: none;
}

.feature-box {
    width: 100%;
    max-width: 300px; /* oder eine andere maximale Breite */
    min-height: 200px; /* Feste Mindesthöhe */
    max-height: 220px; /* Feste Maximalhöhe */
    padding: 20px;
    margin: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    overflow: hidden;
}

.feature-box h3 {
    font-size: 1.2em;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-box p {
    font-size: 0.9em;
    line-height: 1.4;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Zeilenbeschränkung für die Beschreibung */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-box-icon {
    font-size: 2em;
    margin-bottom: 10px;
}


@media (max-width: 768px) {
    .feature-box {
        max-width: 100%;
    }
}

.form-control:focus {
    border-color: #fbd797;
}  

/* Rootserver */
    .rootserver_sidebar {
        background-color: #343434;
        color: white;
        padding: 20px;
        max-height: 600px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      }
    

@media (min-width: 1200px) {
.rootserver_sidebar {
    background-color: #343434;
    color: white;
    max-height: 500px;
    position: sticky;
    top: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
}
  
  .rootserver_sidebar h5 {
    color: #e99400;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .rootserver_filter {
    background-color: #343434;
    color: white;
    border: 1px solid #e99400;
    border-radius: 5px;
    padding: 5px;
  }

  /* Ensures the slider stays within the card boundaries */
.rootserver_sidebar input[type="range"] {
    width: 100%; /* Full width of the container */
    max-width: calc(100% - 20px); /* Adds padding to prevent overflow */
    margin: 0 auto; /* Centers the slider within the card */
    box-sizing: border-box; /* Prevents padding from expanding beyond container */
    appearance: none;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
  }
  
  .rootserver_sidebar input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #343434;
    cursor: pointer;
    border: 2px solid #fff;
  }
  
  .rootserver_sidebar input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #343434;
    cursor: pointer;
    border: 2px solid #fff;
  }
  
  .rootserver_sidebar input[type="range"]::-ms-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #343434;
    cursor: pointer;
    border: 2px solid #fff;
  }
  
  .rootserver_filter option {
    background-color: #343434;
  }
  
  .rootserver_table {
    background-color: white;
    border: none;
    padding: 20px;
  }
  
  .rootserver_card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .rootserver_card:hover {

  }

  .rootserver_name {
    flex: 1;
    text-align: left;
  }
  
  .rootserver_name h6 {
    font-weight: bold;
    font-size: 1.2em;
    color: #343434;
  }
  
  .rootserver_details {
    flex: 2;
    text-align: left;
    color: #555;
  }
  
  .rootserver_details p {
    margin: 5px 0;
  }
  
  .rootserver_details strong {
    font-weight: bold;
  }
  
  .rootserver_price {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .price_value {
    font-size: 1.5em;
    color: #e99400;
    font-weight: bold;
    margin: 0;
  }
  
  .price_unit {
    font-size: 0.9em;
    color: #666;
    margin: 2px 0; /* Small spacing for better alignment */
    text-align: center;
  }
  
  .setup_fee {
    font-size: 0.8em;
    color: #888;
    margin-top: 2px;
    text-align: center;
  }
  
  .rootserver_button {
    background-color: #e99400;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .rootserver_button:hover {
    background-color: #d88400;
    transform: translateY(-2px);
  }
  
  #priceValue {
    font-weight: bold;
    margin-top: 5px;
    margin-left: 10px;
  }
  

  .rootserver_filter_buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; /* Allows buttons to wrap to the next line if needed */
  }
  
  .filter-btn {
    background-color: #343434;
    color: white;
    border: 1px solid #e99400;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex: 1 1 48%; /* Takes up 48% of the container width, with wrapping */
    text-align: center;
  }
  
  .filter-btn.active {
    background-color: #e99400;
    color: white;
  }
  
  .filter-btn:hover {
    background-color: #d88400;
  }
  
  @media (max-width: 768px) {
    .filter-btn {
      flex: 1 1 100%; /* Each button takes up full width on smaller screens */
    }
  
    .rootserver_filter_buttons {
      gap: 5px; /* Reduce spacing on smaller screens */
    }
  
    .form-group {
      margin-bottom: 10px;
    }
  }

  .teamspeak-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .teamspeak-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .teamspeak-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  
  .teamspeak-card h3 {
    font-size: 1.6em;
    color: #e99400;
    margin: 0;
  }
  
  .price-section {
    font-size: 2em;
    color: #e99400;
    margin: 20px 0;
    font-weight: bold;
  }
  
  .price-info {
    font-size: 0.9em;
    color: #666;
    display: block;
  }
  
  .slot-slider {
    margin: 30px 0;
    text-align: left;
  }
  
  .slot-label {
    font-weight: bold;
    color: #333;
  }
  
  #slot-value {
    font-weight: bold;
    color: #e99400;
    display: inline-block;
    margin-left: 10px;
  }
  
  input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: #ddd;
    outline: none;
    border-radius: 5px;
  }
  
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e99400;
    cursor: pointer;
  }
  
  .configure-button {
    background-color: #e99400;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    font-size: 1em;
    transition: background-color 0.2s ease;
  }
  
  .teamspeak-container {
    max-width: 800px;
  }

  .configure-button:hover {
    background-color: #d88400;
  }
  
  @media (max-width: 576px) {
    .price-section {
      font-size: 1.5em;
    }
  }

  .teamspeak-icon {
    font-size: 40px; /* Größe des Icons anpassen */
    color: #e99400; /* Farbgebung anpassen */
    margin-right: 10px;
  }

  /* Container für die Webhosting-Pläne */
.webhosting-plans {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .plan-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    background-color: #f9f9f9;
    transition: transform 0.3s ease;
  }
  
  .plan-card:hover {
    transform: scale(1.05);
  }
  
  .plan-card h3 {
    font-size: 1.5em;
    color: #e99400;
    margin-bottom: 10px;
  }
  
  .plan-card .plan-price {
    font-size: 1.7em;
    color: #e99400;
    font-weight: bold;
    margin: 10px 0;
  }
  
  .plan-card .plan-features {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
  }
  
  .plan-card .plan-features li {
    font-size: 0.9em;
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
  }
  
  .plan-card .configure-button {
    background-color: #e99400;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.2s ease;
    margin-top: 10px;
  }
  
  .plan-card .configure-button:hover {
    background-color: #d88400;
  }
  
  .recommended {
    background-color: #fff9e6;
    border: 1px solid #e99400;
    position: relative;
  }
  
  .recommended::before {
    content: "Empfohlen";
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: #e99400;
    color: white;
    padding: 5px 10px;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 5px;
  }

  .popular {
    background-color: #fff9e6;
    border: 1px solid #e99400;
    position: relative;
  }
  
  .popular::before {
    content: "Beliebt";
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: #e99400;
    color: white;
    padding: 5px 10px;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 5px;
  }
  
  .details-section {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .details-section h3 {
    color: #e99400;
    margin-bottom: 15px;
  }
  
  .details-section p {
    color: #666;
    line-height: 1.6;
  }

  /* Domain-Registrierung Sektion */
.domain-search {
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    gap: 10px;
  }
  
  .domain-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
  }
  
  .search-button {
    background-color: #e99400;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .search-button:hover {
    background-color: #d88400;
  }
  
  /* TLD Preistabelle */
  .tld-table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    text-align: center;
  }
  
  .tld-table th,
  .tld-table td {
    padding: 15px;
    border: 1px solid #ddd;
  }
  
  .tld-table th {
    background-color: #f4f4f4;
    color: #333;
  }
  
  .tld-table td {
    color: #666;
  }
  
  /* Add-On Sektion */
  .domain-addons {
    text-align: center;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .addon-options {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .addon-card {
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #f9f9f9;
    transition: background-color 1000ms linear, transform 0.3s ease;
    cursor: pointer;
  }

  .addon-card:hover{
    border: 1px solid #ffca86;
    box-shadow: 0 4px 12px rgba(255, 219, 133, 0.63);
    transform: scale(1.05);
  }

  .addon-card:active{
    border: 1px solid #ffca86;
    background-color: #fff9eb;
    box-shadow: 0 4px 12px rgba(255, 219, 133, 0.63);
    transform: scale(1.05);
  }
  
  .addon-card i {
    font-size: 40px;
    color: #e99400;
    margin-bottom: 10px;
  }
  
  .addon-card h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
  }
  
  .addon-card p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
  }

  /* TLD Preistabelle */
/* TLD Preistabelle */
.tld-table-container {
    max-width: 800px;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    background-color: #ffffff;
  }
  
  .tld-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
  }
  
  .tld-table th {
    background-color: #f4f4f4;
    color: #333;
    font-weight: bold;
    padding: 15px;
    font-size: 1em;
    border-bottom: 2px solid #e99400;
  }
  
  .tld-table td {
    padding: 15px;
    font-size: 0.95em;
    color: #666;
  }
  
  .tld-table tbody tr {
    transition: background-color 0.3s ease;
  }
  
  .tld-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  .tld-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
  }
  
  .tld-table tbody tr:hover {
    background-color: #e99400;
    color: white;
  }
  
  .tld-table tbody tr:hover td {
    color: white;
  }
  
  .tld-table tbody td:first-child {
    font-weight: bold;
  }
  
  .tld-table-container {
    padding: 20px;
    border-radius: 10px;
  }
  
  .btn-addons {
    position: relative;
    bottom: -10px;
  }



.text-orange {
    color: #f39c12 !important;
}

.text-bold {
  font-weight: bold !important;
}

p.mwst{
  margin-top: -15px;
  margin-bottom: 1rem;
}

.smaller {
  font-size: 11px !important;
}


.cta-button {
  background-color: #ff9800;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1em;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e68900;
}

/* Why Managed Services Section */
.why-services {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.why-services h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 15px;
}

.why-services ul {
  list-style-type: disc;
  margin: 20px auto;
  padding-left: 20px;
  text-align: left;
}

.why-services li {
  font-size: 1.1em;
  margin: 10px 0;
}

/* Services Section */
.services {
  background-color: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2em;
  color: #333;
}

.service-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 20px auto;
}

.service-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 250px;
  margin: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #ff9800;
  font-size: 1.5em;
  margin-bottom: 10px;
}

/* Packages Section */
.packages {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.packages h2 {
  font-size: 2em;
  color: #333;
}

.package-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 20px auto;
}

.package-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 250px;
  margin: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card h3 {
  color: #ff9800;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.price {
  font-size: 1.2em;
  color: #333;
  font-weight: bold;
}


/* ################### */

.cta-button {
  background-color: #ff9800;
  color: white;
  padding: 10px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  display: inline-block;
}

.cta-button:hover {
  background-color: #e68900;
}

/* Configurator Section */
.configurator {
  padding: 40px 20px;
  background-color: #ffffff;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.configurator h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

.config-item {
  margin: 20px 0;
}

.config-item label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: #ddd;
  border-radius: 5px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e99400;
  cursor: pointer;
}

.config-item span {
  font-size: 1.1em;
  color: #e99400;
  font-weight: bold;
  margin-top: 10px;
  display: inline-block;
}

/* Add-ons Section */
.addons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.addon {
  background-color: #f4f4f4;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.addon label {
  font-size: 1em;
  color: #333;
  margin-left: 10px;
}

.addon-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #e99400;
}

/* Final Configuration Display */
.final-config {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  text-align: left;
}

.final-config h3 {
  font-size: 1.5em;
  color: #e99400;
  margin-bottom: 10px;
}

.final-config p, .final-config ul {
  font-size: 1em;
  color: #555;
  margin: 5px 0;
}

.final-config ul {
  list-style: none;
  padding: 0;
}

.final-config li {
  margin-left: 20px;
}
.price-display {
  font-size: 1.5em;
  color: #e99400;
  font-weight: bold;
  margin-top: 20px;
}



.flag {
  position: relative;
  width: 300px;
  height: 200px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.germany {
  background: linear-gradient(#000 33%, #de0000 33%, #de0000 67%, #ffcf00 0);
}

#image-slider {
  position: relative;
  overflow: hidden;
}

.carousel-item img {
  object-fit: cover;
  height: 50vh; /* Volle Höhe des Viewports für ein immersives Erlebnis */
  filter: brightness(0.7); /* Leichter dunkler Filter für bessere Lesbarkeit des Textes */
}

.carousel-caption {
  bottom: 20%;
  text-align: center;
}

.carousel-caption h5 {
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption .btn {
  margin-top: 1rem;
  padding: 0.7rem 2rem;
  font-size: 1rem;
  background-color: #f0a500;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.carousel-caption .btn:hover {
  background-color: #d48800;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
}

.carousel-indicators [data-bs-target] {
  background-color: #f0a500;
}

.carousel-indicators .active {
  background-color: #d48800;
}


#cookieConsent {
  background-color: #343434;
  color: #ffffff;
  z-index: 1050;
}

#cookieConsent a {
  color: #e99400;
}

#acceptAllCookies {
  background-color: #e99400;
  border: none;
  color: #343434;
}

#acceptAllCookies:hover {
  background-color: #ffae42;
  color: #343434;
}

#acceptNecessary {
  border-color: #e99400;
  color: #e99400;
}

#acceptNecessary:hover {
  background-color: #e99400;
  color: #343434;
}

.bg-darker{
  background-color: #262626 !important;
}