* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}
.hero h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #222;
}
.hero p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #555;
}
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    margin: 0 8px;
}
.btn-primary {
    background: #0d6efd;
    color: white;
}
.btn-success {
    background: #198754;
    color: white;
}
.section {
    padding: 40px 0;
}
.section.bg-light {
    background: #f8f9fa;
}
.text-center {
    text-align: center;
}
h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
}
h3 {
    font-size: 18px;
    margin: 30px 0 15px;
    color: #222;
}
p {
    margin-bottom: 16px;
    color: #444;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.col {
    flex: 1;
    padding: 0 15px;
    margin-bottom: 24px;
}
.col-md-6 {
    width: 50%;
}
.col-lg-3 {
    width: 25%;
}
.col-md-4 {
    width: 33.33%;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
}
.feature-icon {
    color: #0d6efd;
    font-size: 18px;
    margin-right: 8px;
}
ul {
    list-style: none;
}
li {
    margin-bottom: 10px;
}
ol {
    padding-left: 20px;
    margin-bottom: 20px;
}
.faq-item {
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 16px;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}
.faq-answer {
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer.show {
    padding: 0 16px 16px;
    max-height: 200px;
}
footer {
    text-align: center;
    padding: 24px 0;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .col-md-6, .col-md-4, .col-lg-3 {
width: 100%;
    }
    .hero h1 {
font-size: 26px;
    }
}