/* Allgemeine Stile für die Home-Seite */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #fff;
    color: #333;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

header .logo img {
    max-height: 50px;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    display: block;
    background-color: #6EC1E4;
    border-radius: 5px;
}

header nav ul li a:hover {
    background-color: #3EA9D1;
}

main {
    padding: 0;
    margin: 0;
}

section {
    width: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
    position: relative;
}

section.hero {
    background: url('/public/images/hero-bg.png') no-repeat center center/cover;
    color: #fff;
    text-align: left;
    padding: 150px 20px 100px; /* Adjusted for spacing with fixed header */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 530px;
    width: 100%;
}

section.hero .hero-content {
    max-width: 600px;
    margin-left: 60px;
}

section.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

section.hero p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

section.hero .cta-button {
    background-color: #6EC1E4;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

section.hero .cta-button:hover {
    background-color: #3EA9D1;
}

section.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

section.features .feature {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
    display: none; /* Initially hide all features */
}

section.features .feature.visible {
    display: block; /* Display visible features */
}

section.features .feature h2 {
    margin-bottom: 15px;
}

section.features .feature p {
    font-size: 1.1em;
    line-height: 1.6;
}

section.features .load-more {
    display: block;
    background-color: #6EC1E4;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

section.steps {
    background-color: #6EC1E4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

section.steps img {
    width: 600px;
    height: 600px;
    border-radius: 10px;
}

section.steps .steps-content {
    max-width: 600px;
    text-align: center;
}

section.steps .steps-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

section.steps .step-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

section.steps .step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

section.steps .step-number {
    font-size: 2em;
    margin-right: 15px;
    background-color: #fff;
    color: #6EC1E4;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.steps .step-text {
    font-size: 1.2em;
    line-height: 1.5;
}

section.cta {
    background-color: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

section.cta .cta-content {
    max-width: 600px;
}

section.cta .cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

section.cta .cta-button {
    background-color: #6EC1E4;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

section.cta .cta-button:hover {
    background-color: #3EA9D1;
}

section.cta img {
    width: 600px;
    height: 600px;
    border-radius: 10px;
}

section.faq {
    background-color: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

section.faq img {
    width: 600px;
    height: 600px;
    border-radius: 10px;
    margin-right: 20px;
}

section.faq .faq-content {
    width: 50%;
}

section.faq .accordion {
    width: 100%;
}

section.faq .accordion-item {
    background-color: #f4f4f4;
    margin-bottom: 10px;
    border-radius: 5px;
}

section.faq .accordion-item-header {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
}

section.faq .accordion-item-body {
    display: none;
    padding: 15px;
}

section.faq .accordion-item-body p {
    margin: 0;
}

footer {
    background-color: #6EC1E4;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

footer .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    flex-wrap: wrap;
}

footer .footer-column {
    width: 23%;
    margin-bottom: 20px;
}

footer .footer-column h3 {
    margin-bottom: 10px;
}

footer .footer-column ul {
    list-style: none;
    padding: 0;
}

footer .footer-column ul li {
    margin-bottom: 5px;
}

footer .footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

footer .footer-column ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    section.hero h1 {
        font-size: 2em;
    }

    section.hero p {
        font-size: 1.2em;
    }

    section.hero .cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }

    section.features .feature {
        width: 45%;
    }

    section.steps {
        flex-direction: column;
        align-items: center;
    }

    section.steps img {
        width: 100%;
        height: auto;
        max-width: 600px;
    }

    section.cta {
        flex-direction: column;
        align-items: center;
    }

    section.cta img {
        width: 100%;
        height: auto;
        max-width: 600px;
    }

    section.faq {
        flex-direction: column;
        align-items: center;
    }

    section.faq img {
        width: 100%;
        height: auto;
        max-width: 600px;
    }

    section.faq .faq-content {
        width: 100%;
    }

    footer .footer-column {
        width: 45%;
    }
}

@media (max-width: 480px) {
    section.hero h1 {
        font-size: 1.5em;
    }

    section.hero p {
        font-size: 1em;
    }

    section.hero .cta-button {
        font-size: 0.8em;
        padding: 8px 15px;
    }

    section.features .feature {
        width: 100%;
    }

    section.steps .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }

    footer .footer-column {
        width: 100%;
    }
}
