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

body {
    font-family: "Work Sans", system-ui;
    background-color: #e3deda;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 85%;
    margin: 0 auto;
    max-width: 1200px;
}

.header {
  padding: 20px;

    background-color: black;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
}

.language-switch {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #333;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.language-switch:hover {
    background-color: #555;
}


h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.landing {
    padding: 50px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero {
    display: flex;
    justify-content: space-between;
}

.hero-title{
    margin-top: 150px;
}


.two {
    margin-bottom: 50px;
    width: 100%;
}

.two .twinz {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.two .twinz img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

.two p {
    width: 100%;
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-left: 20px;
    font-weight: 400;
    color: #333;
}

.two h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.contact-us ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

footer {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .two .twinz {
        flex-direction: column;
        text-align: right;
    }

    .two .twinz img {
        order: 2;
        margin-left: 0;
    }

    .two p {
        order: 1;
        margin-left: 0;
        margin-top: 20px;
    }

    .hero {
        flex-direction: column;
    }

    .hero-title{
        margin-top: 0;
    }
}
