* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    text-align: center;
    padding: 60px 0 40px;
}

header h1 {
    font-size: 2.5em;
    color: #1a73e8;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2em;
    color: #666;
}

.hero {
    padding: 40px 0;
    text-align: center;
}

.hero h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: #222;
}

.hero p {
    font-size: 1.1em;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.how-it-works {
    padding: 40px 0;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.4em;
}

.steps {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1a73e8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.step p {
    font-size: 0.95em;
    color: #666;
}

.benefits {
    padding: 40px 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.benefits ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.benefits li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05em;
}

.benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

.cta {
    text-align: center;
    padding: 50px 0;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 40px 0;
}

.cta h2 {
    margin-bottom: 10px;
    font-size: 1.4em;
}

.cta p {
    margin-bottom: 25px;
    color: #666;
}

.btn-cta {
    display: inline-block;
    background: #1a73e8;
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-cta:hover {
    background: #1557b0;
}

footer {
    text-align: center;
    padding: 40px 0;
    color: #999;
    font-size: 0.9em;
}

footer a {
    color: #1a73e8;
    text-decoration: none;
}

@media (max-width: 600px) {
    header h1 { font-size: 2em; }
    .hero h2 { font-size: 1.3em; }
    .steps { flex-direction: column; align-items: center; }
}
