body {
    font-family: 'Inter', sans-serif;
    background-color: #A9E2C7;
    font-family: Arial, sans-serif;
}

.top-line-container {
    display: flex;
    align-items: center;
    padding-right: 2%;
}

.top-line {
    width: 100%;
    height: 2px;
    background-color: #053F1F;
    margin-left: 25px;
}

.top-line-img {
    max-width: 100px;
    margin-left: 10px;
    padding-left: 2.5%;
}

.hero-section {
    display: flex;
    align-items: start;
    justify-content: space-evenly left;
    margin: 2% 5%;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
}

.hero-text {
    max-width: 60%;
    font-family: 'Inter', sans-serif;
}

.hero-text h1 {
    font-size: 6rem;
    margin: 0 0 10px 0;
    color: #053F1F;
    font-family: 'Inter', sans-serif;
}

.hero-text p {
    font-size: 2.5rem;
    color: #053F1F;
    margin: 0 0 10px 1%;
    font-family: 'Inter', sans-serif;
}

.hero-store img {
    width: 150px;
    height: auto;
    margin: 0 0 150px 0;
}

.top-center-line-container {
    display: flex;
    margin-top: 60px;
    margin-bottom: 60px;
}

.top-center-line {
    width: 100%;
    height: 2px;
    background-color: #053F1F;
}

.hero-image-container {
    max-width: 45%;
}

.hero-image {
    width: 90%;
    height: auto;
    display: block;
    margin-left: 50%;
}

.cta-section {
    max-width: 45%;
    text-align: center;
    background-color: #A9E2C7;
    font-family: 'Inter', sans-serif;
}

.cta-section-text {
    font-size: 3rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.playstore-badge {
    text-align: center;
}

.footer {
    background-color: #053F1F;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
}

.footer-logo {
    margin: 0 1%;
    font-size: 1.5rem;
}

.footer-logo p {
    color: #A9E2C7;
    font-family: 'Inter', sans-serif;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: end;
    padding-right: 2%;
    font-family: 'Inter', sans-serif;
}

.footer-links a {
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    color: #A9E2C7;
    font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {

    .hero-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-text {
        font-family: 'Inter', sans-serif;
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }

    /* Reihenfolge definieren */
    .hero-text>*:not(.hero-cta) {
        order: 1;
        /* Text 1 */
    }

    .hero-image-container {
        order: 2;
        /* Bild */
        max-width: 100%;
        margin: 30px 0;
        display: flex;
        justify-content: center;
    }

    .hero-cta {
        order: 3;
        /* Text 2 + Store */
        margin-top: 20px;
    }

    .hero-image {
        width: 70%;
        margin-left: 0;
    }
}