* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: Helvetica, Arial, sans-serif;
    background: #fbf8f1;
    position: relative;
    overflow-x: hidden;
}

.wave-background {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: calc(100vw * 766 / 1366);
    min-height: 300px;
    max-height: 100vh;
    z-index: -1;
}

.wave-background svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-aspect-ratio: 1366/766) {
    .wave-background {
        height: 100vh;
    }
    
    .wave-background svg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: bottom;
    }
}

.content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    min-height: 100vh;
    text-align: center;
}

.footer {
    position: fixed;
    z-index: 1000;
    bottom: 20px;
    text-align: center;
    width: 90%;
    color: white;
    font-size: 12px;
}

.footer a {
    color: white;
}

.left-section {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.right-section {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70vh;
}

.logo-container {
    text-align: center;
    padding: 2rem;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    max-height: 220px;
    margin-bottom: 4rem;
}

.contact-form {
    padding: 2rem 0;
}

.contact-form h2 {
    color: #000;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.contact-form p {
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f2c85a;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(119, 213, 208, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #000;
    color: #f2c85a;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Mobile Optimierungen */
@media (max-width: 1279px) {
    .content {
        flex-direction: column;
        gap: 0rem;
        padding: 15px 10px 0 10px;
        max-width: 600px;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
    }

    .left-section,
    .right-section {
        flex: none;
        width: 100%;
        max-width: 600px;
        min-height: auto;
    }

    .footer {
        position: relative !important;
        padding: 100px 10px 0px 10px;
        margin-top: 0 !important;
        width: 100% !important;
    }

    .logo-container {
        padding: 15px !important;
    }

    .logo-container img {
        margin-bottom: 0rem;
    }

    .contact-form {
        width: 100%;
        padding: 1rem 0;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }
}

/* Sehr kleine Bildschirme */
@media (max-width: 480px) {
    .content {
        max-width: 100%;
    }

    .left-section,
    .right-section {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .logo-container {
        padding: 1.5rem 0.5rem;
    }
}

/* Sehr große Bildschirme - Desktop bleibt unverändert */
@media (min-width: 769px) {
    .content {
        max-width: 1200px;
    }
}