/* Allgemeine Stile */
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

img {
    will-change: transform;
  }

/* Header */
.main-header {
    display: flex;
    align-items: center;
    background-color: #1299f3;
    height: 100px;
    padding: 0 5%; 
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* Navigation */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 30%;
    position: relative;
    z-index: 2;
}

/* Language Switch */

.language-switch {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0 1rem;
    margin-left: auto;
    padding-left: 0;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #0073e6;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.lang-btn:hover {
    background-color: #005bb5;
}

.flag-icon {
    width: 20px;
    height: 16px;
    object-fit: contain;
    display: inline-block;
}

/* Buttons mit Icons */
.nav-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 13px;
    color: white;
    margin-right: 15px;
    transition: color 0.3s ease;
}

/* Icons in den Buttons */
.nav-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    display: inline-block;
    filter: invert(1);
}

/* Hover Effekt */
.nav-button:hover {
    color: #005a8d;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 40%;
    position: relative;   
    z-index: -1;          
}

.logo {
    height: 500px;
    max-width: 500px;
    pointer-events: none;
}

.secondary-nav {
    background-color: white;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    position: relative;
    z-index: 1000 !important;
}

/* Navigationselemente */
.secondary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

/* Jedes Hauptnavigations-Element */
.secondary-nav ul li {
    position: relative;
}

/* Links */
.secondary-nav ul li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #444;
    padding: 24px 12px;
    text-transform: uppercase;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.secondary-nav ul li a:hover {
    color: #007bb5;
}

.nav-toggle-btn {
    display: none;
}

@media screen and (min-width: 769px) {
    /* Desktop-Only Dropdown Navigation */
    .weiterenav-container {
        position: absolute;
        margin-top: 30px;
        top: 110%;
        left: 0;
        background-color: white;
        width: 350px;
        border-radius: 6px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        display: none !important;
        z-index: 1000;
        padding: 15px;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-item:hover .weiterenav-container,
    .nav-item:hover::after,
    .weiterenav-container:hover {
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }

    .nav-item::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 30px;
        background: transparent;
        pointer-events: auto;
    }

    .weiterenav-container ul {
        list-style: none;
        padding: 0;
        margin: 0;
        min-height: 140px;
        flex-direction: column;
        justify-content: space-around;
    }

    .weiterenav-container li {
        padding: 10px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 10px;
        font-weight: bold;
        color: #444;
        text-transform: uppercase;
        border-bottom: 1px solid #ddd;
    }

    .weiterenav-container li:last-child {
        border-bottom: none;
    }

    /* Hover-Effekt */
    .weiterenav-container li:hover {
        background-color: #f5f5f5;
    }

    /* Pfeil nach rechts */
    .weiterenav-container li::after {
        content: ">";
        font-size: 14px;
        color: #444;
    }

    /* Header der weiteren Navigation */
    .weiterenav-header {
        background-color: #007bb5;
        color: white;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        padding: 10px 15px;
    }

    .hamburger-menu {
        display: none;
        z-index: 9999 !important;
    }

    
    .nav-item:hover .weiterenav-container {
        display: block;
    }
}


/* Responsives Design */
@media screen and (max-width: 768px) {
    .logo {
        content: url("media/images/HostingTime_Logosmall.png");
        max-width: 400px;
        height: auto;
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .logo-container {
        text-align: center;
        width: 100%;
    }

    .main-header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 20px 0;
    }

    .nav-links {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .nav-button {
        margin: 0 10px;
    }

    .secondary-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 5%;
        height: 70px;
        background-color: white;
        position: relative;
    }

    .secondary-nav ul {
        display: block;
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        position: absolute;
        left: 0;
        padding: 0px 0;
        text-align: center;
    }

    .secondary-nav ul li a {
        color: white;
    }

    .secondary-nav ul.active {
        display: flex !important;
        background-color: #1299f3;
        top: 90px;
    }

    .hamburger-menu {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        position: absolute;
        right: 10px;
        top: 45%;
        transform: translateY(-50%);
        z-index: 1000;
        background: none;
        border: none;
        padding: 5px 10px;
    }

    .hamburger-icon {
        width: 32px;
        height: 32px;
    }

    .menu-text {
        font-size: 16px;
        margin-top: 5px;
        font-weight: bold;
        color: black;
        text-transform: uppercase;
        font-family: 'Oswald', sans-serif;
    }

    .nav-list {
        display: none !important;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
        width: 100%;
        background-color: #1299f3;
    }

    .nav-list.active {
        display: flex !important;
    }

    .nav-item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 10px 0;
        box-sizing: border-box;
        position: relative !important;
    }

    .nav-item:not(:last-child)::after {
        content: "";
        display: block;
        height: 2px;
        background-color: white;
        width: 70%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
    }

    .nav-item a {
        font-size: 16px;
        color: white;
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
    }

    .secondary-nav ul li a {
        padding: 12px 12px;
        color: white;
    }

    .nav-toggle-btn {
        display: inline-block;
        position: absolute;
        right: 60px;
        top: 37%;
        transform: translateY(-50%);
        background: #ffde59;
        color: black;
        font-weight: bold;
        border: none;
        cursor: pointer;
        font-size: 18px;
        width: 32px;
        height: 32px;
        line-height: 32px;
        text-align: center;
        border-radius: 5px;
        padding-left: 10px;
    }

    .weiterenav-container {
        display: none;
        overflow: visible !important;
        max-height: 500px;
        transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
        opacity: 0;
        z-index: 1001 !important;
        position: absolute;
        top: 75% !important;
        left: 0 !important;
        width: 100% !important;
        height: 10px !important;
        background-color: #1299f3;
    }

    .weiterenav-header {
        display: none;
    }

    .weiterenav-container ul {
        opacity: 1 !important;
        visibility: visible !important;
        transition: opacity 0.3s ease-out;
    }

    .weiterenav-container ul li {
        padding: 10px;
        color: white;
        background: #1299f3 !important;
    }

    .weiterenav-container ul li a {
        color: white;
        text-decoration: none;
        text-align: center;
    }

    .nav-item.open .weiterenav-container {
        display: block;
        max-height: 500px;
        opacity: 1;
    }
    
    .nav-item.open .weiterenav-container ul {
        opacity: 1;
    }
}

/* Slider-Section */
.slider-section {
    position: relative;
    width: 100%;
    height: 500px; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    background-color: #1299f3;
}

/* Bild im Slider */
.slider-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Text über dem Bild */
.slider-content {
    position: absolute;
    top: 0%;
    left: 17%;
    text-align: left; 
    color: white;
    padding: 20px 40px;
    border-radius: 10px;
    max-width: 40%;
    z-index: 1 !important; 
}

/* Hauptüberschrift */
.slider-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    font-family: 'Oswald', sans-serif;
    z-index: 100;
}

/* Untertitel */
.slider-content p {
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

@media screen and (max-width: 768px) {
    .slider-section {
        height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 20px;
        position: relative;
    }


    .slider-content {
        position: absolute;
        top: 5%; 
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        text-align: center; 
        padding: 10px;
        z-index: 10; 
    }

    .slider-content h1 {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .slider-content p {
        font-size: 14px; 
        margin-bottom: 15px;
        line-height: 1.4;
    }

    
    .feature-list, 
    .feature-item {
        display: none !important;
    }

    /* 🌟 Bild bleibt UNTEN */
    .slider-image {
        width: 100%;
        height: auto;
        max-height: 300px; 
        object-fit: contain;
        position: absolute;
        bottom: 0; 
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }
}

@media screen and (max-width: 480px) {
    
    .slider-section {
        height: 300px; 
    }

    .slider-content {
        position: absolute;
        top: 5%;
        left: 40%;
        transform: translateX(-50%);
        width: 75%; 
        max-width: 250px; 
        text-align: left;
        z-index: 10;
    }

    .slider-content h1 {
        font-size: 20px; 
    }

    .slider-content p {
        font-size: 12px;
    }

    .slider-image {
        max-height: 250px; 
    }
}

/* Feature-Liste */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Einzelne Features */
.feature-item {
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* SVG Icons */
.icon {
    width: 24px;
    height: 24px;
    fill: #FFDE59;
}

/* DOMAIN Stile */
.domain-search {
    text-align: center;
    background-color: #f9f9f9;
    padding: 40px 0;
}

.domain-search h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    font-family: 'Oswald', sans-serif;
}

.domain-search p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

/* Formular-Wrapper */
.domain-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Suchfeld-Styling */
.domain-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #e0e0e0;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.domain-prefix {
    background-color: #1299f3;
    color: white;
    padding: 12px;
    font-weight: bold;
    border-radius: 5px 0 0 5px;
}

.domain-input-wrapper input {
    border: none;
    padding: 12px;
    width: 250px;
    font-size: 16px;
    outline: none;
}

.domain-input-wrapper select {
    height: 42px;
    border: none;
    padding: 12px;
    font-size: 16px;
    outline: none;
    cursor: pointer;
}

.domain-input-wrapper button {
    background-color: #ffde59;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: background 0.3s ease;
}

.domain-input-wrapper button:hover {
    background-color: #ffcc00;
}

h2 strong {
    font-weight: bold;
}

/* SVG-Icon im Button */
button .icon {
    width: 16px;
    height: 13px;
    fill: #333;
}

@media screen and (max-width: 768px) {
    .domain-search {
        padding: 30px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .domain-search h2 {
        font-size: 20px;
        text-align: center;
        max-width: 90%;
        margin: 0 auto 10px auto;
        display: block;
    }

    .domain-search p {
        font-size: 14px;
        text-align: center;
        max-width: 80%; 
        margin: 0 auto 15px auto; 
        display: block; 
    }

    
    .domain-form {
        display: flex;
        justify-content: center; 
        width: 100%;
    }

    .domain-input-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 85%;
        max-width: 450px;
        gap: 5px;
        padding: 5px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .domain-prefix,
    .domain-input-wrapper input,
    .domain-input-wrapper select,
    .domain-input-wrapper button {
        height: 42px !important; 
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .domain-prefix {
        padding: 10px;
        font-size: 14px;
        white-space: nowrap;
        border-radius: 5px 0 0 5px;
        display: flex;
        align-items: center;
        min-width: 85px; 
    }

    .domain-input-wrapper input {
        flex-grow: unset; 
        width: 30%; 
        min-width: 110px;
        font-size: 13px;
        padding: 8px;
    }

    .domain-input-wrapper select {
        width: auto;
        min-width: 70px; 
        font-size: 14px;
        padding: 8px;
        border: none;
        outline: none;
        cursor: pointer;
        width: 20%;
    }

    .domain-input-wrapper button {
        width: auto;
        min-width: 110px; 
        font-size: 12px;
        padding: 8px;
        border-radius: 0 5px 5px 0;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    .domain-input-wrapper button span {
        font-size: 11px !important;
    }
}

@media screen and (max-width: 480px) {
    .domain-search {
        padding: 20px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .domain-search h2 {
        font-size: 18px;
        text-align: center;
        max-width: 85%;
        margin: 0 auto 10px auto;
        display: block;
    }

    .domain-search p {
        font-size: 13px;
        text-align: center;
        max-width: 80%;
        margin: 0 auto 15px auto;
        display: block;
    }

    .domain-form {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .domain-input-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 98%;
        max-width: 400px;
        gap: 4px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .domain-prefix,
    .domain-input-wrapper input,
    .domain-input-wrapper select,
    .domain-input-wrapper button {
        height: 38px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .domain-prefix {
        padding: 8px;
        font-size: 13px;
        min-width: 80px;
    }

    .domain-input-wrapper input {
        flex-grow: unset; 
        width: 30%; 
        min-width: 110px;
        font-size: 13px;
        padding: 8px;
    }

    .domain-input-wrapper select {
        width: auto;
        min-width: 70px;
        font-size: 13px;
        padding: 6px;
        width: 20%;
    }

    .domain-input-wrapper button {
        width: auto;
        min-width: 100px;
        font-size: 11px;
        padding: 6px;
    }

    .domain-input-wrapper button span {
        font-size: 10px !important;
    }
}

/* Hosting-Styling */
.hosting-offers {
    text-align: center;
    background-color: #ffffff;
    padding: 50px 0;
}

.hosting-offers h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    font-family: 'Oswald', sans-serif;
}

.hosting-offers p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.hosting-offers hr {
    width: 80px;
    height: 4px;
    background-color: #1299f3;
    border: none;
    margin: 20px auto;
}

/* Grid-Layout */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    margin-top: 30px;
}

/* Einzelne Boxen */
.offer-box {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #1299f3;
}

.offer-header span {
    color: #ffde59;
    font-weight: bold;
}

.offer-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Header */
.offer-header {
    background-color: #1299f3;
    color: white;
    padding: 15px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
}

/* Button */
.offer-button {
    background-color: #ffde59;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.offer-button:hover {
    background-color: #ffcc00;
}

@media screen and (max-width: 768px) {
    .hosting-offers {
        padding: 40px 0;
    }

    .hosting-offers h2 {
        font-size: 22px;
        max-width: 90%;
        margin: 0 auto;
    }

    .hosting-offers p {
        font-size: 13px;
        max-width: 80%;
        margin: 0 auto 15px auto;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 95%;
        margin: 0 auto;
    }

    .offer-box {
        padding: 12px;
        font-size: 13px;
    }

    .offer-header {
        padding: 10px;
        font-size: 13px;
    }

    .offer-header h3 {
        font-size: 15px;
    }

    .offer-box p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .offer-button {
        font-size: 13px;
        padding: 6px 10px;
        gap: 6px;
    }

    .offer-button svg {
        width: 12px;
        height: 12px;
    }
}

@media screen and (max-width: 480px) {
    .hosting-offers {
        padding: 30px 10px;
    }

    .hosting-offers h2 {
        font-size: 18px;
        max-width: 85%;
        margin: 0 auto;
    }

    .hosting-offers p {
        font-size: 12px;
        max-width: 85%;
        margin: 0 auto;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 92%; 
        margin: 0 auto;
    }

    .offer-box {
        padding: 10px;
        font-size: 12px;
    }

    .offer-header {
        padding: 8px;
        font-size: 12px;
    }

    .offer-header h3 {
        font-size: 14px;
    }

    .offer-box p {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .offer-button {
        font-size: 11px;
        padding: 5px 8px;
        gap: 5px;
    }

    .offer-button svg {
        width: 10px;
        height: 10px;
    }
}

/* Testimonials Section */
.testimonials {
    text-align: center;
    background-color: #f9f9f9;
    padding: 50px 0;
}

.testimonials h2 {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    font-family: 'Oswald', sans-serif;
}

/* Slider Styling */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.testimonial-content {
    display: none;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    text-align: center;
    padding: 20px;
}

/* Zeige nur das aktive Testimonial */
.testimonial-content.active {
    display: block;
}

/* Autor Styling */
.testimonial-author {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

/* Navigationspfeile */
.prev, .next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Linker Pfeil */
.prev {
    left: 10px;
}

/* Rechter Pfeil */
.next {
    right: 10px;
}

/* SVG Styling */
.prev svg, .next svg {
    width: 40px;
    height: 40px;
    fill: #ccc;
    transition: fill 0.3s ease;
}

/* Hover-Effekt */
.prev:hover svg, .next:hover svg {
    fill: #555;
}

@media screen and (max-width: 768px) {
    .testimonials {
        max-width: 100%; 
        margin: 0 auto; 
        padding: 30px 0;
    }

    .testimonials h2 {
        font-size: 22px; 
        max-width: 90%;
        margin: 0 auto;
    }

    .testimonial-slider {
        max-width: 100%;
        overflow: hidden;
    }

    .testimonial-content {
        font-size: 16px; 
        padding: 15px;
        line-height: 1.5;
        max-width: 90%;
        margin: 0 auto;
    }

    .testimonial-author {
        font-size: 12px; 
    }

    .prev, .next {
        width: 30px;
        height: 30px;
        top: 50%; 
        transform: translateY(-50%);
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }

    .prev svg, .next svg {
        width: 25px;
        height: 25px;
    }
}

@media screen and (max-width: 480px) {
    .testimonials {
        max-width: 100%; 
        margin: 0 auto; 
        padding: 30px 0;
    }

    .testimonials h2 {
        font-size: 18px;
        max-width: 90%;
        margin: 0 auto;
    }

    .testimonial-slider {
        max-width: 100%;
        overflow: hidden;
    }

    .testimonial-content {
        font-size: 13px;
        padding: 15px;
        line-height: 1.5;
        max-width: 90%;
        margin: 0 auto;
    }

    .testimonial-author {
        font-size: 11px;
    }

    .prev, .next {
        width: 25px;
        height: 25px;
        top: 35%; 
        transform: translateY(-50%);
    }

    .prev {
        left: 3px; 
    }

    .next {
        right: 3px; 
    }

    .prev svg, .next svg {
        width: 20px;
        height: 20px;
    }
}

/* Produkte-Section */
.products-section {
    position: relative;
    text-align: center;
    color: white;
    padding: 60px 5%;
    overflow: hidden;
}

/* Hintergrundbild */
.products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1; 
}

/* Content über dem Bild */
.products-content {
    position: relative;
    z-index: 2; 
}

/* Überschrift */
.products-content h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    margin-right: -500px;
}

/* Container für die Produkte */
.products-container {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    max-width: 1200px;
    margin-left: auto;
}

/* Einzelne Produkt-Box */
.product-box {
    background: transparent;
    width: 30%;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

/* Produkt-Titel */
.product-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffde59;
    margin-bottom: 10px;
    border-bottom: 3px solid white;
    display: inline-block;
    padding-bottom: 5px;
    font-family: 'Oswald', sans-serif;
}

/* Produkt-Beschreibung */
.product-box p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* Preis */
.product-price {
    font-size: 14px;
    font-style: italic;
    color: white;
}

/* Linie */
.product-box hr {
    border: none;
    border-top: 1px solid #ffde59;
    margin: 10px 0;
}

/* Link */
.product-link {
    font-size: 14px;
    text-decoration: none;
    color: white;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: #ffde59;
}

@media screen and (max-width: 768px) {
    .products-section {
        max-width: 100%; 
        padding: 40px 5%; 
        overflow: hidden; 
    }

    .products-content h2 {
        font-size: 24px; 
        text-align: center; 
        width: 100%;
        max-width: 90%;
        margin: 0 auto 20px auto;
    }

    .products-container {
        display: flex;
        flex-direction: column; 
        align-items: center; 
        width: 100%;
        max-width: 90%;
        margin: 0 auto; 
        margin-left: 0;
    }

    .product-box {
        width: 100%; 
        max-width: 350px; 
        margin: 10px auto; 
        padding: 15px; 
    }

    .product-box p {
        font-size: 14px; 
        line-height: 1.4;
    }

    .product-price {
        font-size: 13px;
    }

    .product-link {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .products-section {
        padding: 30px 5%;
    }

    .products-content h2 {
        font-size: 22px; 
    }

    .products-container {
        max-width: 95%; 
    }

    .product-box {
        max-width: 320px;
        padding: 12px;
    }

    .product-box p {
        font-size: 12px;
    }

    .product-price {
        font-size: 12px;
    }

    .product-link {
        font-size: 12px;
    }
}

/* Support-Section */
.support-section {
    background: white;
    text-align: center;
    padding: 60px 5%;
}

/* Haupt-Container */
.support-container {
    max-width: 800px;
    margin: auto;
}

/* Überschrift */
.support-container h2 {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    font-family: 'Oswald', sans-serif;
}

/* Fließtext */
.support-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* Kontaktmöglichkeiten */
.support-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Buttons für Telefon & WhatsApp */
.support-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: #1299f3;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.support-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.support-btn:hover {
    background: #007bb5;
}

@media screen and (max-width: 768px), (max-width: 480px) {
    .support-section {
        padding: 30px 5%;
    }

    .support-container {
        max-width: 90%;
        margin: 0 auto;
    }

    .support-container h2 {
        font-size: 22px;
        text-align: center;
        max-width: 90%;
        margin: 0 auto 20px auto;
    }

    .support-text {
        font-size: 14px; 
        line-height: 1.5;
        max-width: 85%;
        margin: 0 auto 25px auto;
    }

    .support-contact {
        display: flex;
        justify-content: center;
        flex-wrap: wrap; 
        gap: 15px;
    }

    .support-btn {
        width: 100%;
        max-width: 250px;
        padding: 8px 12px; 
        font-size: 14px; 
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .support-btn img {
        width: 18px; 
        height: 18px;
        margin-right: 6px;
    }
}

/* Projektumzug-Section */
.project-migration-section {
    position: relative;
    text-align: left;
    color: white;
    padding: 60px 5%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hintergrundbild */
.project-migration-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Content über dem Bild */
.project-migration-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: 0;
}

/* Überschrift */
.project-migration-content h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-family: 'Oswald', sans-serif;
    text-align: left;
}

/* Fließtext */
.project-migration-text {
    font-size: 16px;
    line-height: 1.8;
    color: white;
    text-align: left;
    margin-top: 0;
}

@media screen and (max-width: 768px), (max-width: 480px) {
    .project-migration-section {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        padding: 40px 5%;
        background-color: #1299f3;
    }

    .project-migration-content {
        max-width: 90%;
        margin-left: 0;
        text-align: center;
    }

    .project-migration-content h2 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 15px;
    }

    .project-migration-text {
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
    }

    .project-migration-bg {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: auto;
        object-fit: contain;
        z-index: 1;
    }
}

/* Neue Angebote-Section */
.new-offers {
    text-align: center;
    background-color: #ffffff;
    padding: 60px 5%;
}

/* Überschrift */
.new-offers h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    font-family: 'Oswald', sans-serif;
}

/* Beschreibungstext */
.new-offers p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Trennlinie */
.new-offers hr {
    width: 80px;
    height: 4px;
    background-color: #1299f3;
    border: none;
    margin: 20px auto;
}

/* 4-Spalten Layout */
.new-offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: auto;
    margin-top: 30px;
}

/* Einzelne Boxen */
.new-offer-box {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #1299f3;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
}

/* Box Hover Effekt */
.new-offer-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Überschriften mit fester Höhe */
.new-offer-box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1299f3;
    margin-bottom: 10px;
    border-bottom: 3px solid #ffde59;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    text-align: center;
}

/* Einheitlicher Abstand zum Fließtext */
.new-offer-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    flex-grow: 1;
}

/* Link */
.offer-link {
    font-size: 14px;
    text-decoration: none;
    color: #1299f3;
    font-weight: bold;
    border-bottom: 1px dashed rgba(18, 153, 243, 0.7);
    transition: color 0.3s ease;
}

.offer-link:hover {
    color: #ffde59;
}

@media screen and (max-width: 768px), (max-width: 480px) {
    .new-offers {
        padding: 40px 5%;
    }

    
    .new-offers h2 {
        font-size: 18px; 
        max-width: 90%;
        margin: 0 auto 15px auto;
        text-align: center;
    }

    
    .new-offers p {
        font-size: 13px;
        max-width: 85%;
        margin: 0 auto 15px auto;
        text-align: center;
    }

   
    .new-offers-grid {
        display: flex;
        flex-direction: column; 
        align-items: center; 
        gap: 15px;
        max-width: 90%;
        margin: 0 auto;
    }

    
    .new-offer-box {
        width: 90%; 
        max-width: 400px;
        min-height: 300px;
        padding: 15px;
        text-align: center;
    }

    
    .new-offer-box h3 {
        font-size: 16px;
        min-height: 50px; 
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .new-offer-box p {
        font-size: 13px;
        line-height: 1.5;
    }

    .offer-link {
        font-size: 12px;
    }
}

.datacenter {
    text-align: center;
    padding: 40px;
    background-color: #fff;
    border-bottom: 2px solid #e0e0e0;
}

.datacenter h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    font-family: 'Oswald', sans-serif;
}

.datacenter p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

/* Tablet Querformat und kleiner (max 1024px) */
@media (max-width: 1024px) {
    .datacenter {
        padding: 30px;
    }

    .datacenter h2 {
        font-size: 18px;
    }

    .datacenter p {
        font-size: 13px;
    }
}

/* Tablet Hochformat und kleiner (max 768px) */
@media (max-width: 768px) {
    .datacenter {
        padding: 20px;
    }

    .datacenter h2 {
        font-size: 18px;
    }

    .datacenter p {
        font-size: 13px;
    }
}

/* Smartphone (max 480px) */
@media (max-width: 480px) {
    .datacenter {
        padding: 15px;
    }

    .datacenter h2 {
        font-size: 18px;
    }

    .datacenter p {
        font-size: 13px;
    }
}

.location {
    max-width: 1400px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Erste Box (Düsseldorf)*/
.location:nth-of-type(3) {
    border-left: 5px solid #ffde59;
}

/* Zweite Box (Frankfurt)*/
.location:nth-of-type(4) {
    border-right: 5px solid #ffde59;
}

/* Layout für beide Boxen */
.location-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* Erste Box (Düsseldorf)*/
.text-duesseldorf {
    flex: 1;
    padding: 20px;
    font-size: 16px;
    color: #666;
    font-family: 'Oswald', sans-serif;
    text-align: left;
}

.images-duesseldorf {
    flex: 1;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    max-width: 100%;
}

/* Zweite Box (Frankfurt) */
.text-frankfurt {
    flex: 1;
    padding: 20px;
    padding-left: 40px;
    font-size: 16px;
    color: #666;
    font-family: 'Oswald', sans-serif;
    text-align: left;
}

.images-frankfurt {
    flex: 1;
    display: flex;
    gap: 15px;
    justify-content: flex-start; 
    max-width: 100%;
}

/* Einheitliche Überschrift-Stile */
.heading-duesseldorf,
.heading-frankfurt {
    font-size: 24px;
    color: #1299f3;
}

/* Einheitliche Absatz-Stile */
.paragraph-duesseldorf,
.paragraph-frankfurt {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* Einheitliche Listen-Stile */
.list-duesseldorf,
.list-frankfurt {
    list-style: none;
    padding: 0;
}

/* Listenpunkte */
.list-item-duesseldorf {
    margin-bottom: 10px;
    font-size: 16px;
    color: #444;
}


.list-item-frankfurt {
    margin-bottom: 10px;
    font-size: 16px;
    color: #444;
}

/* Einheitliche Bildgrößen */
.images-duesseldorf img,
.images-frankfurt img {
    width: 350px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .location {
        max-width: 90%;
        padding: 20px;
    }

    .location-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text-duesseldorf,
    .text-frankfurt {
        padding: 10px;
        text-align: center;
    }

    .images-duesseldorf,
    .images-frankfurt {
        justify-content: center;
        margin-top: 15px;
        gap: 10px;
    }

    .images-duesseldorf img,
    .images-frankfurt img {
        width: calc(50% - 5px);
        max-width: 250px;
        height: auto;
    }

    .list-item-duesseldorf,
    .list-item-frankfurt {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 14px;
        line-height: 1.4;
        text-align: left;
        padding: 8px 0;
    }

    .list-item-duesseldorf .icon,
    .list-item-frankfurt .icon {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2px;
    }

    .heading-duesseldorf, .heading-frankfurt {
        font-size: 20px;
    }

    .paragraph-duesseldorf, .paragraph-frankfurt {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .location {
        max-width: 90%;
        padding: 15px;
    }

    .location-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text-duesseldorf,
    .text-frankfurt {
        padding: 10px;
        text-align: center;
    }

    .images-duesseldorf,
    .images-frankfurt {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .images-duesseldorf img,
    .images-frankfurt img {
        width: 90%;
        max-width: 400px;
        height: auto;
    }

    .list-item-duesseldorf,
    .list-item-frankfurt {
        gap: 6px;
        font-size: 13px;
        line-height: 1.4;
        padding: 6px 0;
    }

    .list-item-duesseldorf .icon,
    .list-item-frankfurt .icon {
        width: 18px;
        height: 18px;
    }

    .heading-duesseldorf, .heading-frankfurt {
        font-size: 20px;
    }

    .paragraph-duesseldorf, .paragraph-frankfurt {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .location {
        max-width: 90%;
        padding: 10px;
    }

    .location-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text-duesseldorf,
    .text-frankfurt {
        padding: 5px;
        text-align: center;
    }

    .images-duesseldorf,
    .images-frankfurt {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .images-duesseldorf img,
    .images-frankfurt img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .list-item-duesseldorf,
    .list-item-frankfurt {
        gap: 5px;
        font-size: 14px;
        padding: 5px 0;
        padding-left: 10px;
        color: #555;
    }

    .list-item-duesseldorf .icon,
    .list-item-frankfurt .icon {
        width: 16px;
        height: 16px;
    }

    .heading-duesseldorf, .heading-frankfurt {
        font-size: 18px;
    }

    .paragraph-duesseldorf, .paragraph-frankfurt {
        font-size: 14px;
    }
}

.zertification-section {
    position: relative;
    text-align: left;
    color: white;
    padding: 60px 5%;
    height: 25vh;
    overflow: hidden;
    display: flex;
    align-items: center; 
    border-top: 2px solid #e0e0e0;
}

@media (max-width: 1024px) {
    .zertification-section {
        height: 25vh;
        padding: 0;
        margin: 0;
    }

    .zertification-section img.project-migration-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        object-fit: contain;
        z-index: -1;
    }
}

@media (max-width: 768px) {
    .zertification-section {
        height: 20vh;
    }

    .zertification-section img.project-migration-bg {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .zertification-section {
        height: 18vh;
    }

    .zertification-section img.project-migration-bg {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

.site-builder-section {
    text-align: center;
    padding: 0;
    background-color: white;
    border-bottom: 2px solid #e0e0e0;
}

.site-builder-header {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-bottom: 2px solid #e0e0e0;
}

.site-builder-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
}

.site-builder-intro {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 16px;
    color: #666;
}

/* Grid-Bereich */
.site-builder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    align-items: start; 
}

/* Boxen mit gleicher Höhe */
.site-builder-box {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    height: 180px;
}

/* Icon Styling */
.site-builder-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background-color: #1299f3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.site-builder-icon img {
    width: 32px;
    height: 32px;
    filter: invert(1); 
}

/* Text-Styling: Gleiche Höhe */
.site-builder-text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Einheitliche Überschriftenhöhe */
.site-builder-heading {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    min-height: 40px;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

/* Beschreibungstext */
.site-builder-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

@media (max-width: 1024px) {
    .site-builder-section {
        padding: 0 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .site-builder-header {
        width: 100vw; 
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        box-sizing: border-box;
        padding: 40px 20px;
    }

    .site-builder-title {
        font-size: 18px;
    }

    .site-builder-intro {
        font-size: 13px;
    }

    .site-builder-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        align-items: stretch;
    }

    .site-builder-box {
        padding: 15px;
        height: 100%;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-builder-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .site-builder-icon img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    .site-builder-heading {
        font-size: 16px;
        margin: 0;
    }

    .site-builder-description {
        font-size: 13px;
        flex-grow: 1;
    }
}

@media (max-width: 768px) {
    .site-builder-section {
        padding: 0 15px;
        max-width: 100%;
        margin: 0 auto;
    }

    .site-builder-header {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        box-sizing: border-box;
        padding: 30px 15px;
    }

    .site-builder-title {
        font-size: 18px;
    }

    .site-builder-intro {
        font-size: 13px;
    }

    .site-builder-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 15px;
        align-items: stretch;
    }

    .site-builder-box {
        padding: 12px;
        height: 100%;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-builder-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .site-builder-icon img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }

    .site-builder-heading {
        font-size: 16px;
        margin: 0;
    }

    .site-builder-description {
        font-size: 13px;
        flex-grow: 1;
    }
}

@media (max-width: 480px) {
    .site-builder-section {
        padding: 0 10px;
        max-width: 100%;
        margin: 0 auto;
    }

    .site-builder-header {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        box-sizing: border-box;
        padding: 20px 10px;
    }

    .site-builder-title {
        font-size: 18px;
    }

    .site-builder-intro {
        font-size: 13px;
    }

    .site-builder-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
        align-items: stretch;
    }

    .site-builder-box {
        padding: 10px;
        height: 100%;
        min-height: 190px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-builder-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .site-builder-icon img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }

    .site-builder-heading {
        font-size: 16px;
        margin: 0;
        text-align: center;
    }

    .site-builder-description {
        font-size: 13px;
        flex-grow: 1;
        text-align: center;
    }
}

.step-section {
    text-align: center;
    background-color: #f8f8f8;
    padding: 60px 20px;
    border-bottom: 2px solid #e0e0e0;
}

/* Überschrift und Einleitung */
.step-header {
    max-width: 800px;
    margin: 0 auto 40px;
}

.step-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
}

.step-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Flexbox Container für Schritte */
.step-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Boxen für die Schritte */
.step-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

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

/* Nummern der Schritte */
.step-number {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background-color: #1299f3;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
}

/* Text innerhalb der Boxen */
.step-content {
    text-align: left;
}

.step-heading {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .step-section {
        padding: 50px 20px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-intro {
        font-size: 13px;
    }

    .step-container {
        grid-template-columns: 1fr; 
        gap: 20px; 
        max-width: 600px;
        margin: 0 auto;
    }

    .step-box {
        padding: 15px;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .step-content {
        text-align: center;
    }

    .step-heading {
        font-size: 18px;
    }

    .step-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .step-section {
        padding: 40px 15px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-intro {
        font-size: 13px;
    }

    .step-container {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 500px;
        margin: 0 auto;
    }

    .step-box {
        padding: 12px;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .step-content {
        text-align: center;
    }

    .step-heading {
        font-size: 14px;
    }

    .step-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .step-section {
        padding: 30px 10px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-intro {
        font-size: 13px;
    }

    .step-container {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
        margin: 0 auto;
    }

    .step-box {
        padding: 10px;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 16px;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .step-content {
        text-align: center;
    }

    .step-heading {
        font-size: 14px;
    }

    .step-description {
        font-size: 13px;
    }
}

/* Allgemeine Sektionseinstellungen */
.builder-section {
    text-align: center;
    background-color: white;
    padding: 60px 20px;
    border-bottom: 2px solid #e0e0e0;
}

/* Header */
.builder-header {
    max-width: 800px;
    margin: 0 auto 40px;
}

.builder-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
}

.builder-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Flexbox für Bilder */
.builder-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Styling für die Bilder */
.builder-images img {
    width: 60%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.builder-images img:hover {
    transform: scale(1.05);
}

/* Responsives Design für kleinere Bildschirme */
@media (max-width: 900px) {
    .builder-images {
        flex-direction: column;
        align-items: center;
    }

    .builder-images img {
        width: 90%;
    }
}

@media (max-width: 1024px) {
    .builder-title {
        font-size: 18px;
    }

    .builder-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .builder-title {
        font-size: 18px;
    }

    .builder-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .builder-title {
        font-size: 18px;
    }

    .builder-description {
        font-size: 13px;
    }
}

/* Allgemeine Sektion */
.edv-section {
    text-align: center;
    background-color: white;
    padding: 60px 20px;
    border-bottom: 2px solid #e0e0e0;
}

/* Header */
.edv-header {
    max-width: 800px;
    margin: 0 auto 40px;
}

.edv-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
}

.edv-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-family: 'Oswald', sans-serif;
}

/* Grid für die Boxen */
.edv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
}

/* Boxen für Dienstleistungen */
.edv-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 6px solid #1299f3;
}

/* Überschrift in Box */
.edv-box-header {
    font-size: 18px;
    font-weight: bold;
    color: #1299f3;
    margin-bottom: 5px;
}

/* Preis oder Kategorie */
.edv-price {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Beschreibungstext */
.edv-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Call-to-Action Button */
.edv-button {
    display: inline-block;
    background: #ffde59;
    color: #333;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.edv-button:hover {
    background: #f1c40f;
}

@media (max-width: 768px) {
    .edv-section {
        padding: 40px 30px;
    }

    .edv-header {
        margin-bottom: 30px;
        max-width: 90%;
    }

    .edv-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .edv-intro {
        font-size: 14px;
        line-height: 1.5;
    }

    .edv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
    }

    .edv-box {
        padding: 15px;
        border-radius: 8px;
        text-align: center;
    }

    .edv-box-header {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .edv-price {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .edv-description {
        font-size: 13px; 
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .edv-button {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .edv-section {
        padding: 30px 30px;
    }

    .edv-header {
        margin-bottom: 20px;
        max-width: 100%;
    }

    .edv-title {
        font-size: 18px;
    }

    .edv-intro {
        font-size: 13px;
        line-height: 1.4;
    }

    .edv-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .edv-box {
        padding: 12px;
        border-radius: 6px;
    }

    .edv-box-header {
        font-size: 15px;
    }

    .edv-price {
        font-size: 13px;
    }

    .edv-description {
        font-size: 12px;
        line-height: 1.3;
    }

    .edv-button {
        font-size: 12px;
        padding: 6px 10px;
    }
}

.courses-section {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 3px solid #1299f3;
}

/* Überschrift & Einleitungstext */
.courses-header {
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.courses-title {
    font-size: 28px;
    font-weight: bold;
    color: #1299f3;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Oswald', sans-serif;
}

.courses-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-family: 'Oswald', sans-serif;
}

/* Inhalt mit Box */
.courses-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    gap: 40px;
}

/* Textblock links */
.courses-text {
    flex: 1;
    text-align: left;
}

/* Liste */
.courses-list {
    list-style: none;
    padding: 0;
}

.courses-list li {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.courses-list li::before {
    content: "✔";
    color: #ffde59;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    top: -7px;
}

.courses-list li div {
    display: flex;
    flex-direction: column; 
}


.courses-list li strong {
    display: block;
    font-weight: bold;
    color: #222;
    margin-bottom: 4px;
}


.courses-list li span {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* Button */
.courses-button {
    display: inline-block;
    padding: 14px 24px;
    background-color: #1299f3;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 25px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease;
}

.courses-button:hover {
    background-color: #0077c0;
}

/* Bildbereich */
.courses-image {
    flex: 1;
    text-align: right;
}

.courses-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .courses-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px;
    }

    .courses-text {
        text-align: left;
        width: 100%;
    }

    .courses-list {
        text-align: left;
        padding-left: 0;
        list-style: none;
    }

    .courses-list li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }

    .courses-list li::before {
        top: 2px;
    }

    .courses-list li div {
        text-align: left;
    }

    .courses-list li strong {
        font-size: 15px; 
    }

    .courses-list li span {
        font-size: 14px;
    }

    .courses-button {
        margin-top: 15px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .courses-image {
        text-align: center;
    }

    .courses-image img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
}

@media (max-width: 600px) {
    .courses-header {
        padding: 0 15px;
    }

    .courses-title {
        font-size: 18px;
    }

    .courses-description {
        font-size: 13px;
    }

    .courses-content {
        padding: 20px;
        gap: 20px;
    }

    .courses-list li {
        font-size: 13px;
        gap: 6px;
    }

    .courses-list li::before {
        font-size: 16px;
        top: -4px;
    }

    .courses-list li strong {
        font-size: 14px;
    }

    .courses-list li span {
        font-size: 13px;
    }

    .courses-button {
        font-size: 14px;
        padding: 10px 16px;
    }

    .courses-image img {
        max-width: 100%;
        border-radius: 6px;
    }
}

.domain-services {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.service-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    align-items: stretch;
}

/* Karten für die Dienstleistungen */
.service-card {
    background: #ffffff;
    text-align: left;
    flex: 1 1 250px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: stretch; 
}

/* Haupttitel */
.service-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    border-bottom: 3px solid #1299f3;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

/* Untertitel */
.service-subtitle {
    font-size: 14px;
    font-weight: bold;
    color: #666;
}

/* Beschreibungstext */
.service-description {
    font-size: 14px;
    color: #666;
    flex-grow: 1; 
    margin-bottom: 20px;
}

/* Container für die farbigen Boxen */
.service-box {
    padding: 15px;
    border-radius: 6px;
    color: #ffffff;
    text-align: center;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
    min-height: 120px; 
}

/* Titel in den Boxen */
.service-box h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
    line-height: 1.2;
}

/* Text in den Boxen */
.service-box p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Farbvarianten */
.color-blue {
    background-color: #1299f3;
}

.color-green {
    background-color: #ffde59;
}

/* Icons als Bilder */
.service-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    display: block;
}

@media (max-width: 768px) {
    .domain-services {
        padding: 40px 15px;
    }

    .service-container {
        gap: 20px;
    }

    .service-card {
        max-width: 100%; 
        padding: 15px;
    }

    .service-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
        padding-bottom: 4px;
    }

    .service-subtitle {
        font-size: 13px; 
        margin-bottom: 8px;
    }

    .service-description {
        font-size: 13px; 
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .service-box {
        padding: 12px;
        min-height: auto;
        margin-top: 15px;
    }

    .service-box h4 {
        font-size: 14px; 
        margin: 5px 0;
    }

    .service-box p {
        font-size: 13px; 
    }

    .service-icon {
        width: 28px; 
        height: 28px;
        margin-bottom: 5px;
    }
}

.additional-services {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.additional-services-header {
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.additional-services-header h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Oswald', sans-serif;
}

.additional-services-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-family: 'Oswald', sans-serif;
}

/* Container für die 4 Boxen */
.additional-services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

/* Einzelne Service-Box */
.additional-service-box {
    text-align: left;
    flex: 1 1 250px;
    max-width: 280px;
    padding: 15px;
}

/* Titel in den Boxen */
.additional-service-box h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #1299f3;
    padding-bottom: 5px;
}

/* Beschreibungstext */
.additional-service-box p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .additional-services {
        padding: 40px 15px;
        text-align: center;
    }

    .additional-services-header h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .additional-services-header p {
        font-size: 14px;
        line-height: 1.4;
    }

    .additional-services-container {
        flex-direction: column;
        align-items: center;
        gap: 12px; 
    }

    .additional-service-box {
        max-width: 90%;
        padding: 12px;
        background-color: transparent; 
        border: none; 
        text-align: center; 
    }

    .additional-service-box h3 {
        font-size: 16px;
        margin-bottom: 6px;
        padding-bottom: 4px;
        border-bottom: 2px solid #1299f3;
        text-align: center;
    }

    .additional-service-box p {
        font-size: 13px;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .additional-services {
        padding: 30px 10px;
    }

    .additional-services-header h2 {
        font-size: 20px;
    }

    .additional-services-header p {
        font-size: 13px;
    }

    .additional-service-box {
        max-width: 95%;
        padding: 10px;
        text-align: center; 
    }

    .additional-service-box h3 {
        font-size: 15px;
        padding-bottom: 3px;
        text-align: center;
    }

    .additional-service-box p {
        font-size: 12px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .additional-service-box {
        max-width: 100%;
        padding: 8px;
        text-align: center;
        flex: 1 1 50px;
    }

    .additional-services-header h2 {
        font-size: 18px;
    }

    .additional-services-header p {
        font-size: 12px;
    }

    .additional-service-box h3 {
        font-size: 14px;
    }

    .additional-service-box p {
        font-size: 12px;
    }
}

.impressum-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #1299f3;
    border-bottom: 2px solid #1299f3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 20px auto;
    border-radius: 8px;
}

.impressum-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 50px;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.impressum-content h3 {
    margin-top: 20px;
    font-size: 18px;
    color: #1299f3;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.impressum-content a {
    color: #1299f3;
    text-decoration: none;
}

.impressum-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .impressum-section {
        padding: 20px 15px;
        box-shadow: none;
        max-width: 90%;
        border-radius: 5px;
        margin: 20px auto;
    }

    .impressum-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .impressum-content {
        font-size: 12px;
        line-height: 1.5;
        padding: 0;
        max-width: 100%;
    }

    .impressum-content h3 {
        font-size: 16px; 
        margin-top: 15px;
        padding-bottom: 4px;
    }

    .impressum-content p {
        margin-bottom: 10px;
    }

    .impressum-content a {
        word-break: break-word; 
    }
}

@media (max-width: 480px) {
    .impressum-section {
        padding: 15px 10px;
        max-width: 85%; 
        border-radius: 0;
    }

    .impressum-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .impressum-content {
        font-size: 11px;
        line-height: 1.4;
        padding: 0;
    }

    .impressum-content h3 {
        font-size: 14px;
        margin-top: 12px;
    }

    .impressum-content p {
        margin-bottom: 8px;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 200px;
}

.hero-image {
    width: 100%;         
    height: auto;       
    object-fit: cover;   
    max-height: 200px;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 20px 40px;
}

.hero-title {
    color: #ffffff;  
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    text-align: center;
    letter-spacing: -0.5px;
    font-family: 'Oswald', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 24px; 
    }
}

.widerruf-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #1299f3;
    border-bottom: 2px solid #1299f3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 20px auto;
    border-radius: 8px;
}

.widerruf-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.widerruf-content h3 {
    margin-top: 20px;
    font-size: 18px;
    color: #1299f3;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.widerruf-content a {
    color: #1299f3;
    text-decoration: none;
}

.widerruf-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .widerruf-section {
        padding: 20px 10px;
    }

    .widerruf-content {
        font-size: 13px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .widerruf-content h3 {
        font-size: 16px;
        margin-top: 15px;
        padding-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .widerruf-section {
        max-width: 85%;
        padding: 15px;
        border-radius: 5px;
    }

    .widerruf-content {
        font-size: 12px;
        line-height: 1.5;
        padding: 0;
    }

    .widerruf-content h3 {
        font-size: 14px;
        margin-top: 10px;
        padding-bottom: 3px;
    }
}

.agb-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #1299f3;
    border-bottom: 2px solid #1299f3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 20px auto;
    border-radius: 8px; 
}

.agb-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.agb-content h3 {
    margin-top: 20px;
    font-size: 18px;
    color: #1299f3; 
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.agb-content p {
    margin-bottom: 15px;
}

.agb-content a {
    color: #1299f3;
    text-decoration: none;
}

.agb-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .agb-section {
        padding: 20px 10px;
    }

    .agb-content {
        font-size: 13px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .agb-content h3 {
        font-size: 16px;
        margin-top: 15px;
        padding-bottom: 4px;
    }

    .agb-content p {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .agb-section {
        max-width: 85%;
        padding: 15px;
        border-radius: 5px;
    }

    .agb-content {
        font-size: 12px;
        line-height: 1.5;
        padding: 0;
    }

    .agb-content h3 {
        font-size: 14px;
        margin-top: 10px;
        padding-bottom: 3px;
    }

    .agb-content p {
        margin-bottom: 10px;
    }
}

.datenschutz-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #1299f3;
    border-bottom: 2px solid #1299f3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 20px auto;
    border-radius: 8px;
}

.datenschutz-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.datenschutz-content p {
    margin-bottom: 15px;
}

.datenschutz-content h3 {
    font-size: 18px;
    color: #1299f3;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

@media (max-width: 768px) {
    .datenschutz-section {
        padding: 30px 15px;
        max-width: 95%;
        border-radius: 6px;
    }

    .datenschutz-content {
        font-size: 13px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .datenschutz-content h3 {
        font-size: 16px;
    }

    .datenschutz-content p {
        overflow-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .datenschutz-section {
        max-width: 85%;
        padding: 20px 10px;
        border-radius: 4px;
    }

    .datenschutz-content {
        font-size: 12px;
        line-height: 1.4;
        padding: 0;
    }

    .datenschutz-content h3 {
        font-size: 14px;
    }

    .datenschutz-content p {
        overflow-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
    }
}

.design-intro, .design-benefits, .design-portfolio, .design-testimonials, .design-cta {
    padding: 40px;
    margin: 20px auto;
    max-width: 1200px;
}

.design-portfolio {
    background-color: white;
}

.design-intro-title, .design-benefits-title, .design-portfolio-title, .design-testimonials-title, .design-cta-title {
    text-align: center;
    color: #333;
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 40px;
    font-family: 'Oswald', sans-serif;
}

.design-intro-image, .design-portfolio-item {
    width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}

.design-benefits-intro {
    text-align: center;
    font-size: 16px;
    color: #555;
    max-width: 600px; 
    margin: 0 auto 30px auto;  
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.design-benefits-cards {
    display: flex;
    justify-content: center; 
    gap: 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
    flex-wrap: wrap; 
    align-items: stretch;
}

.design-card {
    flex: 1 1 30%;
    max-width: 35%; 
    min-height: 300px; 
    box-sizing: border-box;
    padding: 20px; 
    background-color: #f9f9f9;
    border: 1px solid #ddd; 
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
    border-top: 2px solid #1299f3;
    border-bottom: 2px solid #ffde59;
}

.design-card-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.design-card p {
    font-size: 14px;
    
}

.design-card h3 {
    font-size: 16px;
}

@media (max-width: 768px) {
    .design-card {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

.design-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-card-title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    min-height: 40px;
}

@media (max-width: 1024px) {
    .design-benefits-title {
        font-size: 24px;
    }

    .design-benefits-intro {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .design-card-title {
        font-size: 18px;
        min-height: auto;
    }

    .design-card p {
        font-size: 13px;
        line-height: 1.4;
    }

    .design-card {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .design-benefits-title {
        font-size: 22px;
    }

    .design-benefits-intro {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 25px;
    }

    .design-card {
        max-width: 100%;
        padding: 15px;
        text-align: center;
    }

    .design-card-title {
        font-size: 16px;
    }

    .design-card p {
        font-size: 12px;
        line-height: 1.4;
    }

    .design-card-img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .design-benefits-title {
        font-size: 18px;
    }

    .design-benefits-intro {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .design-benefits-cards {
        flex-direction: column;
        gap: 15px;
    }

    .design-card {
        padding: 12px;
        border-width: 1px;
        max-width: 100%;
        border-top-width: 2px;
        border-bottom-width: 2px;
    }

    .design-card-title {
        font-size: 14px;
        margin: 8px 0;
    }

    .design-card p {
        font-size: 12px;
        line-height: 1.3;
    }

    .design-card-img {
        width: 24px;
        height: 24px;
        margin-bottom: 10px;
    }
}

.design-portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.design-portfolio-item {
    border: 2px solid #666;               
    padding: 2px;                         
    background-color: #fff;               
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
    border-radius: 5px;                   
    transition: transform 0.3s ease, 
                border-color 0.3s ease;   
    width: 100%;                          
    height: auto;                         
    object-fit: cover;                    
}

.design-portfolio-item:hover {
    transform: scale(1.03);             
    border-color: #1299f3;                   
}

.design-testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.design-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #1299f3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.design-cta-button:hover {
    background-color: #007acc;
}

@media (max-width: 1024px) {
    .design-portfolio-title {
        font-size: 22px; 
        margin-bottom: 20px;
    }

    .design-portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px; 
    }

    .design-portfolio-item {
        border-width: 1px;
    }
}

@media (max-width: 768px) {
    .design-portfolio-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .design-portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .design-portfolio-item {
        border-width: 1px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 480px) {
    .design-portfolio-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .design-portfolio-gallery {
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }

    .design-portfolio-item {
        padding: 1px;
        border-width: 1px;
    }
}

/* Preiskalkulation Section */
.design-pricing {
    background-color: #f9f9f9; 
}

.design-pricing-fullwidth {
    background-color: #f9f9f9;
    padding: 50px 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.design-pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    justify-items: center;
}

.design-pricing-title {
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-align: center;
    color: #333;
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 40px;
    font-family: 'Oswald', sans-serif;
}

.design-pricing-content p {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin: 0 auto 15px;
    max-width: 800px;
    text-align: center;
}

.design-pricing-cta {
    display: block; 
    margin: 25px auto;
    padding: 15px 30px;
    background-color: #1299f3;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    max-width: 250px;
    text-align: center;
    font-size: 14px; 
}

.design-pricing-cta:hover {
    background-color: #007acc;
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .design-pricing-title {
        font-size: 22px;  
    }

    .design-pricing-content p {
        font-size: 13px; 
        padding: 0 15px;
        line-height: 1.6; 
    }

    .design-pricing-cta {
        padding: 12px 25px;
        font-size: 13px; 
    }
}

@media (max-width: 480px) {
    .design-pricing-title {
        font-size: 18px; 
        margin-bottom: 20px;
    }

    .design-pricing-content p {
        font-size: 13px; 
        padding: 0 10px; 
        line-height: 1.6; 
    }

    .design-pricing-cta {
        padding: 10px 20px; 
        font-size: 13px; 
        max-width: 220px;
    }
}

.customer-login-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 40px;
    background-color: white;
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;  
    transform: translateX(20px);
}

.customer-login-box {
    background-color: #1299f3;
    padding: 30px;
    border-radius: 5px;
    color: white;
    width: 350px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
}

.customer-login-box h2 {
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 1px dashed #fff;
    padding-bottom: 10px;
}

.customer-login-box h2 span {
    color: #ffde59;
}

.input-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 4px;
    padding: 8px 10px;
    margin: 10px 0;
}

.input-container i {
    color: #666;
    margin-right: 8px;
}

.input-container input {
    border: none;
    outline: none;
    width: 100%;
    padding: 5px;
    font-size: 14px;
}

.login-button {
    background-color: #ffde59;
    color: black;
    border: none;
    padding: 10px 20px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
}

.login-button:hover {
    background-color: #e6c84f;
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}

.customer-login-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 500px;
    justify-content: space-between;
}

.customer-login-box, .customer-login-info {
    box-sizing: border-box;
}

.info-box {
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    border-top: 5px solid #1299f3;
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 14px;
    margin-bottom: 10px;
}

.info-box a {
    color: #1299f3;
    text-decoration: none;
    font-weight: bold;
}

.info-box i {
    color: #0099db;
    margin-left: 5px;
}

.password-login-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 40px;
    background-color: white;
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

.password-login-box {
    background-color: #1299f3;
    padding: 30px;
    border-radius: 5px;
    color: white;
    width: 350px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.password-login-box h2 {
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 1px dashed #fff;
    padding-bottom: 10px;
}

.password-login-box h2 span {
    color: #ffde59;
}

.password-input-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 4px;
    padding: 8px 10px;
    margin: 10px 0;
}

.password-input-container i {
    color: #666;
    margin-right: 8px;
}

.password-input-container input {
    border: none;
    outline: none;
    width: 100%;
    padding: 5px;
    font-size: 14px;
}

.password-login-button {
    background-color: #ffde59;
    color: black;
    border: none;
    padding: 10px 20px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
}

.password-login-button:hover {
    background-color: #e6c84f;
}

.password-login-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 500px;
}

.password-info-box {
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #1299f3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.password-info-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.password-info-box p {
    font-size: 14px;
    margin-bottom: 10px;
}

.password-info-box a {
    color: #1299f3;
    text-decoration: none;
    font-weight: bold;
}

.password-social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.password-social-icon {
    width: 32px;
    height: 32px;
}

@media screen and (max-width: 768px) {
    .customer-login-section {
        flex-direction: column;  
        align-items: center;     
        width: 100%;              
        max-width: 100%;          
        padding: 20px;           
        box-sizing: border-box;
        transform: none;         
    }

    .customer-login-box {
        width: 90%;      
        max-width: 400px;
        padding: 20px;
    }

    .customer-login-box h2 {
        font-size: 20px;
        text-align: center;
    }

    .customer-login-box label {
        font-size: 14px;
    }

    .input-container {
        padding: 6px 8px;        
    }

    .input-container input {
        font-size: 14px;
        padding: 8px;
    }

    .login-button {
        font-size: 14px;
        padding: 12px;
    }

    .forgot-password {
        font-size: 12px;
        margin-top: 8px;
    }

    .customer-login-info {
        width: 90%;              
        max-width: 400px;
        margin-top: 20px;
        gap: 15px;
    }

    .info-box {
        padding: 15px;
        font-size: 14px;
        border-top-width: 3px;
    }

    .info-box h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .info-box p {
        font-size: 13px;
        line-height: 1.5;
    }

    .info-box a {
        font-size: 13px;
    }

    .social-icons img {
        width: 28px;
        height: 28px;
    }
}

@media screen and (max-width: 480px) {
    .customer-login-section {
        padding: 15px;
    }

    .customer-login-box {
        width: 95%;
        padding: 15px;
    }

    .customer-login-box h2 {
        font-size: 18px;
    }

    .customer-login-box label {
        font-size: 13px;
    }

    .input-container input {
        font-size: 13px;
    }

    .login-button {
        font-size: 13px;
        padding: 10px;
    }

    .forgot-password {
        font-size: 11px;
    }

    .customer-login-info {
        width: 95%;
        gap: 10px;
    }

    .info-box h3 {
        font-size: 15px;
    }

    .info-box p {
        font-size: 12px;
    }

    .social-icons img {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 768px) {
    .password-login-section {
        flex-direction: column;
        align-items: center;    
        width: 100%;            
        max-width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .password-login-box {
        width: 90%;               
        max-width: 400px;        
        padding: 20px;
    }

    .password-login-box h2 {
        font-size: 20px;         
        text-align: center;
    }

    .password-login-box label {
        font-size: 14px;
    }

    .password-input-container {
        padding: 6px 8px;
    }

    .password-input-container input {
        font-size: 14px;
        padding: 8px;
    }

    .password-login-button {
        font-size: 14px;
        padding: 12px;
    }

    .forgot-password {
        font-size: 12px;
        margin-top: 8px;
        display: block;
        text-align: center;
    }

    .password-login-info {
        width: 90%;              
        max-width: 400px;
        margin-top: 20px;
        gap: 15px;
    }

    .password-info-box {
        padding: 15px;
        font-size: 14px;
        border-top-width: 3px;   
    }

    .password-info-box h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .password-info-box p {
        font-size: 13px;
        line-height: 1.5;
    }

    .password-info-box a {
        font-size: 13px;
    }

    .password-social-icons img {
        width: 28px;
        height: 28px;
    }
}

@media screen and (max-width: 480px) {
    .password-login-section {
        padding: 15px;
    }

    .password-login-box {
        width: 87%;
        padding: 15px;
    }

    .password-login-box h2 {
        font-size: 18px;
    }

    .password-login-box label {
        font-size: 13px;
    }

    .password-input-container input {
        font-size: 13px;
    }

    .password-login-button {
        font-size: 13px;
        padding: 10px;
    }

    .forgot-password {
        font-size: 11px;
    }

    .password-login-info {
        width: 95%;
        gap: 10px;
    }

    .password-info-box h3 {
        font-size: 15px;
    }

    .password-info-box p {
        font-size: 12px;
    }

    .password-social-icons img {
        width: 24px;
        height: 24px;
    }
}

.register-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    background-color: white;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.register-box {
    background-color: #1299f3;
    padding: 20px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 2;
}

.register-title {
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    text-align: center;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.register-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.register-field {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.register-field label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
}

.register-field input,
.register-field select {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.register-submit-button {
    background-color: #ffde59;
    color: black;
    border: none;
    padding: 12px;
    margin-top: 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
    font-size: 16px;
}

.register-submit-button:hover {
    background-color: #e6c84f;
}

/* Info-Box Styles */
.register-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.register-info-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #1299f3;
    color: #333;
}

.register-info-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1299f3;
}

.register-info-box p {
    font-size: 14px;
    margin-bottom: 10px;
}

.register-info-box a {
    color: #1299f3;
    text-decoration: none;
    font-weight: bold;
}

.register-social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.register-social-icon {
    width: 32px;
    height: 32px;
}

/* Responsive Anpassung */
@media (max-width: 800px) {
    .register-section {
        flex-direction: column;
        align-items: center;
    }

    .register-box, .register-info {
        width: 100%;
        max-width: 500px;
    }
}

@media screen and (max-width: 768px) {
    .register-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        gap: 40px;
    }

    .register-box, 
    .register-info {
        width: 90%; 
        max-width: 450px; 
        margin: 0 auto; 
    }

    .register-box {
        padding: 25px;
        box-sizing: border-box;
    }

    .register-title {
        font-size: 20px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .register-field label {
        font-size: 13px;
    }

    .register-field input,
    .register-field select {
        padding: 8px;
        font-size: 13px;
    }

    .register-submit-button {
        padding: 10px;
        font-size: 14px;
    }

    .register-info-box {
        padding: 15px;
    }

    .register-info-box h3 {
        font-size: 16px;
    }

    .register-info-box p {
        font-size: 13px;
    }

    .register-social-icon {
        width: 28px;
        height: 28px;
    }
}

@media screen and (max-width: 480px) {
    .register-section {
        padding: 15px;
        gap: 40px;
    }

    .register-box, 
    .register-info {
        width: 95%; 
        max-width: 380px;
        margin: 0 auto;
    }

    .register-box {
        padding: 20px;
    }

    .register-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .register-field label {
        font-size: 12px;
    }

    .register-field input,
    .register-field select {
        padding: 7px;
        font-size: 12px;
    }

    .register-submit-button {
        padding: 8px;
        font-size: 13px;
    }

    .register-info-box {
        padding: 12px;
    }

    .register-info-box h3 {
        font-size: 14px;
    }

    .register-info-box p {
        font-size: 12px;
    }

    .register-social-icon {
        width: 24px;
        height: 24px;
    }
}

.weblist-section-container {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
  }

  .weblist-section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Oswald', sans-serif;
  }

  .weblist-section-description {
    font-size: 16px;
    color: #666;
    line-height: 1;
    margin-bottom: 10px;
  }

  .weblist-box-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .weblist-box {
    background-color: #f9f9f9;
    padding: 20px;
    max-width: 300px;
    text-align: left;
  }

  .weblist-box-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
    position: relative;
    padding-bottom: 8px;
  }

  .weblist-box-title::after {
    content: "";
    display: block;
    width: 300px;
    height: 3px;
    background-color: #1299f3;
    margin-top: 5px;
  }

  .weblist-box-description {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .weblist-box-container {
      flex-direction: column;
      align-items: center;
    }
  }

  @media (max-width: 1024px) {
    .weblist-section-title {
        font-size: 18px;
    }

    .weblist-section-description {
        font-size: 13px;
    }

    .weblist-section-description p {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .weblist-box-title {
        font-size: 18px;
    }

    .weblist-box-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .weblist-section-title {
        font-size: 18px;
    }

    .weblist-section-description {
        font-size: 13px;
    }

    .weblist-section-description p {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .weblist-box-title {
        font-size: 18px;
    }

    .weblist-box-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .weblist-section-title {
        font-size: 18px;
    }

    .weblist-section-description {
        font-size: 13px;
    }

    .weblist-section-description p {
        font-size: 13px;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .weblist-box-title {
        font-size: 14px;
    }

    .weblist-box-description {
        font-size: 13px;
    }
}

  .weblist-widget-section {
    background-color: #ffffff;
    padding: 30px;
    padding-top: 0;
    padding-bottom: 0;
    max-width: 800px;   
    width: 100%;
    text-align: center;
    margin: 0 auto;      
    display: flex;     
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
  }

  .h1.ubsc_status-check-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Oswald', sans-serif;
  }

  @media (max-width: 1024px) {
    .weblist-widget-section {
        max-width: 90%;
        padding: 20px;
        margin: 0 auto;
        overflow: hidden;
    }

    .h1.ubsc_status-check-title {
        font-size: 18px;
    }

    .ub_status_check_widget {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .weblist-widget-section {
        max-width: 90%;
        padding: 15px;
        margin: 0 auto;
        overflow: hidden;
    }

    .h1.ubsc_status-check-title {
        font-size: 18px;
    }

    .ub_status_check_widget {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .weblist-widget-section {
        max-width: 90%;
        padding: 10px;
        margin: 0 auto;
        overflow: hidden;
    }

    .h1.ubsc_status-check-title {
        font-size: 18px;
    }

    .ub_status_check_widget {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

  .weblist-pricing-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
  }

  .weblist-pricing-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 550px; 
  }

  .weblist-pricing-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .weblist-pricing-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
  }

  .weblist-pricing-contract-term {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
  }

  .weblist-pricing-price {
    display: flex;
    align-items: flex-end; 
    justify-content: center; 
    font-weight: bold;
    margin-bottom: 15px;
    gap: 4px;
  }
  
  .weblist-pricing-amount {
    font-size: 40px; 
    color: #333;
  }
  
  .weblist-pricing-period {
    font-size: 14px;
    color: #1299f3;
    position: relative; 
    bottom: 5px; 
  }

  .weblist-pricing-features {
    text-align: left;
    margin: 0;
    padding-left: 0;
    flex-grow: 1; 
  }

  .weblist-pricing-features li {
    margin-bottom: 8px;
    list-style: none;
    padding-left: 20px;
    position: relative;
  }

  .weblist-pricing-features li::before {
    content: '✔';
    color: #007BFF;
    position: absolute;
    left: 0;
  }

  .weblist-pricing-button {
    background-color: #1299f3;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
  }

  .weblist-pricing-button:hover {
    background-color: #0099cc;
  }

  @media (max-width: 1024px) {
    .weblist-pricing-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px;
        max-width: 100%;
        overflow: hidden;
    }

    .weblist-pricing-card {
        width: 90%;
        max-width: 400px;
        padding: 15px;
        text-align: center;
        margin: 0 auto;
    }

    .weblist-pricing-title {
        font-size: 18px;
    }

    .weblist-pricing-contract-term,
    .weblist-pricing-features li,
    .weblist-pricing-period {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .weblist-pricing-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px;
        max-width: 100%;
        overflow: hidden;
    }

    .weblist-pricing-card {
        width: 80%;
        max-width: 400px;
        padding: 12px;
        text-align: center;
        margin: 0 auto;
    }

    .weblist-pricing-title {
        font-size: 18px;
    }

    .weblist-pricing-contract-term,
    .weblist-pricing-features li,
    .weblist-pricing-period {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .weblist-pricing-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 10px;
        max-width: 100%;
        overflow: hidden;
    }

    .weblist-pricing-card {
        width: 80%;
        max-width: 400px;
        padding: 10px;
        text-align: center;
        margin: 0 auto;
    }

    .weblist-pricing-title {
        font-size: 18px;
    }

    .weblist-pricing-contract-term,
    .weblist-pricing-features li,
    .weblist-pricing-period {
        font-size: 13px;
    }
}


  .weblist-info-link-container {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 20px;
  }
  
  .weblist-info-link {
    text-decoration: none;
    font-size: 14px;
    color: #666;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .weblist-info-link:hover {
    color: #333;
  }

  @media (max-width: 1024px) {
    .weblist-info-link-container {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .weblist-info-link-container {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .weblist-info-link-container {
        width: 100%;
        text-align: center;
    }
}


/* Footer Styling */
.footer {
    background-color: #1299f3;
    color: #fff;
    padding: 40px 0;
    font-size: 14px;
    padding-bottom: 0;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
}

/* Footer Spalten */
.footer-column {
    width: 20%;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffde59;
}

/* Newsletter Styling */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 8px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    outline: none;
}

.newsletter-form button {
    background-color: #ffde59;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #ffcc00;
}

/* Footer Bottom Bereich */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer Logo */
.footer-logo img {
    height: 250px;
    width: auto;
}

/* Kontaktbereich */
.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.footer-contact span {
    font-size: 14px;
    color: #ccc;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #25D366;
}

/* WhatsApp-Icon Styling */
.whatsapp-icon {
    width: 32px; 
    height: 32px;
    transition: opacity 0.3s ease;
}

.whatsapp-icon:hover {
    opacity: 0.7;
}

/* Telefonnummer */
.contact-text {
    display: flex;
    flex-direction: column;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 24px;
    transition: opacity 0.3s ease;
}

.footer-social img:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px), (max-width: 480px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }

    .footer-column {
        width: 100%; 
    }

    .footer-column h3 {
        font-size: 14px; 
    }

    .footer-column ul li a {
        font-size: 13px; 
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 90%;
        margin: 0 auto;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column; 
        text-align: center;
        gap: 15px;
        max-width: 90%;
        margin: 20px auto 0 auto;
        padding-top: 15px;
    }
    
    .footer-logo img {
        display: none;
    }

    .footer-logo {
        width: 100%;
        height: auto;
        background-image: url('media/images/HostingTime_Logosmall.png'); 
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        height: 80px; 
    }
    
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        padding-bottom: 10px;
    }

    .footer-contact p {
        font-size: 14px;
    }

    .footer-contact span {
        font-size: 12px;
    }

    .footer-social img {
        width: 20px;
    }
}

.footer-tax-note {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: white;
    margin-top: 0px;
    padding-bottom: 40px;
    font-family: Arial, sans-serif;
    background-color: #1299f3;
}

@media (max-width: 768px) {
    .footer-tax-note {
        font-size: 12px;
        padding: 10px 5px;
    }
}

.domain-hint-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.domain-hint {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #666;
    font-size: 14px;
    margin-top: 20px;
    font-family: Oswald, sans-serif;
    gap: 8px;
    text-align: left;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 10px;
}

.info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Anpassung für kleine Bildschirme */
@media (max-width: 768px) {
    .domain-hint {
        font-size: 10px;
        gap: 6px;
        align-items: center;
        text-align: center;
    }

    .info-icon {
        width: 16px;
        height: 16px;
    }
}

.kontakt-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.kontakt-box, .kontakt-form-box {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 500px;
}

.kontakt-box {
    background-color: #1299f3;
    color: white;
}

.kontakt-box h2 {
    margin-bottom: 20px;
}

.kontakt-info {
    display: flex;               
    align-items: flex-start;    
    margin-bottom: 15px;
    gap: 10px;                   
}

.kontakt-info img {
    width: 20px;
    height: 20px;
    margin-right: 2px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.kontakt-info div {
    line-height: 1.4;
}


.kontakt-info strong {
    font-size: 16px;
}


.kontakt-form-group {
    margin-bottom: 15px;
}

.kontakt-form-group input, .kontakt-form-group textarea {
    width: 96%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.kontakt-form-group textarea {
    resize: vertical;
    height: 100px;
}

.kontakt-submit-button {
    background-color: #1299f3;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.kontakt-submit-button:hover {
    background-color: #0a7dc0;
}

  @media (max-width: 768px) {
    .kontakt-section {
      flex-direction: column;
    }

    .kontakt-box, .kontakt-form-box {
      width: 100%;
    }
  }

  .captcha-image {
    display: block;
    margin: 10px auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 200px;
}

.captcha-refresh {
    margin-top: 5px;
    background-color: #1299f3;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.captcha-refresh:hover {
    background-color: #1299f3;
}

#captcha-img {
    display: block;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 20px;
}

button {
    margin-top: 5px;
    margin-bottom: 5px;
}

#captcha-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.refresh-link {
    text-decoration: none;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.refresh-link:hover {
    color: #0b7bc1;
}

.captcha-field input[type="text"] {
    width: 20%;
    padding: 8px;
    box-sizing: border-box;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #1299f3;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
}

.modal-content h2, .modal-content p {
    color: white;
}
.btn-primary {
    padding: 10px 20px;
    background-color: #1299f3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
}

.modal-content button {
    padding: 10px 20px;
    background-color: #1299f3;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    border: 1px solid white;
}

.btn-primary:hover {
    background-color: #1299f3;
}

@media (max-width: 768px) {
    .kontakt-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .kontakt-box,
    .kontakt-form-box {
        width: 90%; 
        max-width: 500px;
        box-sizing: border-box;
        padding: 20px;
    }

    .kontakt-box {
        margin-bottom: 20px; 
        text-align: center;
    }

    .kontakt-box h2 {
        font-size: 22px;
    }

    .kontakt-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .kontakt-info img {
        margin-bottom: 5px;
        width: 30px;
        height: 30px;
    }

    .kontakt-form-group input,
    .kontakt-form-group textarea {
        width: 100%;
        font-size: 14px; 
        padding: 8px;
    }

    .kontakt-submit-button {
        width: 100%; 
        padding: 10px;
        font-size: 14px;
    }

    /* Modal zentriert und kleiner */
    .modal-content {
        width: 90%;
        max-width: 350px;
        padding: 15px;
    }

    .modal-content h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .modal-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .modal-content button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .kontakt-box,
    .kontakt-form-box {
        width: 95%;
        padding: 15px;
    }

    .kontakt-box h2 {
        font-size: 20px;
    }

    .kontakt-info img {
        width: 25px;
        height: 25px;
    }

    .kontakt-info strong {
        font-size: 14px;
    }

    .kontakt-form-group input,
    .kontakt-form-group textarea {
        font-size: 13px;
        padding: 7px;
    }

    .kontakt-submit-button {
        font-size: 13px;
        padding: 8px;
    }

    .modal-content {
        width: 95%;
        padding: 12px;
    }

    .modal-content h2 {
        font-size: 16px;
    }

    .modal-content p {
        font-size: 13px;
    }

    .modal-content button {
        font-size: 13px;
        padding: 8px 15px;
    }
}

.kontakt-bild-container {
    width: calc(100% - 8px);
    margin: 0 auto 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kontakt-bild-container img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Media Query für kleinere Displays */
@media (max-width: 768px) {
    .kontakt-bild-container {
        width: calc(100% - 20px);
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .kontakt-bild-container {
        width: calc(100% - 10px);
        margin-bottom: 10px;
    }
}


.hosting-plans-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
  }

.hosting-plan {
background: white;
border: 1px solid #ddd;
border-radius: 8px;
width: 22%;
text-align: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
padding: 15px;
}

.hosting-title {
font-size: 18px;
font-weight: bold;
margin: 10px 0;
}

.hosting-price {
background: #f4f4f4;
padding: 15px 0;
font-size: 24px;
color: #1299f3;
font-weight: bold;
}

.hosting-currency {
font-size: 16px;
vertical-align: top;
}

.hosting-amount {
font-size: 36px;
font-weight: bold;
}

.hosting-period {
font-size: 14px;
color: #555;
display: block;
}

.hosting-features {
list-style: none;
padding: 0;
margin: 15px 0;
text-align: left;
}

.hosting-features li {
display: flex;
align-items: center;
gap: 8px;
padding: 5px 0;
border-bottom: 1px solid #eee;
}

.hosting-icon {
width: 16px;
height: 16px;
flex-shrink: 0;
}

.hosting-select-button {
background: #ffde59;
color: #000;
border: none;
padding: 10px;
margin-top: auto;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
transition: background 0.3s;
}

.hosting-select-button:hover {
background: #ffb300;
}

@media (max-width: 1024px) {
    .hosting-plans-section {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 30px 10px;
    }

    .hosting-plan {
        width: 45%;
        max-width: 400px;
        padding: 12px;
    }

    .hosting-title {
        font-size: 16px;
    }

    .hosting-price {
        font-size: 20px;
        padding: 10px 0;
    }

    .hosting-amount {
        font-size: 28px;
    }

    .hosting-currency {
        font-size: 14px;
    }

    .hosting-period {
        font-size: 12px;
    }

    .hosting-features li {
        font-size: 13px;
        padding: 4px 0;
    }

    .hosting-select-button {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hosting-plans-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 10px;
    }

    .hosting-plan {
        width: 80%;
        max-width: 360px;
        padding: 10px;
    }

    .hosting-title {
        font-size: 16px;
    }

    .hosting-price {
        font-size: 18px;
        padding: 8px 0;
    }

    .hosting-amount {
        font-size: 26px;
    }

    .hosting-currency {
        font-size: 14px;
    }

    .hosting-period {
        font-size: 12px;
    }

    .hosting-features li {
        font-size: 12px;
        padding: 3px 0;
    }

    .hosting-icon {
        width: 14px;
        height: 14px;
    }

    .hosting-select-button {
        padding: 8px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hosting-plan {
        width: 80%;
        padding: 8px;
    }

    .hosting-title {
        font-size: 14px;
    }

    .hosting-price {
        font-size: 16px;
        padding: 6px 0;
    }

    .hosting-amount {
        font-size: 24px;
    }

    .hosting-currency {
        font-size: 12px;
    }

    .hosting-period {
        font-size: 11px;
    }

    .hosting-features li {
        font-size: 11px;
        padding: 3px 0;
    }

    .hosting-icon {
        width: 12px;
        height: 12px;
    }

    .hosting-select-button {
        padding: 6px;
        font-size: 12px;
    }
}

/* Grundlegende Einstellungen */
.hidden {
    display: none;
}

.comparison-table thead tr {
    background-color: #1299f3;
    color: white;
    height: 60px;            
}

.comparison-table th {
    background-color: transparent;
    color: white;
    font-weight: bold;
    vertical-align: middle;   
    padding: 20px 10px;  
}

.compare-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #1299f3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Haupt-Vergleichstabelle */
.comparison-section {
    background-color: white;
    border-radius: 8px;
    max-width: 1200px;
    margin: 20px auto;
    overflow-x: auto;
    box-sizing: border-box;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    text-align: center;
    box-sizing: border-box;
}

.comparison-table th,
.comparison-table td {
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    vertical-align: middle;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

/* Spaltenbreite */
.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
    width: 17.5%;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.comparison-table td:first-child {
    width: 30%;
    background-color: #ffde59 !important;
    padding-left: 15px;
    text-align: left;
    color: #000;
    box-sizing: border-box;
}

/* Abwechselnde Zeilenfarben */
.comparison-table tr:nth-child(even) td {
    background-color: #f4f4f4;
}

.comparison-table tr:nth-child(odd) td {
    background-color: #ffffff;
}

/* Erweiterbare Bereiche */
.expand-row {
    background-color: #ffde59;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

.expand-row:hover {
    background-color: #f4c542;
}

.expand-title {
    text-align: left;
    font-weight: bold;
    padding-left: 15px;
    background-color: #ffde59 !important;
    color: black;
    box-sizing: border-box;
}

.toggle-button {
    border-left: none !important;
    text-align: right;
    font-weight: bold;
    color: #000;
    padding-right: 15px;
    background-color: #ffde59 !important;
    box-sizing: border-box;
}

.toggle-icon {
    width: 14px;
    height: 14px;
    position: relative;
    top: 2px;
}

/* Anpassung des Containers */
.expand-container {
    padding: 0 !important;
    background-color: #ffffff;
    box-sizing: border-box;
}

/* Erweiterte Tabellen */
.inner-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin: 0;
    box-sizing: border-box;
    border-spacing: 0; 
}

/* Spaltenangleichung */
.inner-table th,
.inner-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    background-color: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
    width: 17.5%; 
}

/* Erste Spalte */
.inner-table td:first-child {
    background-color: #ffde59;
    text-align: left;
    padding-left: 15px;
    color: black;
    width: 30%; 
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .comparison-section {
        max-width: 95%;
        margin: 15px auto;
    }

    .comparison-table th,
    .comparison-table td,
    .inner-table th,
    .inner-table td {
        font-size: 13px;
        padding: 8px;
    }

    .comparison-table td:first-child,
    .inner-table td:first-child {
        font-size: 12px;
        width: 25%;
        padding: 5px;
    }

    .expand-title,
    .toggle-button {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        max-width: 95%;
        margin: 15px auto;
    }

    .comparison-table th,
    .comparison-table td,
    .inner-table th,
    .inner-table td {
        font-size: 11px;
        padding: 6px;
    }

    .comparison-table td:first-child,
    .inner-table td:first-child {
        font-size: 11px;
        width: 22%; 
        padding: 4px;
    }

    .comparison-table td:first-child,
    .inner-table td:first-child {
        width: 25%; 
    }

    .expand-title,
    .toggle-button {
        font-size: 12px;
        padding: 6px;
    }

    .toggle-icon {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .comparison-section {
        max-width: 95%;
        margin: 10px auto;
    }

    .comparison-table th,
    .comparison-table td,
    .inner-table th,
    .inner-table td {
        font-size: 10px; 
        padding: 4px;
    }

    .comparison-table td:first-child,
    .inner-table td:first-child {
        font-size: 10px;
        width: 20%; 
        padding: 3px;
    }

    .comparison-table td:first-child,
    .inner-table td:first-child {
        width: 30%; 
    }

    .expand-title,
    .toggle-button {
        font-size: 11px;
        padding: 4px;
    }

    .toggle-icon {
        width: 10px;
        height: 10px;
    }
}

/* Hervorhebungen */
.best-choice {
    background-color: #ffde59;
    color: black;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

.checkmark {
    color: #4CAF50;
    font-weight: bold;
}

.red-cross {
    color: #cc0000;
    font-weight: bold;
}

.expand-title {
    border-right: none !important;
}

@media (max-width: 768px) {
    .best-choice {
        font-size: 10px;    
        padding: 3px 6px; 
        border-radius: 3px; 
    }
}

@media (max-width: 480px) {
    .best-choice {
        font-size: 9px;     
        padding: 2px 5px;   
        border-radius: 3px;
        margin-top: 10px; 
    }
}

.knowledgebase-container {
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Cookie-Banner */
.cookiebanner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 526px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.cookiebanner-visible {
    display: flex !important;
}

.cookiebanner-hidden {
    display: none !important;
}

/* Titel & Text */
.cookiebanner-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
}

.cookiebanner-text {
    font-size: 10px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 12px;
}

/* Links */
.cookiebanner-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.cookiebanner-link:hover {
    text-decoration: underline;
}

/* Buttons */
.cookiebanner-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cookiebanner-btn {
    padding: 10px 12px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
    flex: 1;
    max-width: 140px;
}

.cookiebanner-btn-primary {
    background-color: #007bff;
    color: white;
}

.cookiebanner-btn-active {
    background: #007bff !important;
    color: white !important;
}

.cookiebanner-btn-active:hover {
    background: #007bff !important;
}

.cookiebanner-btn-primary:hover {
    background-color: #0056b3;
}

.cookiebanner-btn-secondary {
    background-color: white;
    color: #333;
    border: 1px solid #ccc;
}

.cookiebanner-btn-secondary:hover {
    background-color: #e2e6ea;
}

.cookiebanner-btn-tertiary {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ccc;
}

.cookiebanner-btn-tertiary:hover {
    background-color: #f1f1f1;
}

/* Datenschutz & Impressum Links */
.cookiebanner-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 12px;
}

/* Erweiterte Cookie-Einstellungen */
.cookiebanner-settings {
    display: none;
    margin-top: 15px;
    padding: 10px;
    border-top: 1px solid #ccc;
}

/* Cookie-Optionen */
.cookiebanner-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.cookiebanner-always-active {
    color: green;
    font-weight: bold;
}

/* Toggle-Buttons */
.cookiebanner-toggle {
    background: transparent;
    border: none;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    flex-grow: 1;
}

.cookiebanner-toggle-btn {
    background: #ddd;
    border: none;
    border-radius: 15px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    color: white;
}

/* Aktivierter Zustand */
.cookiebanner-toggle-btn.active {
    background: #3fa9f5;
    color: white;
}

.cookiebanner-toggle-btn:hover {
    opacity: 0.8;
}

/* Beschreibung */
.cookiebanner-description {
    font-size: 12px;
    color: #666;
    margin-left: 20px;
    display: none;
}

@media (max-width: 1024px) {
    .cookiebanner {
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%);
        width: 90%;
        max-width: 500px;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .cookiebanner-title {
        font-size: 16px;
        text-align: center;
        margin-bottom: 8px;
    }

    .cookiebanner-text {
        font-size: 12px;
        text-align: center;
        line-height: 1.5;
    }

    .cookiebanner-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 400px;
        margin: 15px auto;
    }

    .cookiebanner-btn {
        max-width: none;
        width: 100%;
    }

    .cookiebanner-links {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        font-size: 12px;
        margin-top: 10px;
    }

    .cookiebanner-settings {
        width: 100%;
        text-align: left;
        margin-top: 15px;
    }

    .cookiebanner-option {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookiebanner-description {
        font-size: 12px;
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .cookiebanner {
        left: 50%;
        bottom: 15px;
        transform: translateX(-50%);
        width: 90%;
        max-width: 480px;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .cookiebanner-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        max-width: 380px;
        margin: 15px auto;
    }

    .cookiebanner-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookiebanner {
        left: 50%;
        bottom: 0px;
        transform: translateX(-50%);
        width: 95%;
        max-width: 400px;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .cookiebanner-title {
        font-size: 14px;
    }

    .cookiebanner-text {
        font-size: 11px;
        line-height: 1.4;
    }

    .cookiebanner-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin: 10px auto;
    }

    .cookiebanner-btn {
        width: 100%;
    }

    .cookiebanner-links {
        font-size: 11px;
    }
}

@media (max-width: 1024px) {
    .cookiebanner-option {
        padding: 5px 0;
        font-size: 13px;
    }

    .cookiebanner-toggle {
        font-size: 13px;
    }

    .cookiebanner-toggle-btn {
        width: 32px;
        height: 18px;
        font-size: 10px;
        padding: 3px 6px;
    }

    .cookiebanner-description {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .cookiebanner-option {
        padding: 5px 0;
        font-size: 12px;
    }

    .cookiebanner-toggle {
        font-size: 12px;
    }

    .cookiebanner-toggle-btn {
        width: 30px;
        height: 16px;
        font-size: 10px;
        padding: 2px 5px;
    }

    .cookiebanner-description {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .cookiebanner-option {
        padding: 4px 0;
        font-size: 13px;
    }

    .cookiebanner-toggle {
        font-size: 13px;
    }

    .cookiebanner-toggle-btn {
        width: 28px;
        height: 15px;
        font-size: 9px;
        padding: 2px 4px;
        margin-right: 15px
    }

    .cookiebanner-description {
        font-size: 13px;
    }

    .cookiebanner-always-active {
        margin-right: 10px
    }
}

/* Styling für den Scroll-Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px; 
    right: 26px; 
    width: 60px;
    height: 40px; 
    background-color: #ffde59; 
    color: white;
    border: none;
    border-radius: 5px; 
    display: none; 
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

/* Styling für das SVG innerhalb des Buttons */
.scroll-to-top svg {
    width: 20px; 
    height: 20px; 
}

/* Button erscheint */
.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Hover-Effekt */
.scroll-to-top:hover {
    background-color: #ffea70; 
}

/* Button beim Scrollen ausblenden */
.scroll-to-top.hide {
    opacity: 0;
    transform: translateY(100px);
}

/* Fade-in-Effekt beim Erscheinen */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-to-top.show {
    animation: fadeIn 0.3s ease;
}

.m365-pricing-table {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.m365-header {
    background: #1299f3;
    color: white;
    font-size: 18px;
    padding: 10px;
    text-align: center;
}

.m365-table {
    margin-top: 30px;
}

.m365-table td, .m365-table th, .m365-footer-table th,
.m365-footer-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.m365-table td {
    font-size: 14px;
}

.m365-green {
    color: #0a8f08;
    font-weight: bold;
}

.m365-section-header {
    background: #007ac2;
    color: white;
    font-weight: bold;
}

.m365-toggle {
    text-align: right;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.m365-show-more {
    display: block;
    color: #1299f3;
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
}

.m365-pricing-footer {
    max-width: 100% !important; 
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    background: transparent !important;
    display: block;
}


.m365-table,
.m365-footer-table {
    width: 100% !important;
    table-layout: fixed; 
    border-collapse: collapse;
}

.m365-footer-table {
    width: 100% !important;
    margin: 0;
    padding: 0;
    table-layout: fixed;
    border-collapse: collapse;
    background: #fff;
}

.m365-table th,
.m365-table td,
.m365-footer-table th,
.m365-footer-table td {
    width: 25%; 
    text-align: center;
}

.m365-footer-table td {
    padding: 0; 
    margin: 0;
    text-align: center;
    height: 60px; 
}

.m365-footer-table thead th {
    background: #1299f3;
    color: white;
    padding: 12px;
    font-size: 14px;
    text-align: center;
    border-bottom: 2px solid #dcdcdc;
}

.m365-footer-price {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    color: #1299f3;
}

.m365-btn-disabled {
    background: #dcdcdc;
    color: white;
    cursor: not-allowed;
    border: none;
}

.m365-footer-table tbody td {
    text-align: center;
    border: 1px solid #dcdcdc;
    background: white;
}

.m365-btn {
    width: 100%;
    height: 100%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.m365-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #ffde59;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0;
    padding: 0;
    transition: background 0.3s ease;
    box-sizing: border-box;
}

.m365-btn-pdf {
    background: #dcdcdc;
    color: white;
    border: none;
    text-decoration: none;
}

.m365-btn-primary:hover {
    background: #ffea70;
}

.m365-arrow {
    font-size: 14px;
    margin-left: 5px;
    color: #003366;
}

/* Container für die Office-Icons */
.ulm365officeProducts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 0;
}

/* Größe der Icons */
.m365-icon {
    width: 32px; 
    height: auto; 
    transition: transform 0.2s ease-in-out;
}

.m365-icon-extra {
    width: 32px;
    height: auto;
    vertical-align: middle;
}

/* Hover-Effekt */
.m365-icon:hover {
    transform: scale(1.1);
}

.m365-arrow-icon {
    width: 16px;
    height: 16px;
    margin-left: 20px;
    vertical-align: middle;
}

@media (max-width: 1024px) {
    .m365-pricing-table,
    .m365-pricing-footer,
    .m365-footer-table {
        max-width: 95%;
        margin: 0 auto;
        table-layout: fixed;
        border-collapse: collapse;
    }

    .m365-header,
    .m365-footer-table thead th {
        font-size: 15px;
        padding: 6px;
        text-align: center;
        box-sizing: border-box;
    }

    .m365-table td, 
    .m365-table th,
    .m365-footer-table td,
    .m365-footer-table th {
        padding: 6px;
        font-size: 13px;
        text-align: center;
        box-sizing: border-box;
        width: 25%;
        vertical-align: middle;
        height: auto;
    }

    .m365-footer-price {
        font-size: 14px;
        padding: 8px;
        margin: 0;
        line-height: 1.4;
    }

    .m365-btn {
        font-size: 12px;
        padding: 6px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.2;
        height: 100%;
        width: 100%;
    }

    .m365-btn-primary,
    .m365-btn-pdf {
        width: 100%;
        height: 100%;
        padding: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        text-align: center;
    }

    .m365-arrow-icon {
        width: 14px;
        height: 14px;
    }

    .m365-icon,
    .m365-icon-extra {
        width: 28px;
        height: auto;
    }

    .ulm365officeProducts img[alt="Access"],
    .ulm365officeProducts img[alt="Publisher"],
    .ulm365officeProducts img[alt="Skype for Business"],
    .ulm365officeProducts img[alt="Yammer"],
    .ulm365officeProducts img[alt="Outlook"],
    .ulm365officeProducts img[alt="OneNote"] {
        display: none !important;
    }

    .m365-pricing-footer {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .m365-pricing-table,
    .m365-pricing-footer,
    .m365-footer-table {
        max-width: 95%;
        margin: 0 auto;
        table-layout: fixed;
    }

    .m365-header,
    .m365-footer-table thead th {
        font-size: 13px;
        padding: 5px;
    }

    .m365-table td, 
    .m365-table th,
    .m365-footer-table td,
    .m365-footer-table th {
        padding: 5px;
        font-size: 12px;
        text-align: center;
        width: 25%;
        box-sizing: border-box;
    }

    .m365-footer-price {
        font-size: 12px;
        padding: 5px;
    }

    .m365-btn {
        font-size: 11px;
        padding: 4px;
        line-height: 1.2;
    }

    .m365-arrow-icon {
        width: 12px;
        height: 12px;
    }

    .m365-icon,
    .m365-icon-extra {
        width: 24px;
    }

    .ulm365officeProducts {
        gap: 5px;
    }

    
    .ulm365officeProducts img[alt="Access"],
    .ulm365officeProducts img[alt="Publisher"],
    .ulm365officeProducts img[alt="Skype for Business"],
    .ulm365officeProducts img[alt="Yammer"],
    .ulm365officeProducts img[alt="Outlook"],
    .ulm365officeProducts img[alt="OneNote"] {
        display: none !important;
    }

    .m365-pricing-footer {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .m365-pricing-table,
    .m365-pricing-footer,
    .m365-footer-table {
        max-width: 95%;
        margin: 0 auto;
        table-layout: fixed;
    }

    .m365-pricing-table {
        margin-top: 20px;
    }

    .m365-pricing-footer {
        max-width: 100%;
        margin: 0 auto;
        table-layout: fixed;
    }

    .m365-header,
    .m365-footer-table thead th {
        font-size: 11px;
        padding: 4px;
    }

    .m365-table td, 
    .m365-table th,
    .m365-footer-table td,
    .m365-footer-table th {
        padding: 4px;
        font-size: 11px;
        text-align: center;
        width: 25%;
        box-sizing: border-box;
    }

    .m365-footer-price {
        font-size: 11px;
        padding: 4px;
    }

    .m365-btn {
        font-size: 9px;
        text-align: center;
        padding: 3px;
        line-height: 1.2;
    }

    .m365-arrow-icon {
        width: 10px;
        height: 10px;
        margin-left: 2px;
    }

    .m365-icon,
    .m365-icon-extra {
        width: 20px;
    }

    .ulm365officeProducts {
        gap: 4px;
    }

    .ulm365officeProducts img[alt="Access"],
    .ulm365officeProducts img[alt="Publisher"],
    .ulm365officeProducts img[alt="Skype for Business"],
    .ulm365officeProducts img[alt="Yammer"],
    .ulm365officeProducts img[alt="Outlook"],
    .ulm365officeProducts img[alt="OneNote"] {
        display: none !important;
    }

    .m365-pricing-footer {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 20px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
    
}

/* Webhosting Section */
.webhosting-section {
    background-color: #f8f9fb;
    padding: 40px 10%;
}

/* Container */
.webhosting-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-left: 11%;
}

/* Text-Bereich */
.webhosting-content {
    max-width: 50%;
}

/* Überschrift */
.webhosting-content h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.webhosting-content h2 span {
    color: #1299f3;
}

/* Beschreibungstext */
.webhosting-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Vorteile-Liste */
.webhosting-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.webhosting-benefits li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.webhosting-benefits li::before {
    content: "✔";
    font-size: 18px;
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

/* Button */
.webhosting-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #1299f3;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.webhosting-btn:hover {
    background-color: #005f8d;
}

/* Bild-Bereich */
.webhosting-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .webhosting-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-left: 0;
        padding: 0 5%;
    }

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

    .webhosting-content h2 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .webhosting-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .webhosting-benefits {
        list-style: none;
        padding: 0;
        margin: 0 auto 20px;
        max-width: 100%;
        text-align: center;
    }

    .webhosting-benefits li {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center; 
        gap: 8px;
        text-align: left;
        white-space: nowrap; 
        word-spacing: -1px;   
        letter-spacing: -0.2px;
    }

    .webhosting-benefits li span {
        white-space: normal;
    }

    .webhosting-benefits li::before {
        content: "✔";
        color: #28a745;
        font-weight: bold;
        font-size: 16px;
        flex-shrink: 0;
    }

    .webhosting-btn {
        font-size: 14px;
        padding: 10px 16px;
    }

    .webhosting-image img {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .webhosting-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-left: 0;
        padding: 0 5%;
    }

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

    .webhosting-content h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .webhosting-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .webhosting-benefits {
        text-align: center;
        margin-bottom: 20px;
    }

    .webhosting-benefits li {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center; 
        gap: 6px;
        white-space: nowrap; 
        word-spacing: -1px;   
        letter-spacing: -0.2px; 
    }

    .webhosting-benefits li span {
        white-space: normal;
    }

    .webhosting-benefits li::before {
        font-size: 14px;
        color: #28a745;
        font-weight: bold;
    }

    .webhosting-btn {
        font-size: 14px;
        padding: 10px 18px;
    }

    .webhosting-image img {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .webhosting-section {
        padding: 30px 5%;
    }

    .webhosting-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .webhosting-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    .webhosting-benefits li {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center; 
        gap: 5px;
        white-space: nowrap; 
        word-spacing: -2px;  
        letter-spacing: 0.1px;
    }

    .webhosting-benefits li span {
        white-space: normal;
    }

    .webhosting-benefits li::before {
        font-size: 12px;
        color: #28a745;
        font-weight: bold;
    }

    .webhosting-btn {
        font-size: 13px;
        padding: 8px 14px;
    }

    .webhosting-image img {
        max-width: 90%;
    }
}

html {
    scroll-behavior: smooth !important;
}

/* DOMAIN Stile Hosting */
.domain-search2 {
    text-align: center;
    background-color: white;
    padding: 40px 0;
}

.domain-search2 h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    font-family: 'Oswald', sans-serif;
}

.domain-search2 p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.webhosting-performance {
    background-color: #f8f9fb;
    padding: 50px 10%;
    text-align: left;
}

/* Container für den Inhalt */
.webhosting-performance-container {
    max-width: 1100px;
    margin: 0 auto;
    margin-left: 11%;
}

/* Überschrift */
.webhosting-performance-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
}

/* Gelber Strich unter der Überschrift */
.webhosting-yellow-line {
    width: 280px;
    height: 4px;
    background-color: #ffcc00;
    margin: 8px 0px 20px;
}

/* Einleitungstext */
.webhosting-performance-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Flexbox für die drei Vorteile */
.webhosting-performance-benefits {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Einzelne Vorteil-Box */
.webhosting-performance-box {
    flex: 1;
    text-align: left;
}

/* Blaue Linie */
.webhosting-blue-line {
    width: 100%;
    height: 4px;
    background-color: #007bb5;
    margin-bottom: 10px;
}

/* Titel der Vorteile */
.webhosting-performance-box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

/* Beschreibung der Vorteile */
.webhosting-performance-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .webhosting-performance {
        padding: 40px 5%; 
    }

    .webhosting-performance-container {
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
    }

    .webhosting-performance-header h2 {
        font-size: 24px;
    }

    .webhosting-performance-header p {
        font-size: 15px;
    }

    .webhosting-performance-benefits {
        flex-direction: column;
        gap: 20px;
    }

    .webhosting-performance-box h3 {
        font-size: 17px;
    }

    .webhosting-performance-box p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .webhosting-performance {
        padding: 30px 5%;
    }

    .webhosting-performance-container {
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px; 
    }

    .webhosting-performance-header h2 {
        font-size: 22px;
    }

    .webhosting-performance-header p {
        font-size: 14px;
    }

    .webhosting-yellow-line {
        width: 200px;
    }

    .webhosting-performance-box h3 {
        font-size: 16px;
    }

    .webhosting-performance-box p {
        font-size: 13px;
    }

    .webhosting-blue-line {
        width: 90%;
        height: 4px;
        background-color: #007bb5;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .webhosting-performance {
        padding: 20px 4%;
    }

    .webhosting-performance-container {
        padding: 0 10px;
    }

    .webhosting-performance-header h2 {
        font-size: 18px;
    }

    .webhosting-performance-header p {
        font-size: 13px;
    }

    .webhosting-yellow-line {
        width: 150px;
    }

    .webhosting-performance-box h3 {
        font-size: 15px;
    }

    .webhosting-performance-box p {
        font-size: 13px;
    }

    .webhosting-blue-line {
        width: 90%;
        height: 4px;
        background-color: #007bb5;
        margin-bottom: 10px;
    }
    
}

.webhosting-performance-benefits2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px;
}

@media (max-width: 1024px) {
    .webhosting-performance-benefits2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .webhosting-performance-benefits2 {
        grid-template-columns: 1fr;
    }
}

/* Allgemeine Einstellungen für die Section */
.oneclick-section {
    background-color: #ffffff;
    padding: 50px 10%;
    text-align: center;
}

/* Container für den Inhalt */
.oneclick-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Überschrift */
.oneclick-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

/* Einleitungstext */
.oneclick-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Feature-Grid */
.oneclick-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Einzelne Feature-Box */
.oneclick-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Blauer Icon-Kreis */
.oneclick-icon {
    width: 80px;
    height: 80px;
    background-color: #007bb5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    padding: 0;
    flex-shrink: 0;
}

/* Icon-Bild */
.oneclick-icon img {
    width: 32px;
    height: 32px;
    filter: invert(1);
}

/* Feature-Titel */
.oneclick-box h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

/* Feature-Beschreibung */
.oneclick-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .oneclick-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .oneclick-box:nth-child(9) {
        grid-column: span 2; 
        justify-self: center;
        max-width: 400px;
        width: 100%; 
    }

    .oneclick-header h2 {
        font-size: 24px;
    }

    .oneclick-header p {
        font-size: 15px;
    }

    .oneclick-box h3 {
        font-size: 16px;
    }

    .oneclick-box p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .oneclick-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .oneclick-box:nth-child(9) {
        grid-column: span 2;
        justify-self: center;
        max-width: 400px;
        width: 100%;
    }

    .oneclick-header h2 {
        font-size: 22px;
    }

    .oneclick-header p {
        font-size: 14px;
    }

    .oneclick-box h3 {
        font-size: 15px;
    }

    .oneclick-box p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .oneclick-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .oneclick-box:nth-child(9) {
        grid-column: span 2;
        justify-self: center;
        max-width: 400px;
        width: 100%;
    }

    .oneclick-header h2 {
        font-size: 20px;
    }

    .oneclick-header p {
        font-size: 13px;
    }

    .oneclick-box h3 {
        font-size: 14px;
    }

    .oneclick-box p {
        font-size: 12px;
    }

    .oneclick-icon img {
        width: 35px;
        height: 35px;
    }
}

/* Abschnitt 1: Einführung */
.drones-intro {
    max-width: 100%;
    padding: 50px 20px;
    background: #f8f9fa;
}

.drones-intro h2 {
    font-family: 'Oswald', sans-serif;
}

.drones-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.drones-text {
    flex: 1;
}

.drones-image img {
    width: 100%;
    max-width: 500px;
}

@media (max-width: 1024px) {
    .drones-intro {
        width: 100%;
        padding: 50px 0;
    }

    .drones-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        width: 90%; 
        max-width: 600px;
        margin: 0 auto; 
        gap: 20px;
    }

    .drones-text {
        width: 100%;
        text-align: left; 
    }

    .drones-intro h2 {
        font-size: 18px;
        text-align: left; 
    }

    .drones-paragraph {
        font-size: 13px;
        text-align: left;
        line-height: 1.5;
    }

    .drones-image {
        width: 100%;
        max-width: 300px; 
        margin: 0 auto;
    }

    .drones-image img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .drones-intro {
        width: 100%;
        padding: 40px 0;
    }

    .drones-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
        gap: 15px;
    }

    .drones-text {
        width: 100%;
        text-align: left;
    }

    .drones-intro h2 {
        font-size: 18px;
    }

    .drones-paragraph {
        font-size: 13px;
        line-height: 1.5;
    }

    .drones-image {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .drones-image img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .drones-intro {
        width: 100%;
        padding: 30px 0;
    }

    .drones-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
        gap: 15px;
    }

    .drones-text {
        width: 100%;
        text-align: left;
    }

    .drones-intro h2 {
        font-size: 18px;
    }

    .drones-paragraph {
        font-size: 13px;
        line-height: 1.5;
    }

    .drones-image {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .drones-image img {
        width: 100%;
        height: auto;
    }
}

/* Abschnitt 2 */
.drones-types {
    text-align: center;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px 20px;
}

.drones-types h2 {
    font-family: 'Oswald', sans-serif;
}

.drones-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
    align-items: stretch;
}

.drones-videos {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    margin-top: 30px;
}

.drones-box {
    flex: 1;
    background: #1299f3;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    height: auto;
    min-height: 500px;
}

.drones-box h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    font-family: 'Oswald', sans-serif;
}

.drones-box p {
    font-size: 14px;
    color: white;
    flex-grow: 1;
    max-width: 90%;
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
}

@media (max-width: 1024px) {
    .drones-types h2 {
        font-size: 18px;
    }

    .drones-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .drones-box {
        width: 75%;
        max-width: 600px;
        text-align: center;
        padding: 20px;
        min-height: unset;
    }

    .drones-box h3 {
        font-size: 16px;
    }

    .drones-box p {
        font-size: 13px;
    }

    .video-wrapper {
        width: 100%;
        padding-bottom: 56.25%;
        height: 0;
    }

    .video-wrapper iframe {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .drones-types h2 {
        font-size: 18px;
    }

    .drones-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .drones-box {
        width: 80%;
        max-width: 500px;
        text-align: center;
        padding: 15px;
        min-height: unset;
    }

    .drones-box h3 {
        font-size: 16px;
    }

    .drones-box p {
        font-size: 13px;
    }

    .video-wrapper {
        width: 100%;
        padding-bottom: 56.25%;
        height: 0;
    }

    .video-wrapper iframe {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .drones-types h2 {
        font-size: 18px;
    }

    .drones-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .drones-box {
        width: 90%;
        max-width: 400px;
        text-align: center;
        padding: 10px;
        min-height: unset;
    }

    .drones-box h3 {
        font-size: 16px;
    }

    .drones-box p {
        font-size: 13px;
    }

    .video-wrapper {
        width: 100%;
        padding-bottom: 56.25%;
        height: 0;
    }

    .video-wrapper iframe {
        width: 100%;
        height: 100%;
    }
}

/* Abschnitt 3 */
.drones-impact {
    max-width: 100%;
    background: #f8f9fa;
    color: #000000;
    padding: 60px 20px;
}

.drones-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.drones-impact h2 {
    color: #000000;
    font-family: 'Oswald', sans-serif;
}

/* Allgemeine Design-Elemente */
.drones-underline {
    display: block;
    width: 350px;
    height: 4px;
    background: #ffde59;
    margin: 10px auto 20px;
}

.drones-underline2 {
    display: block;
    width: 350px;
    height: 4px;
    background: #ffde59;
    margin: 10px 0 20px;
}

@media (max-width: 1024px) {
    .drones-impact {
        width: 100%;
        padding: 40px 0;
    }

    .drones-container {
        width: 90%;
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .drones-impact-content {
        width: 100%;
        text-align: left;
    }

    .drones-impact h2 {
        font-size: 18px;
        text-align: left;
    }

    .drones-impact p {
        font-size: 13px;
        text-align: left;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .drones-underline2 {
        width: 100%;
        max-width: 350px;
        height: 4px;
        margin: 10px 0 20px;
    }
}

@media (max-width: 768px) {
    .drones-impact {
        width: 100%;
        padding: 30px 0;
    }

    .drones-container {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .drones-impact-content {
        width: 100%;
        text-align: left;
    }

    .drones-impact h2 {
        font-size: 18px;
        text-align: left;
    }

    .drones-impact p {
        font-size: 13px;
        text-align: left;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .drones-underline2 {
        width: 100%;
        max-width: 350px;
        height: 4px;
        margin: 10px 0 20px;
    }
}

@media (max-width: 480px) {
    .drones-impact {
        width: 100%;
        padding: 20px 0;
    }

    .drones-container {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .drones-impact-content {
        width: 100%;
        text-align: left;
    }

    .drones-impact h2 {
        font-size: 18px;
        text-align: left;
    }

    .drones-impact p {
        font-size: 13px;
        text-align: left;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .drones-underline2 {
        width: 80%;
        max-width: 350px;
        height: 4px;
        margin: 10px 0 20px;
    }
}

/* Allgemeine Section */
.lizenzen-section {
    text-align: center;
    background-color: #f9f9f9;
    padding: 50px 20px;
    margin-top: 50px;
}

.lizenzen-container {
    max-width: 1000px;
    margin: 0 auto;
}

.lizenzen-section h2 {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.lizenzen-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

/* Blaue Linie */
.lizenzen-line {
    width: 250px;
    height: 4px;
    background-color: #1299f3;
    margin: 15px auto 30px;
}

/* Slider Wrapper */
.lizenzen-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Slider */
.lizenzen-slider {
    display: flex;
    position: relative;
    width: 600px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

/* Slide */
.lizenzen-slide {
    display: none;
    flex: 0 0 45%;
    align-items: center;
    gap: 15px;
    text-align: left;
    opacity: 0;
    transform: translateX(50%);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Aktive Slides */
.lizenzen-slide.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

/* Icon */
.lizenzen-slide img {
    width: 60px;
    height: auto;
}

/* Einheitliche Höhe für Texte */
.lizenzen-slide-text {
    min-height: 50px;
}

/* Überschrift */
.lizenzen-slide-text h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

/* Beschreibungstext */
.lizenzen-slide-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    min-height: 40px;
}

/* Navigation Buttons */
.lizenzen-prev-btn,
.lizenzen-next-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1299f3;
    transition: color 0.3s ease;
}

.lizenzen-prev-btn:hover,
.lizenzen-next-btn:hover {
    color: #005a8c;
}

/* Responsive */
@media (max-width: 800px) {
    .lizenzen-slider {
        width: 100%;
    }
    .lizenzen-slide {
        flex-direction: column;
        text-align: center;
    }
    .lizenzen-slide img {
        width: 50px;
    }
    .lizenzen-prev-btn,
    .lizenzen-next-btn {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .lizenzen-section h2 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .lizenzen-section h2 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .lizenzen-section h2 {
        font-size: 18px;
    }
}

/* Allgemeines Styling für die Section */
.lizenzen-collaboration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 10%;
    background-color: white;
}

/* Flexbox-Container */
.lizenzen-collaboration-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
}

/* Textblock Styling */
.lizenzen-collaboration-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.lizenzen-collaboration-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: 'Oswald', sans-serif;
}

.lizenzen-collaboration-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Bild Styling */
.lizenzen-collaboration-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.lizenzen-collaboration-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .lizenzen-collaboration-container {
        flex-direction: column;
        text-align: center;
    }

    .lizenzen-collaboration-text {
        max-width: 100%;
    }

    .lizenzen-collaboration-image img {
        max-width: 100%;
    }

    .lizenzen-collaboration-text h2 {
        font-size: 18px;
    }

    .lizenzen-collaboration-text p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .lizenzen-collaboration-text h2 {
        font-size: 18px;
    }

    .lizenzen-collaboration-text p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .lizenzen-collaboration-text h2 {
        font-size: 18px;
    }

    .lizenzen-collaboration-text p {
        font-size: 13px;
    }
}

/* OneDrive Section */
.onedrive-section {
    background-color: #f8f9fb;
    padding: 60px 10%;
}

.onedrive-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* OneDrive Image */
.onedrive-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* OneDrive Text */
.onedrive-text {
    flex: 1;
    text-align: left;
}

.onedrive-text h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.onedrive-text h2 span {
    color: #1299f3;
}

.onedrive-line {
    width: 95px;
    height: 4px;
    background-color: #1299f3;
    margin: 8px 0px 20px;
}

.onedrive-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .onedrive-container {
        flex-direction: column;
        text-align: center;
    }

    .onedrive-image img {
        max-width: 100%;
    }

    .onedrive-text {
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .onedrive-text h2 {
        font-size: 18px;
    }

    .onedrive-text p {
        font-size: 13px;
    }

    .onedrive-line {
        margin-left: 20px;
    }

    .onedrive-container {
        flex-direction: column;
        text-align: center;
    }

    .onedrive-text {
        text-align: center;
    }

    .onedrive-line {
        margin: 8px auto 20px;
    }
}

@media (max-width: 768px) {
    .onedrive-text h2 {
        font-size: 18px;
    }

    .onedrive-text p {
        font-size: 13px;
    }

    .onedrive-line {
        margin-left: 20px;
    }

    .onedrive-container {
        flex-direction: column;
        text-align: center;
    }

    .onedrive-text {
        text-align: center;
    }

    .onedrive-line {
        margin: 8px auto 20px;
    }
}

@media (max-width: 480px) {
    .onedrive-text h2 {
        font-size: 18px;
    }

    .onedrive-text p {
        font-size: 13px;
    }

    .onedrive-line {
        margin-left: 20px;
    }

    .onedrive-container {
        flex-direction: column;
        text-align: center;
    }

    .onedrive-text {
        text-align: center;
    }

    .onedrive-line {
        margin: 8px auto 20px;
    }
}

/* Service Section */
.lizenzenservice-section {
    background-color: white;
    padding: 60px 10%;
    text-align: left;
}

/* Container für den Inhalt */
.lizenzenservice-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Überschrift */
.lizenzenservice-header h2 {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

/* Gelber Strich unter der Überschrift */
.lizenzenservice-yellow-line {
    width: 250px;
    height: 4px;
    background-color: #ffcc00;
    margin: 8px 0px 20px;
}

/* Beschreibungstext */
.lizenzenservice-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Flexbox für die Service-Bereiche */
.lizenzenservice-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Einzelne Box */
.lizenzenservice-box {
    flex: 1;
    text-align: left;
}

/* Blaue Linie */
.lizenzenservice-blue-line {
    width: 100%;
    height: 4px;
    background-color: #1299f3;
    margin-bottom: 10px;
}

/* Titel der Blöcke */
.lizenzenservice-box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

/* Beschreibung der Vorteile */
.lizenzenservice-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 10px;
}

/* Pfeil-Icon */
.lizenzenservice-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    vertical-align: middle;
    margin-top: -1px;
    margin-left: 5px;
}

/* Links unter den Blöcken */
.lizenzenservice-box a {
    font-size: 14px;
    color: #1299f3;
    text-decoration: none;
    font-weight: bold;
    display: block;
    transition: color 0.3s ease;
}

.lizenzenservice-box a:hover {
    color: #005a8d;
}

.lizenzenservice-box a:hover .lizenzenservice-arrow {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .lizenzenservice-header h2 {
        font-size: 18px;
    }

    .lizenzenservice-header p {
        font-size: 13px;
    }

    .lizenzenservice-box p {
        font-size: 13px;
    }

    .lizenzenservice-box a {
        font-size: 13px;
    }

    .lizenzenservice-content {
        flex-direction: column;
        align-items: center;
    }

    .lizenzenservice-box {
        max-width: 100%;
        text-align: left; 
    }

    .lizenzenservice-header {
        text-align: left; 
    }

    .lizenzenservice-yellow-line {
        margin-left: 0; 
    }

    .lizenzenservice-arrow {
        width: 12px;
        height: 12px;
        transition: transform 0.3sease;
        vertical-align: middle;
        margin-top: -1px;
        margin-left: 5px;
    }
    .lizenzenservice-box h3 {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .lizenzenservice-header h2 {
        font-size: 18px;
    }

    .lizenzenservice-header p {
        font-size: 13px;
    }

    .lizenzenservice-box p {
        font-size: 13px;
    }

    .lizenzenservice-box a {
        font-size: 13px;
    }

    .lizenzenservice-content {
        flex-direction: column;
        align-items: center;
    }

    .lizenzenservice-box {
        max-width: 100%;
        text-align: left; 
    }

    .lizenzenservice-header {
        text-align: left;
    }

    .lizenzenservice-yellow-line {
        margin-left: 0; 
    }

    .lizenzenservice-arrow {
        width: 12px;
        height: 12px;
        transition: transform 0.3sease;
        vertical-align: middle;
        margin-top: -1px;
        margin-left: 5px;
    }

    .lizenzenservice-box h3 {
        font-size: 15px;
        font-weight: bold;
        color: #333;
        margin-bottom: 8px;
    }
}

@media (max-width: 580px) {
    .lizenzenservice-header h2 {
        font-size: 18px;
    }

    .lizenzenservice-header p {
        font-size: 13px;
    }

    .lizenzenservice-box p {
        font-size: 13px;
    }

    .lizenzenservice-box a {
        font-size: 13px;
    }

    .lizenzenservice-content {
        flex-direction: column;
        align-items: center;
    }

    .lizenzenservice-box {
        max-width: 100%;
        text-align: left; 
    }

    .lizenzenservice-header {
        text-align: left; 
    }

    .lizenzenservice-yellow-line {
        margin-left: 0;
    }

    .lizenzenservice-arrow {
        width: 12px;
        height: 12px;
        transition: transform 0.3sease;
        vertical-align: middle;
        margin-top: -1px;
        margin-left: 5px;
    }

    .lizenzenservice-box h3 {
        font-size: 15px;
        font-weight: bold;
        color: #333;
        margin-bottom: 8px;
    }
}

.telefonanlage-section {
    background-color: white;
    padding: 60px 10%;
    text-align: center;
}

/* Container */
.telefonanlage-container {
    max-width: 1200px;
    margin: 0 auto;
}

.telefonanlage-divider {
    width: 100%;
    border-top: 2px dashed #ccc;
    margin: 20px 0;
}

/* Überschrift */
.telefonanlage-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

/* Einführungstext */
.telefonanlage-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* Flexbox Layout für Inhalt */
.telefonanlage-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Vorteile Spalten */
.telefonanlage-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Einzelne Vorteile */
.telefonanlage-item {
    text-align: left;
    padding: 20px;
    background: white;
    transition: transform 0.3s ease;
}

.telefonanlage-item:hover {
    transform: translateY(-3px);
}

/* Titel der Vorteile */
.telefonanlage-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

/* Beschreibungstext */
.telefonanlage-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* Bild in der Mitte */
.telefonanlage-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.telefonanlage-image img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    border: 15px solid #dcdcdc;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .telefonanlage-content {
        flex-direction: column;
        text-align: center;
    }

    .telefonanlage-column {
        width: 100%;
    }

    .telefonanlage-item {
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .telefonanlage-header h2 {
        font-size: 18px;
    }

    .telefonanlage-header p {
        font-size: 13px;
    }

    .telefonanlage-item h3 {
        font-size: 14px;
    }

    .telefonanlage-item p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .telefonanlage-header h2 {
        font-size: 18px;
    }

    .telefonanlage-header p {
        font-size: 13px;
    }

    .telefonanlage-item h3 {
        font-size: 14px;
    }

    .telefonanlage-item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .telefonanlage-header h2 {
        font-size: 18px;
    }

    .telefonanlage-header p {
        font-size: 13px;
    }

    .telefonanlage-item h3 {
        font-size: 14px;
    }

    .telefonanlage-item p {
        font-size: 13px;
    }
}

/* Einbindung Telefonanlage */
.telefonanlage-einbindung {
    background-color: #f8f9fb;
    padding: 60px 10%;
    text-align: center;
}

/* Container */
.telefonanlage-einbindung-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Überschrift */
.telefonanlage-einbindung-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

/* Blaue Linie */
.telefonanlage-blue-line {
    width: 250px;
    height: 4px;
    background-color: #ffde59;
    margin: 8px auto 20px;
}

/* Beschreibung */
.telefonanlage-einbindung-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* Grid für Einsatzbereiche */
.telefonanlage-einbindung-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* Einzelne Elemente */
.telefonanlage-einbindung-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.telefonanlage-einbindung-item:hover {
    transform: translateY(-3px);
}

/* Icons */
.telefonanlage-einbindung-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
}

/* Titel der Vorteile */
.telefonanlage-einbindung-item h3 {
    font-size: 18px;
    font-weight: bold;
    color:rgb(18, 153, 243);
    margin-bottom: 8px;
}

/* Beschreibungstext */
.telefonanlage-einbindung-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .telefonanlage-einbindung-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .telefonanlage-einbindung-grid {
        grid-template-columns: 1fr;
    }
}

/* Funktionen Section */
.telefonanlage-funktionen {
    background-color: #ffffff;
    padding: 60px 10%;
    text-align: center;
}

/* Container */
.telefonanlage-funktionen-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Überschrift */
.telefonanlage-funktionen-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

/* Gelbe Linie */
.telefonanlage-yellow-line {
    width: 250px;
    height: 4px;
    background-color: #ffde59;
    margin: 8px auto 20px;
}

/* Einleitungstext */
.telefonanlage-funktionen-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* Grid-System für Funktionen */
.telefonanlage-funktionen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* Einzelne Funktion */
.telefonanlage-funktion {
    display: flex;
    align-items: center;
    background: #f8f9fb;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    width: 90%;
}

.telefonanlage-funktion:hover {
    transform: translateY(-3px);
}

/* Icon Styling */
.telefonanlage-icon {
    width: 60px;
    height: 60px;
    background-color: #007bb5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.telefonanlage-icon img {
    width: 32px;
    height: 32px;
    filter: invert(1) brightness(1000%);
}

/* Textbereich */
.telefonanlage-funktion-text h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1299f3;
    margin-bottom: 8px;
}

.telefonanlage-funktion-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* Responsive Anpassungen */

@media (max-width: 1024px) {
    
    .telefonanlage-funktionen-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    
    .telefonanlage-funktionen-container {
        max-width: 90%;
        margin: 0 auto;
    }

    
    .telefonanlage-funktionen-header h2 {
        font-size: 18px;
    }

    .telefonanlage-funktionen-header p {
        font-size: 13px;
    }

    .telefonanlage-funktion {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        text-align: left;
    }

    .telefonanlage-funktion-text h3 {
        font-size: 16px;
    }

    .telefonanlage-funktion-text p {
        font-size: 13px;
    }

    .telefonanlage-icon {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .telefonanlage-icon img {
        width: 24px;
        height: 24px;
    }

    .telefonanlage-einbindung-header h2 {
        font-size: 18px;
    }

    .telefonanlage-einbindung-header p {
        font-size: 13px;
    }

    .telefonanlage-einbindung-grid {
        display: flex;
        flex-direction: column;
        align-items: center; 
        gap: 20px;
    }

    .telefonanlage-einbindung-item {
        width: 90%; 
        max-width: 400px;
        text-align: center;
    }

    .telefonanlage-einbindung-item h3 {
        font-size: 16px;
    }

    .telefonanlage-funktionen-grid {
        display: flex;
        flex-direction: column;
        align-items: center;  
        gap: 20px;
    }

    .telefonanlage-funktion {
        width: 90%;               
        max-width: 500px;         
        margin: 0 auto;           
        text-align: left;
    }
}

@media (max-width: 768px) {
    
    .telefonanlage-funktionen-container {
        max-width: 95%;
    }

    .telefonanlage-funktionen-header h2 {
        font-size: 18px;
    }

    .telefonanlage-funktionen-header p {
        font-size: 13px;
    }

    .telefonanlage-funktionen-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .telefonanlage-funktion {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .telefonanlage-funktion-text h3 {
        font-size: 16px;
    }

    .telefonanlage-funktion-text p {
        font-size: 13px;
    }

    .telefonanlage-icon {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .telefonanlage-icon img {
        width: 24px;
        height: 24px;
    }

    .telefonanlage-einbindung-header h2 {
        font-size: 18px;
    }

    .telefonanlage-einbindung-header p {
        font-size: 13px;
    }

    .telefonanlage-einbindung-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .telefonanlage-einbindung-item {
        width: 90%;
        max-width: 400px;
        text-align: center;
    }

    .telefonanlage-einbindung-item h3 {
        font-size: 16px;
    }

    .telefonanlage-funktionen-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .telefonanlage-funktion {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .telefonanlage-funktionen-container {
        max-width: 100%;
    }

    .telefonanlage-funktionen-header h2 {
        font-size: 18px;
    }

    .telefonanlage-funktionen-header p {
        font-size: 13px;
    }

    .telefonanlage-funktionen-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .telefonanlage-funktion {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 15px;
    }

    .telefonanlage-funktion-text h3 {
        font-size: 16px;
    }

    .telefonanlage-funktion-text p {
        font-size: 13px;
    }

    .telefonanlage-icon {
        width: 60px;
        height: 45px;
        margin-right: 8px;
    }

    .telefonanlage-icon img {
        width: 24px;
        height: 24px;
    }

    .telefonanlage-einbindung-header h2 {
        font-size: 18px;
    }

    .telefonanlage-einbindung-header p {
        font-size: 13px;
    }

    .telefonanlage-einbindung-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .telefonanlage-einbindung-item {
        width: 95%;
        max-width: 400px;
        text-align: center;
    }

    .telefonanlage-einbindung-item h3 {
        font-size: 14px;
    }

    .telefonanlage-einbindung-item p {
        font-size: 13px;
        color: #555;
        line-height: 1.4;
    }

    .telefonanlage-funktionen-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .telefonanlage-funktion {
        width: 95%;
        max-width: 400px;
        margin: 0 auto;
        text-align: left;
    }
}

/* Anfrageformular Section */
.telefonanfrage-section {
    background-color: #f8f9fa;
    padding: 50px 10%;
    text-align: center;
}

/* Container */
.telefonanfrage-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border: 5px solid #ffde59;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

/* Überschrift */
.telefonanfrage-container h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

/* Einleitungstext */
.telefonanfrage-container p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Formular */
.telefonanfrage-form {
    display: flex;
    flex-direction: column;
}

/* Zeilen */
.telefonanfrage-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

/* Felder */
.telefonanfrage-field {
    flex: 1;
    text-align: left;
}

.telefonanfrage-field label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.telefonanfrage-field input,
.telefonanfrage-field select,
.telefonanfrage-field textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.telefonanfrage-field textarea {
    resize: vertical;
}

/* Captcha */
.telefonanfrage-captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.telefonanfrage-captcha-container img {
    width: 120px;
    height: 40px;
    border-radius: 5px;
}

.telefonanfrage-captcha-container a {
    font-size: 14px;
    color: #007bb5;
    text-decoration: none;
    font-weight: bold;
}

.telefonanfrage-captcha-container a:hover {
    text-decoration: underline;
}

/* Absenden-Button */
.telefonanfrage-submit {
    background-color: #007bb5;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.telefonanfrage-submit:hover {
    background-color: #005a8d;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .telefonanfrage-row {
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .telefonanfrage-section {
        width: 100%;               
        padding: 30px 0;           
        display: flex;
        justify-content: center;   
    }

    .telefonanfrage-container {
        width: 90%;                 
        max-width: 600px;           
        margin: 0 auto;
        text-align: center;
    }

    .telefonanfrage-container h2 {
        font-size: 18px;
    }

    .telefonanfrage-container p {
        font-size: 13px;
    }

    .telefonanfrage-form {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .telefonanfrage-row {
        flex-direction: column;
        width: 100%;
    }

    .telefonanfrage-field {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .telefonanfrage-section {
        width: 100%;
        padding: 20px 0;
        display: flex;
        justify-content: center;
    }

    .telefonanfrage-container {
        width: 90%;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .telefonanfrage-container h2 {
        font-size: 18px;
    }

    .telefonanfrage-container p {
        font-size: 13px;
    }

    .telefonanfrage-form {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .telefonanfrage-row {
        flex-direction: column;
        width: 100%;
    }

    .telefonanfrage-field {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .telefonanfrage-section {
        width: 100%;
        padding: 30px 0;
        display: flex;
        justify-content: center;
    }

    .telefonanfrage-container {
        width: 75%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .telefonanfrage-container h2 {
        font-size: 18px;
    }

    .telefonanfrage-container p {
        font-size: 13px;
    }

    .telefonanfrage-form {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .telefonanfrage-row {
        flex-direction: column;
        width: 100%;
    }

    .telefonanfrage-field {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    .telefonanfrage-field label,
    .telefonanfrage-field input,
    .telefonanfrage-field select,
    .telefonanfrage-field textarea {
        width: 100%;
        box-sizing: border-box;
    }
}

.telefonanfrage-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1299f3;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    text-align: center;
    max-width: 300px;
    width: 90%;
}

.telefonanfrage-popup-content p {
    margin: 0 0 15px;
    font-size: 16px;
    color: white;
}

.telefonanfrage-popup-content button {
    padding: 8px 15px;
    background-color: #ffde59;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

.telefonanfrage-popup-content button:hover {
    background-color: #ffde59;
}

.newsletter-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1299f3;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    text-align: center;
    max-width: 300px;
    width: 90%;
    border: 3px solid #ffde59;
}

.newsletter-popup-content p {
    margin: 0 0 15px;
    font-size: 16px;
    color: white;
}

.newsletter-popup-content button {
    padding: 8px 15px;
    background-color: #ffde59;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

.newsletter-popup-content button:hover {
    background-color: #ffde59;
}

/* Grundlayout */
.grafikdesign-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.grafikdesign-container {
    max-width: 1200px;
    width: 100%;
}

/* Titel */
.grafikdesign-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
}

/* Beschreibungstexte */
.grafikdesign-description {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif !important;
}

.grafikdesign-description2 {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif !important;
}

/* Zwischenüberschrift */
.grafikdesign-subtitle {
    font-size: 22px;
    color: #333;
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Oswald', sans-serif;
}

.grafikdesign-subtitle2 {
    font-size: 22px;
    color: white;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Oswald', sans-serif;
}

/* Galerie */
.grafikdesign-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Alle Bilder in Grid */
.grafikdesign-item {
    background-color: transparent;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logos */
.grafikdesign-item img {
    max-width: 100%;
    width: 220px;
    height: 200px;
    object-fit: contain;
}

/* Flyer */
.grafikdesign-flyer {
    width: 350px;
    height: 500px;
    object-fit: contain;
}

/* Visitenkarte*/
.grafikdesign-visitenkarte {
    width: 350px;
    height: 200px;
    object-fit: contain;
}

/* Flyer Section */
.grafikdesign-flyer-section {
    background-color: #1299f3;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.grafikdesign-flyer-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.grafikdesign-flyer-container .grafikdesign-subtitle {
    margin-top: 0;
    margin-bottom: 10px;
}

.grafikdesign-flyer-container .grafikdesign-description {
    margin-bottom: 30px;
}

.grafikdesign-flyer-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.grafikdesign-flyer-item {
    flex: 0 1 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffde59;
    border-radius: 8px;
    padding: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grafikdesign-flyer-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Flyer-Bilder (hochkant) */
.grafikdesign-flyer {
    width: 100%;
    max-width: 350px;
    height: 500px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .grafikdesign-flyer-gallery {
        flex-direction: column;
        align-items: center;
        gap: 10px; 
    }

    .grafikdesign-flyer-item {
        width: 90%; 
        max-width: 400px; 
    }

    .grafikdesign-flyer {
        max-width: 100%;
        height: auto;
    }

    .grafikdesign-description2 {
        font-size: 16px;
        text-align: center;
        max-width: 90%;
    }

    .grafikdesign-flyer-gallery { 
        gap: 20px;
    }
}

/* Smartphone Hochformat (bis 480px) */
@media (max-width: 480px) {
    .grafikdesign-flyer-item {
        width: 100%;
        max-width: 250px;
        padding: 10px;
    }

    .grafikdesign-flyer {
        height: auto; 
        max-width: 100%;
    }

    .grafikdesign-description2 {
        font-size: 13px;
        text-align: center;
        max-width: 90%;
    }

    .grafikdesign-flyer-gallery { 
        gap: 20px;
    }
}

/* Tablet Hochformat */
@media (max-width: 1024px) {
    .grafikdesign-title {
        font-size: 26px;
    }

    .grafikdesign-description {
        font-size: 15px;
    }

    .grafikdesign-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .grafikdesign-item img {
        width: 200px;
        height: 180px;
    }

    .grafikdesign-flyer {
        width: 300px;
        height: 450px;
    }

    .grafikdesign-visitenkarte {
        width: 300px;
        height: 180px;
    }

    .grafikdesign-subtitle2 {
        font-size: 26px;
    }
}

/* Tablet Querformat & kleinere Tablets */
@media (max-width: 768px) {
    .grafikdesign-title {
        font-size: 22px;
    }

    .grafikdesign-description {
        font-size: 14px;
    }

    .grafikdesign-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .grafikdesign-item img {
        width: 180px;
        height: 160px;
    }

    .grafikdesign-flyer {
        width: 280px;
        height: 400px;
    }

    .grafikdesign-visitenkarte {
        width: 280px;
        height: 160px;
    }

    .grafikdesign-subtitle2 {
        font-size: 22px;
    }
}

/* Smartphones */
@media (max-width: 480px) {
    .grafikdesign-title {
        font-size: 22px;
    }

    .grafikdesign-description {
        font-size: 13px;
        margin-bottom: 0;
        margin-top: 5px;
        text-align: center;
    }

    .grafikdesign-gallery {
        grid-template-columns: 1fr;
    }

    .grafikdesign-item img {
        width: 160px;
        height: 140px;
    }

    .grafikdesign-flyer {
        width: 240px;
        height: 350px;
    }

    .grafikdesign-visitenkarte {
        width: 240px;
        height: 140px;
    }

    .grafikdesign-subtitle2 {
        font-size: 22px;
    }
}

/* Galerie für Visitenkarten */
.grafikdesign-gallery2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

/* Einzelne Visitenkarte */
.grafikdesign-item2 {
    background-color: transparent;
    width: 350px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #1299f3;
    border-radius: 3px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover-Effekt */
.grafikdesign-item2:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
}

/* Visitenkarte Bild */
.grafikdesign-visitenkarte2 {
    width: 350px;
    height: 200px;
    object-fit: contain;
}

/* Tablet: 2 Spalten */
@media (max-width: 1024px) {
    .grafikdesign-gallery2 {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 25px;
    }

    .grafikdesign-visitenkarte2 {
        width: 300px;
        height: 180px;
    }
    
    .grafikdesign-item2 {
        background-color: transparent;
        width: 300px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid #1299f3;
        border-radius: 3px;
    }
}

/* Smartphones: 1 Spalte */
@media (max-width: 768px) {
    .grafikdesign-gallery2 {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 25px;
    }

    .grafikdesign-visitenkarte2 {
        width: 280px;
        height: 160px;
    }
    
    .grafikdesign-item2 {
        background-color: transparent;
        width: 280px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid #1299f3;
        border-radius: 3px;
    }
}

/* Kleinste Smartphones */
@media (max-width: 480px) {
    .grafikdesign-gallery2 {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 25px;
    }

    .grafikdesign-visitenkarte2 {
        width: 240px;
        height: 140px;
    }
    
    .grafikdesign-item2 {
        background-color: transparent;
        width: 240px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid #1299f3;
        border-radius: 3px;
    }
}

/* Cloudserver-Info-Section */
.cloudserver-info-section {
    width: 100%;
    height: 300px;
    background-color: #1299f3;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
    margin-top: 20px;
}

.cloudserver-info-container {
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.cloudserver-info-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    margin: 0 0 15px;
}

.cloudserver-info-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    margin: 0;
}

/* Media Queries */

/* Tablet Querformat bis 1024px */
@media (max-width: 1024px) {
    .cloudserver-info-title {
        font-size: 28px;
    }

    .cloudserver-info-text {
        font-size: 16px;
    }
}

/* Tablet Hochformat bis 768px */
@media (max-width: 768px) {
    .cloudserver-info-section {
        padding: 30px 15px;
    }

    .cloudserver-info-title {
        font-size: 24px;
    }

    .cloudserver-info-text {
        font-size: 15px;
    }
}

/* Smartphones bis 480px */
@media (max-width: 480px) {
    .cloudserver-info-section {
        padding: 25px 10px;
    }

    .cloudserver-info-title {
        font-size: 18px;
    }

    .cloudserver-info-text {
        font-size: 13px;
    }

    .cloudserver-info-container {
        max-width: 90%;
    }
}

/* Basis-Styles */
.vserver-section {
    width: 100%;
    background-color: #1299f3;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    box-sizing: border-box;
    margin-top: 20px;
}

.vserver-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.vserver-text-content {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

.vserver-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #FFDE59;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.vserver-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 15px;
    color: white;
}

.vserver-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    margin: 0 0 15px;
}

/* Liste mit eigenen Icons */
.vserver-features {
    font-family: 'Open Sans', sans-serif;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.vserver-features li {
    display: flex;
    align-items: center; 
    gap: 10px;
    margin: 5px 0;
    font-size: 16px;
}

.vserver-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: invert(100%);
}

.vserver-price {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.vserver-price-highlight {
    color: #ffde59;
    font-weight: bold;
    font-size: 22px;
}

/* Bildbereich */
.vserver-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 50%;
}

.vserver-image {
    max-width: 100%;
    height: auto;
}

/* Responsive Anpassungen */

/* Tablet Querformat bis 1024px */
@media (max-width: 1024px) {
    .vserver-title {
        font-size: 22px;
    }

    .vserver-subtitle {
        font-size: 32px;
    }

    .vserver-description,
    .vserver-features li,
    .vserver-price {
        font-size: 15px;
    }

    .vserver-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .vserver-text-content,
    .vserver-image-container {
        max-width: 100%;
        text-align: left;
        padding-left: 30px;
    }

    .vserver-image-container {
        justify-content: center;
        margin-top: 20px;
    }
}

/* Tablet Hochformat bis 768px */
@media (max-width: 768px) {
    .vserver-title {
        font-size: 20px;
    }

    .vserver-subtitle {
        font-size: 28px;
    }

    .vserver-description,
    .vserver-features li,
    .vserver-price {
        font-size: 14px;
    }

    .vserver-section {
        padding: 30px 15px;
    }
}

/* Smartphones bis 480px */
@media (max-width: 480px) {
    .vserver-title {
        font-size: 18px;
    }

    .vserver-subtitle {
        font-size: 24px;
    }

    .vserver-description,
    .vserver-features li,
    .vserver-price {
        font-size: 13px;
    }

    .vserver-section {
        padding: 20px 10px;
    }

    .vserver-image {
        max-width: 80%;
    }
}

/* Grundstruktur */
.sslzertifikate-section {
    width: 100%;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    padding: 30px 20px;
    box-sizing: border-box;
}

.sslzertifikate-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sslzertifikate-textbox {
    padding: 20px;
    flex: 1;
}

.sslzertifikate-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px;
    font-family: 'Oswald', sans-serif;
}

.sslzertifikate-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.sslzertifikate-urls {
    padding: 0px;
    border-radius: 5px;
}

.sslzertifikate-url-title {
    font-weight: bold;
    margin: 0 0 10px;
    font-size: 14px;
    margin-top: 15px;
}

.sslzertifikate-url {
    margin: 5px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
}

.sslzertifikate-url-badge {
    background-color: #4CAF50;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 5px;
}

.sslzertifikate-san-hinweis {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

/* Sidebar (rechte Spalte) */
.sslzertifikate-sidebar {
    width: 300px;
    padding: 20px;
    border-left: 1px solid #ddd;
    box-sizing: border-box;
}

.sslzertifikate-features-title {
    font-weight: bold;
    font-size: 14px;
    margin: 0 0 10px;
    font-family: 'Oswald', sans-serif;
}

.sslzertifikate-feature {
    font-size: 14px;
    margin: 0 0 10px;
}

.sslzertifikate-bearbeitungszeit {
    font-size: 14px;
    margin: 0 0 20px;
}

.sslzertifikate-pricebox {
    text-align: center;
}

.sslzertifikate-price {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.sslzertifikate-price-detail {
    font-size: 14px;
}

.sslzertifikate-laufzeit {
    font-size: 12px;
    margin: 5px 0;
}

.sslzertifikate-ust {
    font-size: 12px;
    color: #666;
    margin: 0 0 15px;
}

.sslzertifikate-button {
    background-color: #ffde59;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
}

.sslzertifikate-button:hover {
    background: #ffb300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sslzertifikate-container {
        flex-direction: column;
    }
    
    .sslzertifikate-sidebar {
        width: 100%;
        border-left: none;
        border-top: 1px solid #ddd;
    }

}

@media (max-width: 768px) {
    .sslzertifikate-textbox, 
    .sslzertifikate-sidebar {
        padding: 15px;
    }
    
    .sslzertifikate-title {
        font-size: 16px;
    }

    .sslzertifikate-price {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .sslzertifikate-section {
        padding: 20px 12px;
    }

    .sslzertifikate-title {
        font-size: 16px;
        text-align: center;
    }

    .sslzertifikate-description {
        font-size: 13px;
    }

    .sslzertifikate-sidebar {
        text-align: center;
    }

    .sslzertifikate-price {
        font-size: 20px;
    }

    .sslzertifikate-button {
        font-size: 13px;
        padding: 8px 15px;
    }
}



/* Wissensdatenbank Section */
.wissensdatenbank-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
}

.wissensdatenbank-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.wissensdatenbank-container h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.wissensdatenbank-container p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

/* Suchbox und Buttons */
.top {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.top input[type="text"] {
    padding: 10px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.top button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.top button:hover {
    background-color: #0056b3;
}

/* Ladeanzeige */
#loading {
    display: none;
    color: #555;
    margin-top: 20px;
}

/* Wissensdatenbank-Inhalt */
#knowledgebase {
    margin-top: 20px;
    text-align: left;
}

#knowledgebase ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Drei Spalten */
    gap: 20px; /* Abstand zwischen den Boxen */
    padding: 0;
    list-style-type: none;
}

#knowledgebase li {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#knowledgebase li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#knowledgebase li b {
    font-size: 1.2rem;
    color: #333;
}

#knowledgebase li small {
    display: block;
    margin-top: 10px;
    color: #666;
    font-size: 0.9rem;
}

/* Stile für den Zurück-Button */
#backButton {
    padding: 10px 20px;
    background-color: #6c757d; /* Graue Farbe */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    display: none; /* Standardmäßig ausgeblendet */
}

#backButton:hover {
    background-color: #5a6268; /* Dunkleres Grau beim Hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    #knowledgebase ul {
        grid-template-columns: repeat(2, 1fr); /* Zwei Spalten auf Tablets */
    }
}

@media (max-width: 768px) {
    #knowledgebase ul {
        grid-template-columns: 1fr; /* Eine Spalte auf Smartphones */
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    #knowledgebase ul {
        grid-template-columns: repeat(2, 1fr); /* Zwei Spalten auf Tablets */
    }
}

@media (max-width: 768px) {
    #knowledgebase ul {
        grid-template-columns: 1fr; /* Eine Spalte auf Smartphones */
    }
}

