body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
}
h1 {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 20px;
    text-align: center;
}
h2 {
    font-size: 1.8rem;
    color: #222;
    border-bottom: 2px solid #5a2d91;
    padding-bottom: 10px;
    margin-top: 40px;
}
h3 {
    font-size: 1.3rem;
    color: #444;
    margin-top: 25px;
    margin-bottom: 10px;
}
p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}
ul, ol {
    margin-bottom: 25px;
    padding-left: 20px;
}
li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}
hr {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 40px 0;
}
strong {
    color: #000;
}
code {
    background-color: #f1f1f1;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}
.cta-container {
    text-align: center;
    margin: 40px 0;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}
.cta-button {
    display: inline-block;
    background-color: #5a2d91;
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, transform 0.1s ease;
}
.cta-button:hover {
    background-color: #44206e;
    transform: translateY(-2px);
}
