@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    src: url(https://germanhealthsolutions.com/fonts/material-symbols.woff2) format('woff');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; 
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.woff2') format('woff2'),
         url('fonts/Inter-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('https://germanhealthsolutions.com/fonts/Inter/inter.ttf') format('truetype');
    font-style: normal;
}

* {
    margin: 0 auto;
    padding: 0;
    font-family: 'Inter';
}

html {
    scroll-behavior: smooth;
}

:root {
    --blue: #30CEFF;
    --black: rgba(60,60,60,1);
    --gray: rgba(240,240,240,1);
}

.blue {
    color: var(--blue);
}

nav {
    width: 100%;
    height: 80px;
    z-index: 9;
    position: absolute;
    overflow: hidden;
    background-color: #FFFF;
}
nav .logo {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
}
nav .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
nav .hamburger {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
}
nav .hamburger span {
    line-height: 50px;
    font-size: 32px;
}
nav .links {
    padding-top: 80px;
    width: 100%;
}
nav .links a {
    width: 230px;
    text-decoration: none;
    color: var(--black);
}
nav .links .link {
    margin-top: 10px;
    width: 230px;
    text-align: left;
    height: 50px;
    line-height: 50px;
}
nav .links .link.special {
    background-color: var(--blue);
    text-align: center;
    border-radius: 5px;
    color: #FFFF;
    font-weight: 700;
    transition: all .3s;
}
nav .links .link.special:hover {
    background-color: #0e75dd;
}

.heading {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    height: 100vh;
    max-height: 800px;
}
.heading img {
    width: 100%;
    min-height: 500px;
    height: 100vh;
    max-height: 800px;
    object-fit: cover;
}
.heading .text {
    position: absolute;
    top: 230px;
    left: calc(50% - 150px);
    width: 300px;
    z-index: 8;
}
.heading .overlay {
    position: absolute;
    width: 100%;
    min-height: 500px;
    height: 100vh;
    max-height: 800px;
    background-color: rgba(0,0,0,.5);
}
.heading h1 {
    z-index: 8;
    color: #FFFF;
    font-size: 32px;
}
.heading .button {
    margin-top: 30px;
    margin-left: 0;
}
.button {
    width: 100%;
    max-width: 350px;
    height: 50px;
    background-color: var(--blue);
    text-align: center;
    line-height: 50px;
    color: #FFFF;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    transition: all .3s;
}
.button p {
    font-size: 16px !important;
    margin-top: 0 !important;
    line-height: 50px !important;
    text-transform: uppercase;
}
.content {
    padding: 70px 0;
    width: 90%;
    color: var(--black);
}
.content .small {
    font-size: 16px;
}
.content h2 {
    font-size: 42px;
}
.content .bigger {
    margin-top: 15px;
    font-size: 20px;
    line-height: 1.6;
}
.content p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
}
.content .button {
    margin-top: 30px;
    margin-left: 0;
}
.content .img-holder {
    position: relative;
    margin-top: 30px;
    width: 100%;
    height: auto;
}
.content .img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.content .img {
    margin-top: 30px;
    width: 100%;
    height: auto;
}
.content .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.small-content {
    margin-top: 190px;
    width: 100%;
}
.small-content .block {
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
    height: auto;
    text-align: center;
}
.small-content .block p {
    margin-top: 15px;
}
.small-content .block img {
    width: 150px;
    height: 150px;
    object-fit: contain !important;
}

.dna {
    padding: 70px 0;
    box-sizing: border-box;
    width: 100%;
    min-height: 500px;
    background-image: url("https://webdesign-germany.com/ghs/img/3.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: #FFFF;
    text-align: center;
}
.dna .p-heading {
    font-size: 42px;
}
.dna::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1;
}
.dna > * {
    position: relative;
    z-index: 2;
}
.dna .wrapper {
    padding: 30px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    overflow: scroll;
    gap: 30px;
}
.dna .block {
    flex-shrink: 0;
    margin-top: 30px;
    padding: 30px 10px 50px 10px;
    box-sizing: border-box;
    width: 300px;
    height: auto;
    background-color: #FFFF;
    border-radius: 15px;
    color: var(--black);
    user-select: none;
    cursor: pointer;
}
.dna .block span {
    width: 90px;
    line-height: 50px;
    font-size: 52px;
    user-select: none;
    color: var(--blue);
    font-weight: 900;
}
.dna .block h2 {
    margin-top: 15px;
}
.dna .block p {
    margin-top: 15px;
    line-height: 1.7;
}

.content.two ul {
    margin-bottom: 30px;
    width: 100%;
    list-style-type: none;
}
.content.two ul li {
    margin-top: 15px;
    font-size: 16px;
    display: flex;
}
.content.two ul li span {
    position: relative;
    top: 5px;
    margin-left: 0;
    width: 30px;
    margin-right: 15px !important;
    color: var(--blue);
    line-height: 30px;
}
.content.two ul li {
    margin-left: 25px;
    line-height: 30px;
    margin-left: 0;
}

.versprochen {
    width: 100%;
    min-height: auto;
    background-image: url("https://webdesign-germany.com/ghs/img/5.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: #FFFF;
    text-align: center;
    z-index: 1;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.versprochen .texter {
    padding: 70px 10%;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 8;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}
.versprochen .texter h2 {
    font-size: 32px;
}
.versprochen .texter p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
}
.versprochen .button {
    margin-top: 30px;
}

.faq-container {
    padding: 50px 30px;
    box-sizing: border-box;
    margin-top: 90px;
    width: 90%;
    background-color: var(--gray);
    border-radius: 15px;
}
.faq-container h2 {
    margin-bottom: 15px;
    text-align: center;
}
.question-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--gray);
}
.question-wrapper .question {
    display: flex;
}
.question-wrapper .question span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: var(--black);
    user-select: none;
    cursor: pointer;
    display: none;
}
.question-wrapper .question span.blue {
    color: var(--blue);
    display: block;
}
.question-wrapper .question p {
    margin-top: 0;
    margin-left: 0;
    text-align: left;
    width: calc(100% - 40px);
    font-size: 16px;
}
.question-wrapper .anwser {
    margin-top: 15px;
    font-size: 16px;
    text-align: left;
    display: none;
    color: var(--blue);
}
.faq .button {
    margin-top: 30px;
}


.content.three h2 {
    font-size: 42px;
}
.content.three ul {
    padding: 30px 20px;
    box-sizing: border-box;
}
.content.three ul li {
    margin-bottom: 15px;
    font-size: 20px;
}
.content.three .wrapper {
    max-width: 1600px;
}

footer {
    padding: 50px 30px;
    box-sizing: border-box;
    background-color: var(--gray);
    margin-top: 30px;
}
footer ul {
    list-style-type: none;
}
footer h2, footer p {
    color: var(--black);
}
footer .hr {
    margin: 30px 0;
    margin-left: -30px;
    width: calc(100% + 60px);
    height: 1px;
    background-color: #FFFF;
}
footer .legal {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
footer .legal ul {
    margin: 0;
}
footer .legal ul li.head {
    font-weight: 700;
}
footer .legal ul li {
    margin-top: 15px;
    color: var(--black);
}

.wrapper::-webkit-scrollbar {
    display: none;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.heading .text p {
    color: #FFFF;
    margin-bottom: 15px;
    font-size: 20px;
}

h2.centered {
    font-size: 24px;
    text-align: center;
}

@media screen and (min-width: 1200px) {
    nav .nav-wrapper {
        width: 1200px;
        position: relative;
    }
    nav .hamburger {
        display: none;
    }
    nav .logo {
        top: 0;
        left: 0;
        width: 70px;
        height: 70px;
    }
    nav .links {
        position: absolute;
        top: 5px;
        right: 0;
        width: 390px;
        padding: 0;
        display: flex;
        user-select: none;
    }
    nav .links a {
        width: 100px;
        text-decoration: none;
        color: var(--black);
        text-align: center;
    }
    nav .links a:last-child {
        width: 230px;
    }
    nav .links .link {
        width: 100px;
        user-select: none;
        cursor: pointer;
        text-align: center;
    }
    nav .links .link.special {
        width: 290px;
    }

    .heading {
        max-height: 900px;
    }
    .heading img {
        height: 900px;
        max-height: 900px;
    }
    .heading .overlay {
        height: 900px;
        max-height: 900px;
    }
    .heading .text {
        top: 230px;
        left: calc(50% - 600px);
        width: 900px;
    }
    .heading h1 {
        font-size: 92px;
    }

    .button {
        width: 530px;
        max-width: none;
        height: 70px;
        line-height: 70px !important;
        user-select: none;
        cursor: pointer;
    }
    .button p {
        line-height: 70px !important;
        font-size: 22px !important;
    }

    .content .wrapper {
        width: 1200px;
        display: flex;
    }
    
    .content h2 {
        font-size: 52px;
    }
    .content .text {
        margin-top: 50px;
    }
    .content .bigger {
        font-size: 24px;
    }
    .content p {
        font-size: 20px;
        line-height: 1.6;
    }
    .content .img-holder {
        position: relative;
        margin-top: 30px;
        width: 45%;
        height: auto;
    }
    .content .img-holder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }
    .content .img-holder img:nth-child(2) {
        position: absolute;
        left: 100px;
        bottom: -130px;
        width: 430px;
        height: 330px;
        object-fit: cover;
        border-radius: 15px;
    }
    .content .img {
        margin-top: 30px;
        width: 100%;
        height: auto;
    }
    .content .img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 15px;
    }

    .dna {
        margin-top: 90px;
    }
    .dna .wrapper {
        display: flex;
        overflow: hidden;
        max-width: 1600px;
        justify-content: center;
        align-items: center;
        
    }
    .dna .p-heading {
        font-size: 52px;
    }
    .dna .wrapper .block {
        flex-shrink: 1;
        height: 590px;
    }

    .content.two .wrapper {
        width: 90%;
        max-width: 1600px;
        justify-content: center;
        align-items: center;
    }
    .content.two .img {
        width: 45%;
        height: 600px;
        border-radius: 15px;
    }
    .content.two .img img {
        border-radius: 15px !important;
        object-fit: cover;
    }
    .content.two h2 {
        font-size: 32px;
    }
    .content.two p {
        font-size: 16px;
    }
    .content.two ul li {
        margin-left: 0;
    }
    .content.two ul {
        margin-bottom: 30px;
        width: 100%;
        list-style-type: none;
    }
    .content.two ul li {
        margin-top: 15px;
        font-size: 16px;
        display: flex;
    }
    .content.two ul li span {
        width: 40px;
        margin-left: 0;
        margin-right: 5px !important;
        font-size: 32px;
    }
    .content.two ul li {
        margin-left: 25px;
        line-height: 30px;
        margin-left: 0;
    }

    .versprochen {
        margin: 130px 0;
    }
    .versprochen .texter {
        padding: 130px 230px;
        box-sizing: border-box;
    }
    .versprochen .texter h2 {
        font-size: 52px;
    }
    .versprochen .texter p {
        font-size: 20px;
    }

    .faq-container {
        max-width: 1600px;
        padding: 70px 90px;
    }
    .question-wrapper {
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: solid 1px var(--black);
    }
    .faq h2 {
        margin: 30px 0;
        font-size: 72px;
    }
    .question-wrapper .question {
        display: flex;
        cursor: pointer;
    }
    .question-wrapper .question span {
        display: block;
        font-size: 32px;
    }
    .question-wrapper .question span.blue {
        color: var(--blue);
        display: block;
        font-size: 32px;
    }
    .question-wrapper .question p {
        margin-top: 5px;
        margin-left: 30px;
        font-size: 24px;
        line-height: 20px;
    }
    .question-wrapper .anwser {
        font-size: 24px;
    }
    .faq .small {
        font-size: 16px;
    }

    .content .wrapper {
        display: flex;
    }
    .content .wrapper .text {
        width: 45%;
    }
    .content .wrapper .img-holder {
        width: 45%;
    }

    .content.three h2 {
        font-size: 42px;
    }
    .content.three ul {
        padding: 30px 20px;
        box-sizing: border-box;
    }
    .content.three ul li {
        margin-bottom: 15px;
        font-size: 20px;
    }
    .content.three .wrapper {
        max-width: 1600px;
        display: block;
    }

    .kontakt .wrapper {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .kontakt .wrapper .left {
        width: 47%;
    }
    .kontakt .wrapper .right {
        width: 47%;
    }
    .kontakt .wrapper textarea {
        height: 340px !important;
    }
    footer {
        border-radius: 50px 50px 0 0;
    }
    footer .wrapper {
        width: 1200px;
    }

    .heading .text p {
        color: #FFFF;
        margin-bottom: 15px;
        font-size: 32px;
        font-weight: 700;
    }
    
}

@media screen and (min-width: 1600px) {
    .question-wrapper {
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: solid 1px var(--font-gray);
    }
    .faq h2 {
        margin: 30px 0;
        font-size: 72px;
    }
    .question-wrapper .question {
        display: flex;
        cursor: pointer;
    }
    .question-wrapper .question span {
        display: block;
    }
    .question-wrapper .question span.blue {
        color: var(--blue);
        display: block;
    }
    .question-wrapper .question p {
        margin-top: 5px;
        line-height: 20px;
    }
    .faq .small {
        font-size: 16px;
    }

    .content.two .wrapper {
        width: 90%;
        max-width: 1600px;
        justify-content: center;
        align-items: center;
    }
    .content.two .img {
        width: 45%;
        height: 45%;
        border-radius: 15px;
    }
    .content.two .img img {
        border-radius: 15px !important;
        object-fit: cover;
    }
    .content.two h2 {
        font-size: 52px;
    }
    .content.two p {
        font-size: 20px;
    }
    .content.two ul li {
        margin-left: 0;
    }
    .content.two ul {
        margin-bottom: 30px;
        width: 100%;
        list-style-type: none;
    }
    .content.two ul li {
        margin-top: 15px;
        font-size: 20px;
        display: flex;
    }
    .content.two ul li span {
        width: 40px;
        margin-left: 0;
        margin-right: 5px !important;
        font-size: 32px;
    }
    .content.two ul li {
        margin-left: 25px;
        line-height: 30px;
        margin-left: 0;
    }

    .content .img-holder img:nth-child(2) {
        position: absolute;
        left: 270px;
        bottom: -70px;
        width: 430px;
        height: 330px;
        object-fit: cover;
        border-radius: 15px;
    }

    h2.centered {
        margin-bottom: 70px;
        font-size: 32px;
        text-align: center;
    }
}

/* Kontakt Section */
.kontakt {
    width: 90%;
    max-width: 1600px;
    padding: 40px 30px;
    box-sizing: border-box;
    background-color: var(--gray);
    margin: 50px auto;
    border-radius: 15px;
    text-align: center;
}
.kontakt .wrapper {
    width: 100%;
}

.kontakt p.small-big {
    margin: 15px 0;
    font-size: 20px;
    color: #888;
}

.kontakt p.small {
    margin: 15px 0;
    font-size: 14px;
    color: #888;
}

.kontakt h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
}

.kontakt form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-group {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    margin-bottom: 5px;
    text-align: left;
}

.form-group label {
    width: 100%;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: block;
    user-select: none;
    cursor: pointer;
}

.form-group input,
.form-group textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    outline: none;
    background-color: #fff;
}

.form-group textarea {
    min-height: 150px;
    resize: none;
}

/* Button */
button {
    width: 100%;
    background-color: var(--blue);
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

button:hover {
    background-color: #005bb5;
}
.button:hover {
    background-color: #0e75dd;
}

/* Links */
.kontakt p.small a {
    color: var(--blue);
    text-decoration: none;
}

.kontakt p.small a:hover {
    text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .kontakt {
        padding: 30px 20px;
        max-width: 100%;
    }

    .kontakt h2 {
        font-size: 24px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 10px 15px;
    }

    button {
        font-size: 14px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .kontakt {
        padding: 20px 15px;
    }

    .kontakt h2 {
        font-size: 20px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 8px 12px;
    }

    button {
        font-size: 14px;
        padding: 8px 12px;
    }
}

  /* Popup styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.popup .small {
    margin-top: 15px;
    font-size: 12px;
}

.popup-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 300px;
    box-sizing: border-box;
}

.popup-content h2 {
    margin: 0 0 10px;
}

.popup-content input {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.popup-content button {
    margin-top: -5px;
    background-color: var(--blue);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.popup-content button:hover {
    background-color: var(--blue);
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    background-color: var(--blue);
    border-radius: 50px;
    text-align: center;
    line-height: 30px;
    color: #FFFF;
    user-select: none;
    cursor: pointer;
    font-size: 20px;
}