* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
body {
    background-color: #f8f9fa;
    color: #222;
    line-height: 1.65;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
header {
    padding: 40px 20px;
    text-align: center;
    background: #0d6efd;
    color: white;
    border-radius: 10px;
    margin-bottom: 30px;
}
h1 {
    font-size: 32px;
    margin-bottom: 10px;
}
.subtitle {
    font-size: 18px;
    font-weight: 400;
}
.section {
    background: white;
    padding: 28px 30px;
    border-radius: 10px;
    margin-bottom: 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
h2 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #111;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}
h3 {
    font-size: 20px;
    margin: 22px 0 12px;
    color: #222;
}
p {
    margin-bottom: 12px;
}
ul {
    padding-left: 22px;
    margin-bottom: 16px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 20px;
}
.card {
    padding: 20px;
    background: #f1f5ff;
    border-radius: 8px;
}
.card h4 {
    margin-bottom: 8px;
    color: #0d6efd;
}
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #198754;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    margin-top: 10px;
}
.btn:hover {
    background: #157347;
}
		
.btn.online {
    background-color: #0099ff;
}

.btn.online:hover {
    background-color: #0d6efd;
}

.faq-item {
    margin-bottom: 18px;
}
.faq-question {
    font-weight: 600;
    margin-bottom: 4px;
}
.steps {
    counter-reset: step;
    margin-top: 20px;
}
.step {
    display: flex;
    margin-bottom: 14px;
    align-items: flex-start;
}
.step::before {
    counter-increment: step;
    content: counter(step);
    background: #0d6efd;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: bold;
}
		.text-center {
			text-align: center;
		}
		
		.cta-section {
			text-align: center;
			margin-top: 30px;
		}

footer {
    text-align: center;
    padding: 30px 20px;
    color: #666;
    font-size: 14px;
}