/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #374156;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.left-side {
    flex: 1; /* 1/4 of the width */
    background-color: #374156;
    color: white;
    padding: 20px;
}

.left-side ul {
    list-style-type: none;
}

.left-side ul li {
    margin: 10px 0;
}

.left-side ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.left-side ul li a:hover {
    text-decoration: underline;
}

.right-side {
    flex: 4; /* 3/4 of the width */
    background-color: #fff;
    color: #333;
    padding: 20px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}
