body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 32px;
    position: relative;
}
.logo-above-left {
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
}
.logo-above-left img {
    height: 70px;
    width: auto;
    border-radius: 8px;
    margin-right: 16px;
}
.product-img-container {
    text-align: center;
    margin-bottom: 8px;
}
.product-img-container img {
    max-width: 700px;
    width: auto;
    display: flex;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.cta-button {
    display: block;
    width: 60%;
    max-width: 4000px;
    margin: 20px auto;
    padding: 15px 30px;
    background-color: #50004f;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 40px;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: #218838;
}
h1 {
    color: #2e5984;
    margin-bottom: 8px;
    text-align: left;
}
h2 {
    color: #444;
    margin-top: 32px;
}
ul {
    margin-left: 24px;
    padding: 0;
    list-style: none;
}
li {
    margin-bottom: 12px;
    font-size: 1.08em;
}
a {
    color: #111154;
    font-weight: bold;
    text-decoration: underline;
}
.footer {
    font-size: 0.95em;
    color: #888;
    margin-top: 40px;
    text-align: center;
}
