body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: #f9fafb;
    color: #111827;
}
.section {
    max-width: 960px;
    margin: 3rem auto;
    padding: 0 1rem;
}
.section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4f46e5;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 0 0 1px #e5e7eb;
}
.feature-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #1f2937;
}
.quote {
    background: #e0e7ff;
    padding: 2rem;
    border-radius: 1rem;
    font-style: italic;
    text-align: center;
}
.cta-final {
    background: #4f46e5;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 1rem;
    margin-top: 3rem;
    margin-bottom: -50px;
}
.cta-final h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}
.cta-final a {
    background: white;
    color: #4f46e5;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
}
.section.how-it-works {
    margin-bottom: 60px;
    padding: 60px 20px;
    background: #f9fafb;
    transition: background 0.3s ease-in-out;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.section-lead {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.step-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

.container {
    margin-left: 6%;
    margin-top: 0;
}

.section-highlight {
    background: linear-gradient(120deg, #f0f4ff 0%, #e6f0ff 100%);
    padding: 80px 20px;
    text-align: center;
    margin-top: 150px;
}

.section-highlight .content {
    max-width: 800px;
    margin: 0 auto;
}

.section-highlight h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e2a3a;
}

.section-highlight .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-highlight .description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}