.publicWebsite-layout{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 60px auto;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
}



/* ========== CSS Custom Properties ========== */
:root {
    --header-h: 60px;
    --space-1: .5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --radius: 999px;

    /* Headings */
    --heading-size-h1: 60px;
    --heading-size-h2: 48px;
    --heading-size-h3: 40px;
    --heading-size-h5: 24px;
    --heading-size-h6: 20px;
    --heading-line-height-h1: 72px; /* 120% */
    --heading-line-height-h2: 56px; /* ~117% */
    --heading-line-height-h3: 48px; /* 120% */
    --heading-line-height-h4: 40px; 
    --heading-line-height-h5: 28px; /* ~117% */
    --heading-line-height-h6: 24px; /* 120% */

    /* Text */
    --type-font-family-display: "InterDisplay";
    --text-heading: #1A1A1A;
    --text-neutral-primary: #1A1A1A;
    --text-default-default: #1A1A1A;
    --text-default-secondary: #4D4D4D;
    --text-information-default: #0630FF;

    /* Colors */
    --surface-default-default: #FFF;
    --surface-default-secondary: #E6E6E6;
    --surface-default-inverse-default: #1A1A1A;
    --background-default: #F2F2F2;
    --page-default: #FFF;

    --Labels-Primary: #000;


    /* Border */
    --border-default-default: #1A1A1A;
    --border-default-quaternary: #CCC;
    --stroke-weight-s: 1px;
    --stroke-weight-m: 2px;
    

    /* Weitere (Abstände,...) */
    --body-size-xxs: 10px;
    --body-size-s: 14px; 
    --body-size-m: 16px;
    --body-line-height-xxs: 12px;
    --body-line-height-s: 16px; /* 114.286% */
    --body-line-height-m: 20px; /* 125% */
    
    --spacing-jumper-gap-xs-xs-xxs: 4px; 
    --spacing-jumper-gap-l: 24px;  
    --spacing-jumper-gap-gutter: 32px;
    --spacing-jumper-gap-xxl: 48px;
    --spacing-jumper-gap-xl-xl-l: 32px;
    --spacing-jumper-gap-l-l-m: 24px;
    --corner-radius-l: 8px;
    --corner-radius-xl: 16px;
    --corner-radius-xxl: 40px;
    --corner-radius-round: 256px;
    --spacing-jumper-gap-l-l-m--background-default: #F2F2F2;
    --spacing-jumper-padding-margin: 48px;
    --spacing-device-breakpoint: 1440px;

    --background-blur-100: 24px;


    /* ******* Responsive ******* */
    /*Tablet*/
    @media (max-width: 768px){
        --heading-size-h1: 48px;
        --heading-size-h2: 40px;
        --heading-size-h3: 32px;
        --heading-size-h4: 28;
        --heading-size-h5: 24;
        --heading-size-h6: 20px;
        --spacing-jumper-padding-margin: 24px;
    }
    
    /*Mobile*/
    @media (max-width: 440px){
        --heading-size-h1: 31px;
        --heading-size-h2: 28px;
        --heading-size-h3: 24px;
        --heading-size-h4: 24px;
        --heading-size-h5: 20px;
        --heading-size-h6: 20px;
        --spacing-jumper-padding-margin: 16px; 
    }
}


/* ========== Typo Utilities ========== */
.bodyXxs{
    font-size: var(--body-size-xxs);
    font-style: normal;
    font-weight: 500;
    line-height: var(--body-line-height-xxs); /* 120% */
}
.bodyXxsGrey{
    font-size: var(--body-size-xxs);
    font-style: normal;
    font-weight: 500;
    line-height: var(--body-line-height-xxs); /* 120% */
    margin: 0;
}

.bodyS{
    font-size: var(--body-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: var(--body-line-height-s); 
    margin: 0;
}
.bodySGrey{
    color: #999;
    font-size: var(--body-size-s);
    font-style: normal;
    font-weight: 500;
    line-height: var(--body-line-height-s);
    margin: 0;
}

.bodyM{
    font-size: var(--body-size-m);
    font-style: normal;
    font-weight: 500;
    line-height: var(--body-line-height-m); /* 125% */    
    margin: 0;
}
.bodyMGrey{
    color: var(--text-default-secondary);
    font-size: var(--body-size-m);
    font-style: normal;
    font-weight: 500;
    line-height: var(--body-line-height-m); /* 125% */
    margin: 0;
}

.bodySemiBold{
    font-size: var(--body-size-m, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--body-line-height-m); /* 125% */
}

.headingH1 {
    font-family: var(--type-font-family-display);
    font-size: var(--heading-size-h1);
    font-style: normal;
    font-weight: 600;
    color: var(--text-heading);
    line-height: var(--heading-line-height-h1);
    margin: 0;
}

.headingH2 {
    font-family: var(--type-font-family-display);
    font-size: var(--heading-size-h2);
    font-style: normal;
    font-weight: 600;
    color: var(--text-heading);
    line-height: var(--heading-line-height-h2);
    margin: 0;
    text-align: left;
}

.headingH3{
    font-family: var(--type-font-family-display);
    font-size: var(--heading-size-h3);
    font-style: normal;
    font-weight: 600;
    color: var(--text-heading);
    line-height: var(--heading-line-height-h3);
    margin: 0;
}

.headingH4{
    font-family: var(--type-font-family-display, "inter display");
    font-size: var(--heading-size-h4, 24px);
    font-style: normal;
    font-weight: 600;
    color: var(--text-default-default, #1A1A1A);
    line-height: var(--heading-line-height-h4, 40px); /* 125% */
    margin: 0;
}

.headingH5 {
    font-family: var(--type-font-family-display);
    font-size: var(--heading-size-h5);
    font-style: normal;
    font-weight: 600;
    color: var(--text-heading);
    line-height: var(--heading-line-height-h5);
    margin: 0;
}
.headingH5Blue {
    font-family: var(--type-font-family-display);
    font-size: var(--heading-size-h5);
    font-style: normal;
    font-weight: 600;
    color: var(--text-information-default);
    line-height: var(--heading-line-height-h5);
    margin: 0;
}

.headingH6{
    font-family: var(--type-font-family-display);
    font-size: var(--heading-size-h6);
    font-style: normal;
    font-weight: 600;
    color: var(--text-heading);
    line-height: var(--heading-line-height-h6);
    margin: 0;
}



/* ========== Konfiguration ========== */
html, body {
    font-family: var(--type-font-family-display);
    width: 100%;
    margin: 0;
    padding: 0;
}


/* ======= Nav ======= */
/* * {
    outline: 1px solid red;
}*/
.stickyNav{
    position: sticky;
    top: 0;
    z-index: 1000;
    width: inherit;
}




/* ========== Media Queries ========== */
/* ========= Tablet ========= */
@media (max-width: 768px) {
    /* Headings etwas kompakter */
    .headingH1 {
        font-size: 48px;
        line-height: 56px;
    }
    .headingH2 {
        font-size: 40px;
        line-height: 48px;
    }
    .headingH3 {
        font-size: 32px;
        line-height: 40px;
    }
    .headingH4 {
        font-size: 28px;
        line-height: 32px;
    }
    .headingH5 {
        font-size: 24px;
        line-height: 28px;
    }
    .headingH6 {
        font-size: 20px;
        line-height: 24px;
    }
    
    .txt-center{text-align: center}
}



/* Mobile */
@media (max-width: 490px) {
    .headingH1 {
        font-size: 31px;
        line-height: 40px;
    }

    .headingH2 {
        font-size: 28px;
        line-height: 32px;
    }

    .headingH3 {
        font-size: 24px;
        line-height: 28px;
    }

    .headingH4 {
        font-size: 24px;
        line-height: 28px;
    }

    .headingH5 {
        font-size: 20px;
        line-height: 24px;
    }

    .headingH6 {
        font-size: 20px;
        line-height: 24px;
    }
    
    .txt-center{text-align: center}
    
}


/************ Footer ************/
#siteFooterSelf {
    background-color: #f5f5f7;
    color: #727378;
    text-align: center;
    font-size: 16px;
    padding:90px 0 40px 0;
    margin-top: 10px;
    width: 100%;
}
#siteFooterSelf .siteFooterSelfLogo {

}
#siteFooterSelf .siteFooterSelfLogo img {
    width: 49px;
    display: inline-block;
    margin-top: -6px;
    margin-right: 10px;
}
#siteFooterSelf .footerMenuObject {
    display: inline-block;
    margin-left:30px;
    cursor: pointer;
    color: #727378;
}

@media (max-width: 1000px) {
    #siteFooterSelf {
        padding:50px 0 40px 0;
    }
    .siteFooterSelfLinkHolders {
        display: block;
        margin-top: 24px;
    }
}

@media (max-width: 590px) {
    #siteFooterSelf .footerMenuObject {
        display: block;
        width: max-content;
        margin: 10px auto;
    }
    .siteFooterSelfBusinessInfo {
        display: block;
        margin-top: 14px;
    }
}


/************ FAQ ************/

.faq-title {
    text-align: center;
    font-size: 1.2rem;
    margin: 10px 0;
    color: black;
    font-weight: 700;
}

.faq-list {
    max-width: 1400px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.faq-item summary {
    cursor: pointer;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: black;
    list-style: none;
    transition: color 0.2s ease;
}

.faq-item summary:hover {
    color: #0ea5e9;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 1.2rem;
    color: #9ca3af;
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    color: #0ea5e9;
}

.faq-answer {
    padding: 1rem;
    color: black;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeIn 0.25s ease;
    border-top: 1px solid #e5e7eb;
}

