/* Styles für den Cookie-Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #ccc;
    z-index: 1000; /* Damit der Banner immer oben liegt */
  }
  
  /* Optional: Styles für die Buttons */
  #cookie-banner button {
    margin: 0 10px;
    padding: 10px 20px;
    cursor: pointer;
  }
    
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #949393;
    color: #000;
}

/* Header Styling */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding: 10px 20px;
    border-bottom: 1px solid #333;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    width: 100%;
}

header nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 15px;
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease;
}

header nav a.active {
    color: #FF6600;
    font-weight: bold;
}

header nav a:hover {
    color: #FF6600;
}

.language-switch {
    margin-left: 15px;
    padding: 3px 10px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.language-switch:hover {
    background-color: #f0f0f0;
    color: #FF6600;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    text-align: center;
    height: 400px;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
    width: 100px;
    height: auto;
    cursor: pointer;
}


.hero-circle {
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    background-color: #8222ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
    text-align: center;
    padding: 5px;
}

.hero-circle2 {
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    background-color: #8222ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 17px;
    text-align: center;
    padding: 5px;
}



.hero-section h2 {
    font-size: 42px;
    margin: 0 10px;
    color: #fff;
}
.hero-section h3 {
    font-size: 40px;
    margin: 0 10px;
    color: #fff;
}
.hero-section p {
    font-size: 18px;
    margin-bottom: 30px;
    z-index: 2;
    color: #ffffff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

.hero-background img {
    width: 50%;
    object-fit: cover;
    filter: brightness(65%);
}
/* Button Section */
/* Buttons */
.btn-orange {
    background-color: #FF5722;
    color: #fff;
    width: 160px;
    height: 45px;
    line-height: 45px;
    margin: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-overflow: ellipsis;
    
    /* Damit der Link wie ein Button wirkt: */
    display: inline-block;
    text-decoration: none; /* entfernt den standardmäßigen Unterstrich */
}

.btn-orange span {
    font-size: calc(16px - 0.1vw);
    display: inline-block;
    width: 100%;
}

.btn-orange:hover {
    color: #000;
}

.btn-orange.get-in-touch {
    display: block;
    margin: 20px auto;
}

.hero-section .buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 40px;
}


.hero-section .buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Contact Section */
.contact-section {
    padding: 50px 20px;
    background-color: #e0e0e0;
    text-align: center;
}

.contact-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
}

.contact-section form {
    display: inline-block;
    width: 100%;
    max-width: clamp(300px, 80%, 400px); /* Dynamische Anpassung */
    margin: 0 auto;
}

.contact-section input, 
.contact-section textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    border-radius: 4px;
}

.contact-section textarea {
    min-height: 120px; /* Verbesserte Lesbarkeit */
    resize: vertical;
}

.contact-section button {
    background-color: #000;
    color: #fff;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.contact-section button:hover {
    background-color: #333;
}

/* Responsive Anpassungen */
@media (max-width: 480px) {
    .contact-section form {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
    }

    .contact-section input, 
    .contact-section textarea {
        width: 100%;
        margin: 8px 0;
    }

    .contact-section button {
        width: 100%;
        max-width: 250px;
        margin: 10px auto;
    }
}


/* Utility Classes */
.centered-text {
    background-color: #e0e0e0;
    text-align: center;
    padding: 50px;
}
.logo-link {
    cursor: pointer;
    transition: all 0.3s ease;
}
.logo-link:hover {
    filter: brightness(0.8);
}

/* Preview Section */
.preview-section {
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.preview-section h2 {
    font-size: 28px;
    text-align: center;
    color: #000;
    margin-bottom: 30px;
}

.preview-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.preview-card {
    position: relative;
    width: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

.preview-card:hover .preview-icon {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.preview-card {
    position: relative;
    width: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center; /* Zentriert alle Inline-Elemente innerhalb der Karte */
}

/* Falls Du lieber nur das figcaption ansprechen möchtest */
.preview-card figcaption {
    text-align: center;
    margin-top: 15px; /* Abstand zum Symbol, anpassen nach Bedarf */
}

/* Styling der Symbolbeschreibung (Link) */
.preview-description {
    display: block;       /* Macht den Link zu einem Block-Element */
    font-size: 20px;      /* Vergrößert den Text */
    text-decoration: none;/* Entfernt den Unterstrich */
    color: #000;          /* Schriftfarbe, hier schwarz – anpassbar */
}

.preview-card:hover .preview-description {
    color: #FF5722;
    transition: color 0.3s ease;
}




/* Hidden Text Section */
.hidden-text-section {
    position: relative;
    display: none;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    max-width: 800px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hidden-text-section.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.hidden-text-section h3 {
    font-size: 24px;
    color: #FF5722;
    margin-bottom: 10px;
}

.hidden-text-section p {
    font-size: 20px;
    color: #555;
    margin-bottom: 50px;
    text-align: left;
}

.hidden-text-section a {
    display: inline-block;
    background-color: #FF5722;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.hidden-text-section a:hover {
    background-color: #FF3300;
}

/* Tiles Section */
.tiles-section {
    padding: 40px 15px; /* Reduziertes Padding */
    background-color: #f0f0f0;
    text-align: center;
}

.tile-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px; /* Enger Abstand zwischen Karten */
    justify-items: center;
    align-items: stretch;
}

.tile {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 100%; /* Dynamische Breite */
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tile img {
    width: 100%;
    height: auto; /* Beibehaltung des Bildverhältnisses */
}

.tile:hover {
    transform: translateY(-5px); /* Geringerer Hover-Effekt */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.tile h3 {
    font-size: 18px;
    margin: 10px 0; /* Weniger Abstand über/unter der Überschrift */
    line-height: 1.2;
}

.tile p {
    font-size: 14px;
    color: #555;
    padding: 0 10px; /* Weniger Innenabstand */
    margin-bottom: 10px; /* Weniger Abstand unter dem Text */
}

.tile a {
    display: inline-block;
    background-color: #FF5722;
    color: #fff;
    padding: 8px 15px; /* Kleinere Knöpfe */
    margin: 10px auto; /* Weniger Abstand über/unter den Buttons */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.tile a:hover {
    color: #000;
    background-color: #e64a19;
}

/* Responsiveness */
@media (max-width: 768px) {
    .tiles-section {
        padding: 30px 10px; /* Weniger Padding für mobile Geräte */
    }

    .tile-container {
        gap: 10px; /* Noch engerer Abstand bei kleineren Bildschirmen */
    }

    .tile h3 {
        font-size: 16px; /* Kleinere Schriftgröße */
    }

    .tile p {
        font-size: 13px;
    }

    .tile a {
        padding: 6px 12px; /* Kleinere Knöpfe */
    }
}

@media (max-width: 480px) {
    .tile h3 {
        font-size: 14px;
    }

    .tile p {
        font-size: 12px;
    }

    .tile a {
        padding: 5px 10px;
    }
}




/* Additional Info */
.additional-info {
    margin: 40px auto;
    padding: 30px 20px;
    background-color: #fff;
    text-align: center;
    font-size: 18px;
    max-width: 650px;
    border-radius: 10px;
    color: #000;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Steps Section */
.steps-container {
    display: flex;
    flex-direction: column;
    background-color: #f3f3f3;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f3f3f3;
    padding: 20px;
}

.step img {
    width: 150px;
    height: auto;
    border-radius: 8px;
    margin: 0 20px;
}

.step-content {
    max-width: 800px;
    text-align: justify;
    line-height: 1.6;
}

.step h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
    color: #000000;
}

.step p {
    font-size: 20px;
    color: #000000;
}

/* Advanced Step Styles */
.step-image img {
    border-radius: 50%;
    border: 0px solid #f3f3f3;
    object-fit: cover;
}


.step3, .step4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #d1d0d0;
    padding: 20px;
}

/* Heading Section */
.heading-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 2em;
    color: #333;
}

.heading {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    padding: 20px;
}

.heading-content {
    text-align: center;
}

.heading h3 {
    font-size: 1.2em;
    margin: 20px 0;
    color: #333;
}
.heading h4 {
    font-size: 1.2em;
    margin: 20px 0;
    color: #333;
}

.heading a {
    font-size: 20px;
    margin: 20px 0;
    color: #333;
}

/* Intro Section */
.intro-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #e0e0e0;
    font-size: 18px;
}


.intro-section img {
    max-width: 150px;
    margin-bottom: 20px;
}

.intro-section .text {
    max-width: 600px;
    margin: 0 auto;
}

/* Intro Section Kontaktseite*/
.intro-section2, .content-section2 {
    padding: 50px 20px;
    text-align: center;
}

.intro-section2 {
    background-color: #333;
    color: #fff;
}

.intro-section2 img {
    max-width: 150px;
    margin-bottom: 20px;
}

.intro-section2 .text {
    max-width: 600px;
    margin: 0 auto;
}

/* Imprint Section */
.imprint-section {
    padding: 50px 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.imprint-section div {
    display: inline-block;
    max-width: 600px;
    width: 100%;
    text-align: left;
}
/* Privacy Section */
.privacy-section {
    padding: 50px 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.privacy-section div {
    display: inline-block;
    max-width: 800px;
    width: 100%;
    text-align: left;
}

/* Content Section */
.content-section {
    font-size: 18px;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
    background-color: #333;
    color: #fff;
}

.content-section:nth-child(even) {
    background-color: #e0e0e0;
    color: #000;
}

.content-section img {
    max-width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

/* Content Section 2 */
.content-section2 {
    padding: 50px 20px;
    display: flex;
    flex-direction: column; /* Stapelt die Elemente vertikal */
    align-items: center; /* Zentriert den Inhalt horizontal */
    text-align: center;
    background-color: #e0e0e0;
    color: #000;
}

/* Überschrift zentriert und weiter oben platzieren */
#partner_heading {
    margin-bottom: 30px; /* Abstand zwischen Überschrift und Logo */
    font-size: 24px;
    font-weight: bold;
}

/* Klickbares Logo */
.content-section2 a {
    display: inline-block;
}

.partner-logo {
    max-width: 80px; /* Deutlich kleiner */
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

/* Logo leicht vergrößern, wenn mit der Maus darübergefahren wird */
.content-section2 a:hover .partner-logo {
    transform: scale(1.1);
}

/* Standard-Link */
.hover-link {
    color: inherit; /* Normale Textfarbe */
    text-decoration: none; /* Kein Unterstrich */
    transition: color 0.2s ease-in-out;
}

/* Hover-Effekt */
.hover-link:hover {
    color: #FF6600;
}


.text {
    max-width: 600px;
    margin: 0 20px;
    text-align: center;
}

.text-left {
    text-align: left;
}

/* New Section */
.new-section {
    padding: 50px 20px;
    background-color: #666666;
    color: #fff;
    text-align: center;
}
.new-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.new-section ul {
    list-style: none;
    padding: 0;
}
.new-section ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.new-section ul li img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
}
.new-section ul li a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}
.new-section ul li p {
    font-size: 18px;
    line-height: 1.5;
} 

/* Footer Styling */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 55px;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #FF6600;
}
/* ========================= */
/* RESPONSIVE DESIGN         */
/* ========================= */

/* Anpassungen für Tablets & größere Mobilgeräte */
@media (max-width: 1200px) {
    .hero-background {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden; /* Kein Überlaufen nach links/rechts */
    }

    .hero-background img {
        width: 100%;
        max-width: 600px; /* Begrenzung der Bildbreite */
        height: auto;
        object-fit: contain; /* Behält das Seitenverhältnis bei */
    }
}

/* Anpassungen für Mobilgeräte */
@media (max-width: 768px) {
    /* ========================= */
    /* NAVIGATION (Menü untereinander) */
    /* ========================= */
    header nav {
        flex-direction: column;
        align-items: center;
    }

    header nav a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    @media (max-width: 768px) {
        /* ========================= */
        /* HERO-SECTION OPTIMIERUNG */
        /* ========================= */
        .hero-section {
            position: relative;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            text-align: center;
            padding: 0;
            margin: 0;
        }
    
        /* Bilder bleiben nebeneinander, kein zusätzlicher Abstand */
        .hero-background {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: auto;
            overflow: hidden;
            margin: 0;
            padding: 0;
        }
        @media (max-width: 768px) {
            /* Überschreibt die feste Positionierung der Icons */
            .hero-logo,
            .hero-circle {
              position: static; /* oder relative, je nachdem, wie du sie im normalen Dokumentfluss haben möchtest */
              top: auto;
              left: auto;
              right: auto;
              transform: none;
            }

            .hero-circle2 {
                position: static; /* oder relative, je nachdem, wie du sie im normalen Dokumentfluss haben möchtest */
                top: auto;
                left: auto;
                right: auto;
                transform: none;
              }
            
            /* Hier deine weiteren Anpassungen für mobile Geräte, z. B.: */
            .hero-logo {
              margin: 0 auto 10px auto;
              width: auto;
              height: 35px;
              margin-top: 30px;
              background: transparent;
            }
          
            .hero-circle {
              width: 70px;
              height: 70px;
              font-size: 12px;
              margin: 5px 0;
            }

            .hero-circle2 {
                width: 70px;
                height: 70px;
                font-size: 12px;
                margin: 5px 0;
              }
          }
          
        @media (max-width: 768px) {
            /* ========================= */
            /* HERO-SECTION BILD-ANPASSUNG */
            /* ========================= */
            .hero-background {
                display: flex;
                justify-content: center;
                align-items: flex-start; /* Bilder oben bündig ausrichten */
                width: 100%;
                height: auto;
                overflow: hidden;
                margin: 0;
                padding: 0;
            }
        
            .hero-background img {
                width: 50%;
                height: 100%; /* Damit beide Bilder exakt gleich hoch sind */
                object-fit: cover;
                margin: 0;
                padding: 0;
            }
        
            /* Leichtes Hochziehen des rechten Bildes */
            .hero-background img:last-child {
                transform: translateY(-5px); /* Bild um 5px nach oben verschieben */
                height: 102%; /* Bild minimal größer machen, um die Lücke unten zu schließen */
            }
        
            /* Kein Abstand zwischen Navigation und den Bildern */
            .hero-section {
                padding: 0;
                margin: 0;
            }
        
            .hero-section::before {
                content: "";
                display: block;
                height: 0;
                margin: 0;
                padding: 0;
            }
        }
        
    
        /* Kein Abstand nach oben zur Navigation */
        .hero-section::before {
            content: "";
            display: block;
            height: 0;
            margin: 0;
            padding: 0;
        }
    
        /* Kein Abstand nach oben zum ersten Element */
        .hero-content {
            display: flex;
            flex-direction: column; /* Alles untereinander */
            align-items: center;
            justify-content: center;
            width: 100%;
            position: relative;
            z-index: 10;
            margin: 0; /* Entfernt den großen Abstand */
            padding: 0;
        }
    
        /* BMP-Logo */
        .hero-logo {
            margin:0 auto 10px auto; /* Zentriert und kleiner Abstand */
            width: auto;
            height: 35px;
            margin-top: 30px; /* Kleiner Abstand, damit es nicht zu eng ist */
            background: transparent;
        }
    
        /* Überschrift ohne großen Abstand */
        .hero-section h2 {
            font-size: 26px;
            text-align: center;
            margin: 5px 0; /* Entfernt unnötigen Abstand */
            padding: 0;
        }
    
        /* Lilane Kreis */
        .hero-circle {
            width: 70px;
            height: 70px;
            font-size: 12px;
            margin-bottom: 20px;
            margin: 5px 0; /* Kein großer Abstand */
        }

        .hero-circle2 {
            width: 70px;
            height: 70px;
            font-size: 12px;
            margin-bottom: 20px;
            margin: 5px 0; /* Kein großer Abstand */
        }
    }
    

    /* ========================= */
    /* BMP-LOGO, ÜBERSCHRIFT & LILANER KREIS UNTEREINANDER */
    /* ========================= */
    .hero-content {
        display: flex;
        flex-direction: column; /* Alles untereinander */
        align-items: center;
        justify-content: center;
        width: 100%;
        position: relative;
        z-index: 10;
        margin-top: 10px; /* Direkt unter den Bildern */
    }

    .hero-logo {
        width: auto;
        height: 35px;
        margin-bottom: 10px;
        background: transparent;
    }

    .hero-section h2 {
        font-size: 26px;
        text-align: center;
        margin-bottom: 15px;
    }

    .hero-circle {
        width: 70px;
        height: 70px;
        font-size: 12px;
        margin-top: 10px;
    }

    .hero-circle2 {
        width: 70px;
        height: 70px;
        font-size: 12px;
        margin-top: 10px;
    }

    /* ========================= */
    /* FOOTER GESTAPELT */
    /* ========================= */
    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
        font-size: 14px;
    }

    /* ========================= */
    /* SPRACHBUTTON ZENTRIEREN */
    /* ========================= */
    .language-switch {
        display: block;
        margin: 10px auto;
        text-align: center;
        font-size: 16px;
        padding: 5px 12px;
        border: 2px solid #fff;
        background: black;
        color: white;
    }

    .language-switch:hover {
        background: white;
        color: black;
    }

    /* ========================= */
    /* ALLGEMEINE TEXT-GRÖSSEN */
    /* ========================= */
    body {
        font-size: 18px;
    }

    .hidden-text-section p {
        font-size: 18px;
    }

    /* ========================= */
    /* ICONS & BUTTONS ANPASSEN */
    /* ========================= */
    .preview-icon {
        width: 80px;
        height: 80px;
    }

    .btn-orange {
        width: 140px;
        height: 40px;
        font-size: 14px;
    }

    /* ========================= */
    /* KACHELN & INHALT */
    /* ========================= */
    .tile-container {
        flex-direction: column;
    }

    .sales-arguments {
        flex-direction: column;
        gap: 15px;
    }

    .additional-info {
        margin: 30px;
    }
}

@media (max-width: 768px) {
    /* Über uns - Mobile Layout Anpassung */
    .about-section {
        display: flex;
        flex-direction: column; /* Stapelt Elemente untereinander */
        align-items: center; /* Zentriert alles */
        text-align: center;
        padding: 20px;
    }

    .about-section img {
        width: 100px; /* Einheitliche Größe für die Icons */
        height: auto;
        margin-bottom: 10px; /* Kleiner Abstand unter dem Logo */
    }

    .about-section h2 {
        font-size: 22px; /* Größer für bessere Lesbarkeit */
        margin-bottom: 10px;
    }

    .about-section p {
        font-size: 16px;
        max-width: 85%; /* Begrenzung der Breite für bessere Lesbarkeit */
    }
}



