* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 30px 0 10px 0;
}

header h1 {
    background-color: rgb(64, 170, 110);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
}

header h2 {
    font-weight: normal;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 0;
}

.container {
    background-color: white;
    display: flex;
    width: 70%;
    max-width: 1000px;
    border-radius: 5px;
    padding: 30px;
    justify-content: space-between;
    gap: 30px;
}

.sidecontent {
    background-color: #dff2ee;
    width: 40%;
    padding: 20px;
    border-radius: 5px;
}

.sidecontent h3 {
    color: #004c3f;
    margin-bottom: 10px;
}

.content {
    width: 60%;
    text-align: center;
}

.content img {
    width: 150px;
    margin-bottom: 10px;
}

.content h3 {
    text-align: left;
    margin: 15px 0;
}

.content ul {
    text-align: left;
    list-style: disc;
    margin-left: 20px;
    line-height: 1.6em;
}

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
}