@font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Roboto';
    src: url('../assets/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 600;
}

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

body h1 {
    font-weight: 600;
    font-size: 1.5rem;
}

header {
    background-color: #333333;
    color: #fffacd;
    padding: 10px 0;
    text-align: center;
}

table {
    width: 100%;
}

@media (max-width: 599px) {
    body {
        font-family: 'Roboto', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #ffffff;
    }

    button {
        background-color: #333333;
        color: #fffacd;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding: 30px 40px;
        text-align: center;
        z-index: 1001;
    }
 
    .about-section {
        position: relative;
        height: auto;
        background-color: #ffffff;
        display: flex; /* Flexbox aktivieren */
        flex-direction: column; /* Überschrift und Text vertikal anordnen */
        justify-content: flex-start; /* Elemente oben ausrichten */
        align-items: flex-start; /* Elemente linksbündig ausrichten */
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .about-text {
        font-family: 'Roboto', sans-serif;
        font-weight: 100;
        color: #333333;
        font-size: 1.2rem;
        text-align: left;
        margin-top:10px; /* Abstand zwischen den Absätzen */
    }

    .about-text-image {
        font-family: 'Roboto', sans-serif;
        font-weight: 100;
        color: #333333;
        font-size: 1.2rem;
        text-align: left;
        margin-top:10px; /* Abstand zwischen den Absätzen */
        margin-right: 150px;
    }
    
    .about-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #333333;
        text-align: left;
        margin: 20px 0 10px 0; /* Abstand zur Überschrift */
    }
    
    .about-image {
        position: absolute; /* Bild absolut positionieren */
        bottom: -20px; /* Abstand vom unteren Rand der Section */
        right: 0px; /* Abstand vom rechten Rand der Section */
        width: 150px; /* Bildbreite */
        height: auto;
        border-radius: 10px; /* Optional: abgerundete Ecken */
    }

    .area-section {
        min-height: 80vh;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .area-text {
        font-family: 'Roboto', sans-serif;
        font-weight: 100;
        color: #333333;
        font-size: 1.2rem;
        text-align: left;
        padding: 0px 40px;
    }

    .area-section img {
        max-width: 100%;
    }

    button:hover {
        background-color: #555555;
    }

    .close-btn {
        font-size: 50px;
        cursor: pointer;
        color: #fffacd;
        padding: 10px;
    }

    .contact-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #3d8d7a;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 20px;
        border-radius: 25px;
        box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.3);
    }

    .contact-container table tr{
        display:flex;
        align-items: center;
        justify-content: center;       
    }

    .contact-container table tr td{
        display:flex;
        align-items: left;
        justify-content: center;
        width: 45vw;
    }

    .contact-container table tr td a{
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        font-size: 5vw;
        color: #fffacd;
        text-decoration: none;
        padding-bottom: 10px;
        padding-top: 10px;
        margin-left: -25vw;
    }

    .contact-container table tr td a img{
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        font-size: 4vw;
        color: #fffacd;
        text-decoration: none;
        padding-bottom: 10px;
        padding-top: 10px;
        margin-left: 20vw;

    }

    .contact-container table tr td img{
        width: 10vh;
        height: auto;
    }

    .menu-icon{
        font-weight: 600;
        font-size: 2rem;
        text-decoration: none;
        z-index: 1000;
        color: #fffacd;
    }

    .menu-icon:hover {
        font-weight: 600;
        font-size: 2rem;
        color: #3d8d7a;
        opacity: 1;
    }
    .menu-icon.fixed {
        position: fixed;
        font-size: 3rem;
        top: 10px;
        right: 10px;
        color: #333333;
        opacity: 0.3;

    }

    .menu-icon.fixed:hover {
        position: fixed;
        bottom: 10px;
        right: 10px;
        color: #fffacd;
        opacity: 1;
        -webkit-transition-duration: 0.2s; /* Safari */
        transition-duration: 0.5s;
    }

    .contact-info {
        text-align: center;
        font-weight: 600;
        font-size: 1.5rem;
        text-decoration: none;
    }

    .contact-info-text{
        text-align: center;
        font-weight: 600;
        font-size: 0rem;
        text-decoration: none;
        visibility: hidden;
    }

    .contact-info-text img{
        width: 0px;
        visibility: hidden;
    }

    .contact-info img {
        width: 6vw;
        height: auto;
    }

    .contact-notice {
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        color: #333333;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 1.5rem;
    }

    .contact-section {
        display: flex;
        justify-content: flex-start;
        margin-left: 15%;
    }

    .contact-section img {
        display:flex;
        align-items: center;
        justify-content: center;
        margin: 10px 20px;
        height: 7em;
        width: auto;
    }

    header {
        background-color: #333;
        color: #ffffff;
        padding: 5px 0;
        text-align: center;
        box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.3);
    }

    footer {
        background-color: #333;
        color: #fffacd;
        padding: 10px 0;
        text-align: center;
    }

    footer a {
        font-family: 'Roboto', sans-serif;
        font-weight: 200;
        display: flex;
        flex-direction: column;
        font-size: 1rem;
        text-decoration: none;
        color: #fffacd;
    }

    .hero {
        position: relative;
        height: calc(100vh - 80px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
        overflow: hidden;
        background: linear-gradient(to bottom, rgba(65, 216, 115, 0) 70%, #ffffff 100%);
    }

    .slideshow {
    filter: brightness(0.2);
    }

    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        flex-grow: 1;
    }

    .hero-header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-subtext {
        text-align: left;
        width: 100%;
        padding: 0 20px;
        font-size: 1.5rem;
        color: #333333;
        margin-bottom: 20px;
    }

    .hero-text {
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
        font-size: 1.3rem;
        color: #fffacd;
    }

    .logo {
        position: absolute;
        margin-top: 30px;
        max-width: 400px;
        height: auto;
        box-sizing: border-box;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background-color: #333333;
        color: #fffacd;
        z-index: 1000;
        transition: right 0.3s ease;
		box-shadow: 0 0 15px 3px #151515;
    }

    .menu-header {
        display: flex;
        justify-content: flex-end;
        padding: 10px;
    }

    .menu-nav {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .menu-nav a {
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        font-size: 1.5rem;
        color: #fffacd;
        text-decoration: none;
        margin-top: 1.5rem;;
        padding: 10px 0;
    }

    .menu.open {
        right: 0;
    }

    .second-section {
        min-height: 150vh;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0 20px;
        padding-bottom: 30px;
    }

    .section-header {
        position: relative;
        background: #3d8d7a;
        color: #fffacd;
        font-weight: 600;
        font-size: 1.2rem;
        padding: 0px 40px;
        border-radius: 50px;
        text-align: left;
        margin-top: 40px;
        box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.3);
    
    }

    .section-header-contact {
        background-color: #fffacd;
        color: #333333;
        font-weight: 600;
        font-size: 1.2rem;
        padding: 0px 40px;
        border-radius: 50px;
        text-align: center;
        box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.3);
    }

    .section-subtext {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333333;
        text-align: left;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .service-box {
        border: 5px solid #3d8d7a;
        border-radius: 30px;
        padding: 20px;
        text-align: left;
        width: calc(100% - 60px);
        margin: 10px auto;
        box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.3);
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .service-description {
        font-family: 'Roboto', sans-serif;
        color: #333333;
        font-size: 1.2rem;
        margin-top: 10px;
    }

    .install-description {
        font-family: 'Roboto', sans-serif;
        color: #333333;
        font-size: 1.2rem;
        margin-top: 10px;
    }

    .service-icon {
        background-color: #3d8d7a;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0 0 0;
    }

    .service-icon img {
        width: 30px;
        height: 30px;
    }

    .service-icon-container {
        display: flex;
        justify-content: flex-start;
    }

    .service-title {
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        color: #333333;
        font-size: 1.5rem;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid-1x3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-subtext {
        font-family: 'Roboto', sans-serif;
        font-weight: 100;
        color: #333333;
        font-size: 1.2rem;
        text-align: left;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .services-title {
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        color: #333333;
        font-size: 2rem;
        text-align: left;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .slide {
        min-width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slideshow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        transition: transform 1s ease-in-out;
        z-index: -1;
    }

    .text {
        font-family: 'Roboto', sans-serif;
        font-weight: 200;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        font-size: 1.5rem;
        text-decoration: none;  
    }

    .text a {
        text-decoration: none;
        color: #fffacd;
    }

    .third-section {
        position: relative;
        background: #3d8d7a;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 20px;
        border-radius: 25px;
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
        opacity: 1;
    }

    .third-section-title {
        font-family: 'Roboto', sans-serif;
        font-size: 2rem;
        color: #fffacd;
        font-weight: 600;
        margin-left: 30px;
        margin-right: 30px;
    }

    .callHelp {
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        font-size: 1.2rem;
        display: inline-block;
        background-color: #333333;
        color: #fffacd;
        text-decoration: none;
        padding: 20px 20px;
        margin-bottom: 20px;
        border-radius: 50px;
        -webkit-transition-duration: 0.2s; /* Safari */
        transition-duration: 0.2s;
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    }

    .callHelp:hover {
        background-color: #c9ffc9;
        
        color: #333333;
        box-shadow: 0 0px 0px 0 rgba(0,0,0,0.2), 0 0px 0px 0 rgba(0,0,0,0.19);
    }

    .faqdivide {
        height: 10vh;
        background: linear-gradient(to top, #3d8d7a, #ffffff);
        margin-bottom: 0px;
    }

    .faq {
        height: auto;
        font-family: 'Roboto', sans-serif;
        background: #3d8d7a;
        color: #fffacd;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .faq-title {
        font-family: 'Roboto', sans-serif;
        font-size: 1.5rem;
        color: #fffacd;

    }

    .faq-item {
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;
        color: #fffacd;
    }

    .faq-answer {
        display: none;
        transition: max-height 5s ease-out;
        overflow: hidden;
        max-height: 0;
        color: #fffacd;
    }

    .faq-answer.expanded {
        display: block;
        text-align: left;
        max-height: 1000px;
        padding-left: 20px;
        padding-right: 20px;
        
    }

    .imprint-gradient {
        position: absolute;
        padding: 0px;
        height: 50vh;
        width: 100%;
        Background: linear-gradient(to bottom, #3d8d7a, #ffffff);
        opacity: 0.7;
    }

    .imprint-text {
        font-family: 'Roboto', sans-serif;
        color: #333333;
        font-weight: 200;
        font-size: 1rem;
        padding:5vw;
        position: relative;
    }

    .whyus{
        font-family: 'Roboto', sans-serif;
        font-weight: 100;
        font-size: 1.2rem;
        height: auto;
        background-color: #ffffff;
        max-width: 100vw;;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 60px;
    }
    
    .WU-icon{
        text-align: center;
        width: 15vw;
    }
    
    .WU-text{
        width: calc(100vw-15vw);
    }
    
    .whyus img{
        max-width: 20vw;
    }
}

@media (min-width: 600px) {
    .about-section {
        height: auto;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0 20px;
        margin-bottom: 60px;
    }

    .about-table{
        min-height: 300vh;
    }

    .about-text {
        font-family: 'Roboto', sans-serif;
        font-weight: 100;
        color: #333333;
        font-size: 1.5rem;
        margin: 20px;
        margin-bottom: 0px;
    }

    .about-text-image {
        font-family: 'Roboto', sans-serif;
        font-weight: 100;
        color: #333333;
        font-size: 1.5rem;
        margin: 20px;
        margin-bottom: 0px;
    }

    .about-title {
        font-weight: 600;
        color: #333333;
        text-align: left;
        margin-top: 30px;
        margin-bottom: 0px;
    }

    .area-section {
        min-height: 90vh;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

    }

    .area-text {
        font-family: 'Roboto', sans-serif;
        font-weight: 100;
        color: #333333;
        font-size: 1.5rem;
        text-align: left;
        padding: 0px 40px;
    }

    .area-section img {
        max-width: 100%;
    }

    body {
        font-family: 'Roboto', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #ffffff;
    }

    button {
        background-color: #333333;
        color: #fffacd;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding: 30px 40px;
        text-align: center;
        z-index: 1001;
    }

    button:hover {
        background-color: #555555;
    }

    .close-btn {
        font-size: 50px;
        cursor: pointer;
        color: #fffacd;
        padding: 10px;
    }

    .contact-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #3d8d7a;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 20px;
        border-radius: 25px;
        box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.3);
    }

    .contact-container table {
        display:flex;
        align-items: center;
        justify-content: center;  
    }

    .contact-container table tr{
        display:flex;
        align-items: center;
        justify-content: center;       
    }

    .contact-container table tr td{
        display:flex;
        align-items: center;
        justify-content: center;
        width: 35vw;
    }

    .contact-container table tr td a{
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        font-size: 3.7vw;
        color: #fffacd;
        text-decoration: none;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .contact-container table tr td img{
        width: 10vh;
        height: auto;
    }

    .contact-info a img{
        width: 0px;
    }

    .contact-info-text{
        font-weight: 600;
        font-size: 3vh;
        display: column;
        justify-content: center;
        align-items: center;
    }

    .contact-info-text a{
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        color: #fffacd;
        text-decoration: none;
        position: relative;
    }

    .contact-info-text img{
       max-height: 3vh;
    }

    .contact-info img {
        width: 6vw;
        height: auto;
    }

    .contact-notice {
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        color: #333333;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 1.5rem;
    }

    .contact-section {
        display: flex;
        justify-content: flex-start;
        margin-left: 15%;
    }

    .contact-section img {
        display:flex;
        align-items: center;
        justify-content: center;
        margin: 10px 20px;
        height: 7em;
        width: auto;
    }

    header {
        background-color: #333;
        color: #fffacd;
        text-align: center;
        box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.3);
        max-height: 4vh;
        position: relative;
    }

    footer {
        background-color: #333;
        color: #fffacd;
        padding: 10px 0;
        text-align: center;
    }

    footer a {
        font-family: 'Roboto', sans-serif;
        font-weight: 200;
        display: flex;
        flex-direction: column;
        font-size: 1rem;
        text-decoration: none;
        color: #fffacd;
    }

    .hero {
        position: relative;
        height: calc(60vh);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
        overflow: hidden;
        background: linear-gradient(to bottom, rgba(65, 216, 115, 0) 70%, #ffffff 100%);
    }

    .slideshow {
    filter: brightness(0.3);
    }

    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        flex-grow: 1;
    }

    .hero-header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 20px;
    }

    .hero-subtext {
        text-align: left;
        width: 100%;
        padding: 0 20px;
        font-size: 1.5rem;
        color: #333333;
        margin-bottom: 20px;
    }

    .hero-text {
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
        font-size: 2rem;
        color: #fffacd;
    }

    .logo {
        max-width: 150px;
        height: auto;
        box-sizing: border-box;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background-color: #333333;
        color: #fffacd;
        z-index: 1000;
        transition: right 0.3s ease;
		box-shadow: 0 0 15px 3px #151515;
        visibility: hidden;
    }

    .menu-header {
        display: flex;
        justify-content: flex-end;
        padding: 10px;
        visibility: hidden;
    }

    .menu-icon {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 60px;
        cursor: pointer;
        z-index: 1000;
        color: #3d8d7a;
        visibility: hidden;
    }

    .menu-icon.fixed {
        position: fixed;
        top: 10px;
        right: 10px;
        color: #333333;
        opacity: 0.3;
        -webkit-transition-duration: 0.2s; /* Safari */
        transition-duration: 0.2s;
        visibility: hidden;
    }

    .menu-icon.fixed:hover {
        position: fixed;
        top: 10px;
        right: 10px;
        color: #3d8d7a;
        opacity: 1;
        visibility: hidden;
    }

    .menu-nav {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .menu-nav a {
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        font-size: 1.5rem;
        color: #fffacd;
        text-decoration: none;
        margin-top: 1.5rem;;
        padding: 10px 0;
    }

    .menu.open {
        right: 0;
    }

    .second-section {
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0 20px;
        padding-bottom: 30px;
    }
    .section-header {
        position: relative;
        background: #3d8d7a;
        color: #fffacd;
        font-weight: 600;
        font-size: 1.2rem;
        padding: 0px 40px;
        border-radius: 50px;
        text-align: left; /* Text links ausrichten */
        margin-left: 0; /* Linksbündig */
        margin-right: auto; /* Rechtsbündig */
        box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.3);
    }

    .section-header-contact {
        background-color: #fffacd;
        color: #333333;
        font-weight: 600;
        font-size: 1.2rem;
        padding: 0px 40px;
        border-radius: 50px;
        text-align: center;
        box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.3);
    }

    .section-subtext {
        font-size: 1.2rem;
        font-weight: 600;
        color: #333333;
        text-align: left;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .service-box {
        border: 5px solid #3d8d7a;
        border-radius: 30px;
        padding: 20px;
        text-align: left;
        width: 20vw;
        margin: 10px auto;
        box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.3);
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .service-description {
        font-family: 'Roboto', sans-serif;
        color: #333333;
        font-size: 1.4rem;
        margin-top: 10px;
    }

    .install-description {
        font-family: 'Roboto', sans-serif;
        color: #333333;
        font-size:1.2rem;
        margin-top: 10px;
    }

    .service-icon {
        background-color: #3d8d7a;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0 0 0;
    }

    .service-icon img {
        width: 30px;
        height: 30px;
    }

    .service-icon-container {
        display: flex;
        justify-content: flex-start;
    }

    .service-title {
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        color: #333333;
        font-size: 1.2rem;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr; /* Zwei Spalten mit gleicher Breite */
        grid-template-rows: 1fr 1fr; /* Zwei Reihen mit gleicher Höhe */
        gap: 20px;
        margin-top: 10px;
    }

    .installation-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Zwei Spalten mit gleicher Breite */
        grid-template-rows: 1fr 1fr; /* Zwei Reihen mit gleicher Höhe */
        gap: 20px;
        margin-top: 10px;
    }

    .services-subtext {
        font-family: 'Roboto', sans-serif;
        font-weight: 100;
        color: #333333;
        font-size: 1.2rem;
        text-align: left;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .services-title {
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        color: #333333;
        font-size: 1.2rem;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .slide {
        min-width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slideshow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        transition: transform 1s ease-in-out;
        z-index: -1;
    }

    .text {
        font-family: 'Roboto', sans-serif;
        font-weight: 200;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        font-size: 1.5rem;
        text-decoration: none;  
    }

    .text a {
        text-decoration: none;
        color: #fffacd;
    }

    .third-section {
        position: relative;
        background: #3d8d7a;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 20px;
        border-radius: 25px;
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
        opacity: 1;
    }

    .third-section-title {
        font-family: 'Roboto', sans-serif;
        font-size: 2rem;
        color: #fffacd;
        font-weight: 600;
        margin-left: 30px;
        margin-right: 30px;
    }

    .callHelp {
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        font-size: 1.5rem;
        display: inline-block;
        background-color: #333333;
        color: #fffacd;
        text-decoration: none;
        padding: 20px 20px;
        margin-bottom: 20px;
        border-radius: 50px;
        -webkit-transition-duration: 0.2s; /* Safari */
        transition-duration: 0.2s;
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    }

    .callHelp:hover {
        background-color: #c9ffc9;
        
        color: #333333;
        box-shadow: 0 0px 0px 0 rgba(0,0,0,0.2), 0 0px 0px 0 rgba(0,0,0,0.19);
    }

    .faq {
        height: auto;
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(to top, #3d8d7a, #ffffff);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .faq-title {
        font-family: 'Roboto', sans-serif;
        padding-top: 15vh;
        font-size: 1.5rem;
        color: #333333;

    }

    .faq-item {
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;
        color: #333333;
    }

    .faq-answer {
        display: none;
        transition: max-height 2s ease-out;
        overflow: hidden;
        max-height: 0;
    }

    .faq-answer.expanded {
        display: block;
        max-height: 1000px;
    }

    .imprint-gradient {
        position: absolute;
        padding: 0px;
        height: 50vh;
        width: 100%;
        Background: linear-gradient(to bottom, #3d8d7a, #ffffff);
        opacity: 0.7;
    }

    .imprint-text {
        font-family: 'Roboto', sans-serif;
        color: #333333;
        font-weight: 200;
        font-size: 1rem;
        padding:5vw;
        position: relative;
    }

.about-title
.about-text
.section-header,
.section-subtext,
.services-title,
.services-subtext,
.service-box,
.service-description,
.install-description,
.service-title,
.hero-subtext,
.faq-title,
.faq-item,
.imprint-text {
    text-align: left;
    margin-left: 30px;
    margin-right: auto;
}
}
