* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
body {
    background-color: #fff;
    color: #222;
    line-height: 1.65;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}
h1 {
    font-size: 32px;
    color: #111;
    margin-bottom: 10px;
}
.subtitle {
    font-size: 18px;
    color: #444;
    font-weight: 400;
}
section {
    margin-bottom: 40px;
}
h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #222;
}
h3 {
    font-size: 19px;
    margin: 20px 0 10px;
}
p {
    margin-bottom: 12px;
}
ul, ol {
    padding-left: 22px;
    margin-bottom: 15px;
}
.feature-box {
    background: #f7f9fc;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 15px;
}
.faq-item {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}
.faq-question {
    font-weight: 600;
    margin-bottom: 6px;
}
.cta {
    text-align: center;
    padding: 30px;
}
	
.cta-button {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1d4ed8;
}

footer {
    text-align: center;
    margin-top: 20px;
}