* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
h1 {
    color: #222;
    margin-bottom: 10px;
    font-size: 32px;
}
h2 {
    color: #222;
    margin: 30px 0 15px;
    font-size: 24px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}
h3 {
    margin: 20px 0 10px;
    font-size: 20px;
}
p {
    margin-bottom: 12px;
}
ul, ol {
    margin-left: 20px;
    margin-bottom: 15px;
}
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin: 20px 0;
}
.feature-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
}
.faq-item {
    margin-bottom: 18px;
}
.faq-question {
    font-weight: bold;
    margin-bottom: 5px;
}
.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;
}

code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
}
header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}
footer {
    text-align: center;
    margin-top: 20px;
}