body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f4f9f9;
}

.container {
    text-align: left;
    max-width: 800px;
    width: 100%;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
}

.header {
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5em;
    color: #2e5942;
}

h2 {
    font-size: 2em;
    color: #2e5942;
    text-align: left;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #2e5942;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #bfd2df;
}
