body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

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

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
    margin-top: 30px;
}

p, ul {
    font-size: 16px;
    line-height: 1.5;
}

ul {
    list-style-type: none;
}

strong {
    font-weight: bold;
}

section {
    margin-bottom: 40px;
    text-align: center; 
}

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

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