body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    color: #222;
}
.hero {
    background: linear-gradient(120deg, #ff4fe5 0%, #6e7aff 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px 60px 20px;
}
.cta-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 36px;
    background: #fff;
    color: #4f8cff;
    border-radius: 30px;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
    background: #4f8cff;
    color: #fff;
}
.features {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}
.features h2 {
    text-align: center;
    margin-bottom: 32px;
}
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.feature {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px 24px;
    flex: 1 1 220px;
    max-width: 260px;
    text-align: center;
}
footer {
    text-align: center;
    padding: 24px 0;
    background: #e9ecef;
    color: #888;
    font-size: 1em;
    margin-top: 40px;
}
@media (max-width: 700px) {
    .feature-list {
        flex-direction: column;
        gap: 20px;
    }
    .feature {
        max-width: 100%;
    }
    .hero {
        padding: 60px 10px 40px 10px;
    }
} 