.zitat{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    text-align: center;
    margin-top: 48px;
    padding: var(--page-padding);
}
.zitat h2{
    color: var(--txt-l);
    font-family: 'schreibschrift' !important;
    font-size: clamp(2.8rem, 4.2vw, 3.8rem);
    font-weight: normal;
}
.zitat p{
    color: var(--se);
    font-size: 1.05rem;
}


.home-rückmeldungen-sec{
    background-color: var(--se);
}
.home-rückmeldungen-sec button{
    margin-bottom: 3em;
}


/* Kontakt Section */

.kontakt-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4rem 1rem;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.kontakt-sec .heading {
    margin-bottom: 2rem;
	margin-top: 0;
}

.formula {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-row p,
.form-col p{
	text-align: left;
	font-size: 1.1rem;
	color: var(--txt-l);
}
.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-col {
    flex: 1 1 calc(33.33% - 0.67rem);
    display: flex;
    flex-direction: column;
}

.full-width {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
}

.formula input[type="text"],
.formula input[type="email"],
.formula input[type="tel"],
.formula textarea {
    padding: 0.8rem 1rem;
    background: var(--se);
    font-size: 1rem;
    margin-top: 0.3rem;
    width: 100%;
    box-sizing: border-box;
	color: var(--txt-d);
	border-radius: 5px !important;
}

.formula textarea {
    min-height: 150px;
    resize: vertical;
}




.datei-senden input[type="file"] {
    display: block;
    width: 100%;
    max-width: 400px;
    background-color: var(--se);
    border: none;
    color: #333;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem 0; /* Kein Auto, nur oben/unten Abstand */
    font-family: inherit;
    text-align: left;
}


/* Optional: Hover-Effekt */
.datei-senden input[type="file"]:hover {
    filter: brightness(90%);
}



.submit-row input[type="submit"] {
	margin-left: 72px;
    width: max-content;
    white-space: nowrap;
    padding: 5px 10px;
    background: var(--txt-l);
    color: var(--pr);
    font-size: 1.1rem;
    cursor: pointer;
    border: solid 2px var(--txt-l);
    transition: filter .2s;
    border-radius: 5px;
}

.submit-row input[type="submit"]:hover {
    filter: brightness(90%);

}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}
.checkbox-row p{
	color: var(--txt-l);
}

/* Responsiv */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-col {
        flex: 1 1 100%;
    }
}

@media  screen and (max-width: 480px) {
    .zitat
    
}

@media screen and (max-width:380px) {
    .zitat h2 {
        font-size: 2rem !important;
    }
}

@media screen and (max-width:280px) {
    .zitat h2 {
        font-size: 1.5rem !important;
    }
}

@media screen and (max-width:212px) {
    .zitat h2 {
        font-size: 1rem !important;
    }
}
