.site-title {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 50px auto;
    align-items: center;
    gap: 50px;
    color: --dark-blue;
    justify-content: center;
    background-color: #F5F5F5;
    border-radius: 20px;
    padding: 0 20px;
}

.site-title>h1{
    text-align: center;
}

.site-title>img {
    max-width: 250px;
    border-radius: 20px;
}

.sub-head {
    font-size: 20px;
    color: white;
    text-align: center;
    max-width: 1200px;
    margin: 50px auto;
}

.wrapper {
    background-color: var(--background-hell);
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: 20px;
}

.left, .right {
    display: flex;
    flex-direction: column;
    margin: 30px 30px;
    color: var(--dark-blue);
}

.left {
    padding-bottom: 75px;
    border-bottom-style: solid;
    border-color: var(--dark-blue);
}

.preis {
    margin-bottom: 10px;
}

.pak-title {
    font-size: 25px;
}

.cta {
    padding: 10px 20px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--dark-blue);
    border-radius: 10px;
}

.cta>img {
    height: 20px;
}

.sub {
    border-color: var(--primary-btn);
    border-style: solid;
    transition-duration: 0.5s;
}

.main:hover, .sub:hover {
    box-shadow: 0 5px 30px var(--primary-btn);
}

.main {
    background-color: var(--primary-btn);
    transition-duration: 0.5s;
    color: black;
    width: fit-content;
}

ul {
    padding-left: 20px;
    margin: 60px 0;
}

h2 {
    text-align: center;
    font-family: 'Noteworthy';
    color: white;
    font-size: 30px;
    margin: 50px auto;
    margin-top: 180px;
}

.faq>h2 {
    font-size: 45px;
}

.contact-content>h2 {
    margin-top: 0px;
}

@media (min-width: 1024px) {

    .site-title {
        flex-direction: row;
    }

    .wrapper {
        flex-direction: row;
        justify-content: center;
        max-width: 1000px;
    }

    .left, .right {
        max-width: 300px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .left {
        padding-right: 75px;
        border-right-style: solid;
        border-bottom-style: unset;
        border-color: var(--dark-blue);
    }

    h2 {
        font-size: 45px;
    }

}