* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.navbar {
    background: #f8f9fa;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: black;
}

.cta {
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.2rem;
}

.buttons {
    margin-top: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin: 0 0.5rem;
}

.btn.primary {
    background: #007bff;
    color: white;
}

.btn.secondary {
    background: transparent;
    border: 1px solid #007bff;
    color: #007bff;
}

.app-preview {
    text-align: center;
    padding: 2rem 0;
}

.app-image {
    background: #ddd;
    height: 200px;
    margin: 0 auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlights {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.pill {
    background: #e9ecef;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.how-it-works, .feature-grid, .trust, .final-cta {
    padding: 3rem 2rem;
}

.steps {
    display: flex;
    justify-content: space-around;
}

.step {
    width: 30%;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
}

.footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 1rem;
}

.footer-links {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
}