* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f2f1fa;
    color: #333;
}

.container {
    display: flex;
}

.sidebar {
    width: 200px;
    background-color: #9c132c;
    color: white;
    padding: 20px;
}

.sidebar ul {
    list-style-type: none;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
}

.sidebar ul li a:hover {
    text-decoration: underline;
}

.content {
    padding: 20px;
    flex-grow: 1;
    background-color: white;
}

.header h1 {
    font-size: 24px;
    color: #9c132c;
}

.header p {
    font-size: 18px;
    color: #333;
}

.main-text p {
    margin-bottom: 10px;
}

a {
    color: #007b8e;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.button a {
    display: inline-block;
    background-color: #2e6a2a;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}

.button a:hover {
    background-color: #1f4d1f;
}
