* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}
body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
header {
    background: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
}
header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
header p {
    font-size: 1.1rem;
    opacity: 0.95;
}
.section {
    background: white;
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.section h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-left: 4px solid #3498db;
    padding-left: 12px;
}
.section h3 {
    color: #2c3e50;
    margin: 15px 0 10px;
    font-size: 1.2rem;
}
ul, ol {
    margin-left: 22px;
    margin-bottom: 15px;
}
li {
    margin-bottom: 8px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 15px;
}
.feature-box {
    padding: 15px;
    background: #f1f5f9;
    border-radius: 6px;
}
.btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background 0.3s;
}
.btn:hover {
    background: #2980b9;
}
.faq-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #666;
    border-top: 1px solid #eee;
}
		.text-center {
		  text-align: center;
		}
@media (max-width: 768px) {
    header h1 {
font-size: 1.8rem;
    }
    .section {
padding: 20px;
    }
}