body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #333;
}
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e6f7ff;
    padding: 60px 40px;
}
.hero-content {
    max-width: 55%;
}
.hero h1 {
    font-size: 4em;
    margin: 0;
    color: #007bff;
}
.hero h2 {
    font-size: 1.8em;
    margin-top: 10px;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.3em;
    margin-bottom: 25px;
}
.hero-image {
    width: 35%;
    max-width: 400px;
}
.brand {
    font-weight: bold;
    color: #007bff;
}
.cta-button {
    background: #007bff;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 6px;
}
.about, .how-it-works {
    padding: 50px 40px;
    text-align: center;
}
.about p, .how-it-works p {
    font-size: 1.2em;
}
.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}
.step {
    max-width: 250px;
}
.step img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}
footer {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    margin-top: 40px;
}
