    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;
    }

    .service-img {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 1em;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .idea-img {
        width: 100%;
        max-height: 200px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 1em;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    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;
    }

    #om-mig h2 {
        position: relative;
        display: inline-block;
        padding-bottom: 5px;
    }

    #om-mig h2::after {
        content: "";
        display: block;
        width: 580px;
        height: 2px;
        background-color: brown;
        margin-top: 10px;
    }

    .section {
        margin-bottom: 3em;
    }

    .om-mig-content {
        display: flex;
        align-items: flex-start;
        gap: 80px;
        margin-top: -20px;
    }

    #om-mig p {
        max-width: 580px;
        font-size: 1.15em;
        line-height: 1.7em;
        color: #61605e;
    }

    .om-mig-img {
        max-width: 220px;
        height: auto;
        object-fit: cover;
        margin-left: 100px;
    }

    .om-mig-img-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #om-mig .om-mig-name {
        margin-top: 0.3em;
        margin-right: -2.6em;
        font-weight: normal;
        font-size: 2.4em;
        text-align: center;
        color: black;
        font-style: italic;
        font-family: "Brush Script MT", cursive;
    }

    #om-mig .om-mig-title {
        margin-top: -3em;
        margin-right: -5.2em;
        font-weight: normal;
        font-size: 1.15em;
        color: #61605e;
        text-align: center;
    }

    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-position: 10% 30%;
        }

        .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;
        }

        .overlay-text {
            font-size: 2em;
            max-width: 90%;
            left: 5%;
            top: 40%;
        }

        .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%;
        }

        .om-mig-content {
            flex-direction: column;
            gap: 1.5em;
        }

        .om-mig-img {
            max-width: 100%;
            margin-left: 0;
        }

        #om-mig h2::after {
            width: 100%;
        }

        #om-mig .om-mig-name,
        #om-mig .om-mig-title {
            margin-right: 0;
            text-align: center;
        }

        h2 {
            display: block;
            width: 100%;
        }

        h2::after {
            width: 100%;
            max-width: 356px;
            margin-top: 10px;
        }

        .om-mig-img {
            max-width: 200px;
            height: auto;
            margin-left: 80px;
        }

        #om-mig .om-mig-name {
            margin-top: 0.3em;
            margin-right: -1.6em;
            font-weight: normal;
            font-size: 2.4em;
            text-align: center;
            color: black;
            font-style: italic;
            font-family: "Brush Script MT", cursive;
        }

        #om-mig .om-mig-title {
            margin-top: -3em;
            margin-right: -4.2em;
            font-weight: normal;
            font-size: 1.15em;
            color: #61605e;
            text-align: center;
        }
    }