/* Grundlayout */
    .contact-section {
        display: flex;
        justify-content: center;
        padding-top: 5rem;
        background: #eee;
        padding-bottom: 5rem;
        margin-bottom: 0 !important;
    }

    .contact-section a {
        color: #000;
    }

    .two-columns--no-margin-top {
        margin-top: 0;
    }

    .two-columns--no-margin-bottom {
        margin-bottom: 0;
    }

    .contact-container {
        display: flex;
        align-items: center;
        max-width: 47.5rem;
        margin-left: var(--lb-gutter);
        width: 100%;
        margin-right: var(--lb-gutter);
        gap: 10rem;
    }

    @media only screen and (max-width: 767px) {
        .contact-container {
            margin-left: 1.125rem;
            margin-right: 1.125rem;
            gap: 2.5rem;
            flex-direction: column;
        }
    }

    @media only screen and (max-width: 767px) {
        .contact-section {
            padding-top: 3.5rem;
            padding-bottom: 3.5rem;
        }
    }

    .contact-left {
        flex: 1;
        max-width: 50%;
    }

    @media only screen and (max-width: 767px) {
        .contact-left {
            max-width: 100%;

        }
    }


    .contact-info p {
        font-size: 1rem;
        margin: 0.5rem 0;
        line-height: 1.5;
    }

    .contact-info hr {
        border: none;
        border-top: 1px solid #ccc;
        margin: 1rem 0;
    }

    .contact-right {
        flex: 1;
        background-color: #fff;
        padding: 2rem;
        border-radius: 5px;
    }

    @media only screen and (max-width: 767px) {
        .contact-right {
            max-width: 100%;
            width: 100%;

        }
    }

    .contact-form .form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .contact-form .form-group label {
        font-size: 1rem;
        color: #555;
        margin-bottom: 0.5rem;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        font-size: 1rem;
        padding: 0.75rem;
        border: 1px solid #ccc;
        font-family: var(--lb-font-sans);
        border-radius: 5px;
    }

    .contact-form .form-group input::placeholder,
    .contact-form .form-group textarea::placeholder {
        color: #aaa;
    }

    .contact-form .submit-button {
        font-size: 1rem;
        background-color: #d32f2f;
        color: #fff;
        border: none;
        padding: 0.75rem 2rem;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .contact-form .submit-button:hover {
        background-color: #b71c1c;
    }
