body {
    font-family: 'Segoe UI', sans-serif;
    background: #ffeeee;
    margin: 0;
    padding: 0;
    color: #333;
}

a {
    text-decoration: none;
    color: #007bff;
}

.header {
    background: #fff;
    padding: 20px 40px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.nav a {
    margin-left: 20px;
    font-size: 16px;
    color: #444;
}

.hero {
    padding: 80px 40px;
    text-align: center;
    background: #fff;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    background-color: #007bff;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    display: inline-block;
}

.btn-secondary {
    background-color: #28a745;
}

.features, .use-cases, .cta-section, .testimonials {
    padding: 60px 40px;
    background: #f1f1f1;
}

.features .feature {
    margin-bottom: 40px;
}

.features .feature.full {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

