* {
    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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: #2c3e50;
    color: white;
    padding: 25px 0;
}
.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
.hero {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.hero h1 {
    font-size: 38px;
    margin-bottom: 15px;
}
.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn:hover {
    background: #2980b9;
}
section {
    padding: 50px 0;
    background: white;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}
h3 {
    font-size: 22px;
    color: #2980b9;
    margin: 15px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}
.feature-box {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}
.feature-box ul {
    list-style-position: inside;
    margin-top: 10px;
}
.feature-box li {
    margin: 8px 0;
}
.steps-list {
    max-width: 700px;
    margin: 0 auto;
}
.steps-list li {
    margin: 12px 0;
    font-size: 16px;
}
.faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}
.faq-question {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}
.cta {
    text-align: center;
    padding: 40px 20px;
}
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 25px 0;
    margin-top: 30px;
}
footer a {
    color: white;
}