body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    color: #0056b3;
    font-size: 2em;
}

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

.main-content {
    width: 70%;
}

.sidebar {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.intro, .content, .call-to-action {
    margin-bottom: 20px;
}

.content .content-section {
    overflow: auto;
    margin-bottom: 20px;
}

.content h2 {
    color: #0056b3;
    margin-top: 20px;
    font-size: 1.5em;
}

.call-to-action {
    text-align: center;
    background-color: #eaf4ff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.call-to-action p {
    font-size: 1.2em;
}

.call-to-action a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 10px;
    background: #0056b3;
    color: white;
    border-radius: 0 0 10px 10px;
}

.sidebar {
    width: 200px;
    float: right;
    margin-right: 10px;
}

.side-img {
    width: 100%;
    height: auto;
}