/* 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: #2eabc5;
    border-radius: 5px;
}

header nav ul li a:hover {
    background-color: #2594aa;
}

main {
    padding: 0;
    margin: 0;
}

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

section.hero {
    background: rgb(255,230,33);
    background: linear-gradient(180deg, rgba(255,230,33,1) 0%, rgba(255,245,165,1) 100%);
    color: #4e7177;
    padding: 40px 20px 100px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 613px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

section.hero .hero-content {
    max-width: 50%;
    margin-left: 60px;
    flex: 1;
}

section.hero .hero-image {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    flex: 1;
    padding-top: 42px;
}

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

section.hero p {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 30px;
}

section.hero .cta-button {
    background-color: #2eabc5;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    display: inline-block;
    margin-top: 20px;
}

section.hero .cta-button:hover {
    background-color: #2594aa;
}

section.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-top: 80px;
}

section.features .feature {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
    display: none;
    transition: box-shadow 0.3s ease;
}

section.features .feature.visible {
    display: block;
}

section.features .feature:hover {
    box-shadow: 0 8px 11px rgba(0, 0, 0, 0.3);
}

section.features .feature h2 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #4e7177;
}

section.features .feature p {
    line-height: 1.6;
    color: #4e7177;
    font-size: 16px;
    text-align: left;
}

section.features .feature-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 15px;
}

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

section.features .load-more:hover {
    background-color: #2594aa;
}

section.steps {
    background-color: rgb(255 230 33 / 70%);
    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;
    color: #4e7177;
}

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 {
    
    align-items: center;
    margin-bottom: 15px;
    text-align: left;
}

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

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

section.steps .cta-button {
    background-color: #2eabc5;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    display: inline-block;
    margin-top: 20px;
}

section.steps .cta-button:hover {
    background-color: #e0f7fa;
}

section.cta {
    background-color: #fff;
    color: #4e7177;
    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-content p {
    margin-bottom: 30px;
    font-size: 20px;
}

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

section.cta .cta-button:hover {
    background-color: #2594aa;
}

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: #f6f7fb;
    margin-bottom: 10px;
    border-radius: 5px;
}

section.faq .accordion-item-header {
    padding: 15px;
    cursor: pointer;
    font-weight: normal;
    font-size: 20px;
    color: #4e7177;
}

section.faq .accordion-item-body {
    display: none;
    padding: 15px;
    font-size: 20px;
    color: #4e7177;
}

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

footer {
    background-color: #ebf0f7;
    color: #4e7177;
    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;
    text-align: left;
}

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: #4e7177;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    section.hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px;
        height: 800px;
    }

    section.hero .hero-content,
    section.hero .hero-image {
        max-width: 100%;
        margin-left: 0;
        padding-top: 20px;
    }

    section.hero img {
        max-width: 300px;
        height: auto;
    }

    section.hero h1 {
        font-size: 2em;
    }

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

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

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

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

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

    section.steps .step-number {
        width: 50px;
        height: 50px;
    }

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

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

    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: 1.2em;
        padding: 15px 30px;
    }

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

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

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