    body {
        margin: 0;
        font-family: 'Roboto', sans-serif;
        background-color: #f4f4f4;
        color: #333;
    }

    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    .language-switch {
        display: flex;
        gap: 0.8em;
        margin-right: 5em;
    }

    .language-switch img {
        width: 20px;
        height: auto;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .language-switch img:hover {
        transform: scale(1.1);
    }

    .background_wrapper {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .background_wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 0%;
        display: block;
    }

    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 110px;
        background-color: rgba(244, 244, 244, 0.8);
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.5em;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease;
    }

    .top-bar.transparent {
        background-color: rgba(244, 244, 244, 1);
    }

    .logo-wrapper {
        background-color: transparent;
    }

    .logo-wrapper img {
        max-height: 50px;
        height: auto;
    }

    .main-nav {
        display: flex;
        gap: 2em;
        flex: 1;
        justify-content: center;
        margin-right: 12em;
        margin-top: 4.2em;
    }

    .main-nav a {
        position: relative;
        color: black;
        font-size: 1em;
        transition: color 0.3s ease;
        text-transform: uppercase;
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        padding-bottom: 23px;
    }

    .main-nav a:hover {
        text-decoration: none;
        color: brown;
    }

    .main-nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 0;
        height: 4px;
        background-color: brown;
        transition: width 0.3s ease;
    }

    .main-nav a:hover::after {
        width: 100%;
    }

    .menu-links {
        display: flex;
        gap: 2rem;
    }

    .menu-button {
        display: none;
    }

    #menu-toggle {
        display: none;
    }

    header {
        background-color: #fc8803;
        padding: 0.1em 1em;
        text-align: center;
        font-size: 1em;
        font-weight: bold;
    }

    .container {
        max-width: 1000px;
        margin-left: 110px;
        padding: 4em 1em;
        position: relative;
    }

    h2 {
        font-size: 1.6em;
        color: black;
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        margin-bottom: 0.5em;
    }

    #contact h2 {
        position: relative;
        display: inline-block;
        padding-bottom: 5px;
    }

    #contact h2::after {
        content: "";
        display: block;
        width: 580px;
        height: 2px;
        background-color: brown;
        margin-top: 10px;
    }

    .contact-extra {
        margin-top: 5em;
        font-size: 1.1em;
    }

    .contact-extra a {
        color: brown;
        text-decoration: none;
    }

    .contact-extra a:hover {
        text-decoration: underline;
    }

    .contact-extra h2 {
        margin-bottom: 0.8em;
    }

    .contact-extra p {
        margin-top: -0.2em;
    }

    .section {
        margin-bottom: 1em;
    }

    form {
        max-width: 550px;
        margin-top: 1em;
    }

    label {
        font-weight: bold;
        color: #333;
    }

    input,
    textarea {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-family: inherit;
        font-size: 1em;
    }

    .submit-button {
        background-color: brown;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 6px;
        font-size: 1em;
        cursor: pointer;
    }

    .submit-button:hover {
        background-color: #a0522d;
    }

    #form-status {
        margin-top: 1em;
        font-weight: bold;
    }

    .required {
        color: red;
        margin-left: 2px;
    }

    footer {
        background-color: gray;
        color: white;
        text-align: center;
        padding: 2em 1em;
    }

    a {
        color: #61605e;
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    @media (max-width: 430px) {

        .main-nav {
            position: relative;
            flex-direction: column;
            align-items: stretch;
        }

        .background_wrapper img {
            object-fit: contain;
            width: 380%;
            height: auto;
            transform: translateX(-25%);
        }

        .menu-button {
            color: black;
            display: block;
            font-size: 2rem;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1002;
            position: relative;
            top: -40px;
            right: -70px;
        }

        .menu-links {
            position: fixed;
            top: 0;
            right: calc(-50% - 2rem);
            width: 50%;
            height: 100vh;
            background-color: #f4f4f4;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-left: 2rem;
            gap: 2em;
            transition: right 0.3s ease;
            z-index: 1001;
        }

        .menu-links.open {
            right: 0;
        }

        .menu-links a {
            font-size: 1.2em;
        }

        .language-switch {
            position: fixed;
            top: 20%;
            right: -50%;
            transform: translateY(-50%);
            display: flex;
            gap: 1em;
            z-index: 1002;
            transition: right 0.3s ease;
        }

        body.menu-open .language-switch {
            right: 3.8rem;
        }

        .container {
            margin-left: 0;
            padding: 2em 1em;
        }

        .slogan-content {
            flex-direction: column;
            gap: 1.5em;
        }

        .slogan-img {
            max-width: 100%;
            margin-right: 0;
        }

        #slogan h2::after {
            width: 100%;
        }

        #contact h2 {
            display: block;
            width: 100%;
        }

        #contact h2::after {
            width: 100%;
            max-width: 356px;
            margin-top: 10px;
        }

        .contact-extra {
            margin-top: 2em;
        }

        form {
            max-width: 330px;
            padding-bottom: 20%;
        }
    }