body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    background-color: #f9f9f9;
}

.container {
    display: flex;
    width: 100%;
}

.left-side {
    background: linear-gradient(135deg, #d7b199, #c48d73);
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo {
    max-width: 50%;
    height: auto;
}

.right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    position: relative;
}

h1 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.welcome {
    color: #b78560;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.menu {
    list-style-type: none;
    padding: 0;
}

.menu li {
    color: #555;
    font-size: 1em;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.menu li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #b78560;
}

.small-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: auto;
}