
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f9fbfc;
    color: #233d63;
}
.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 30px 15px;
}
header.hero {
    background: linear-gradient(100deg, #2b60e2 50%, #60aefd 100%);
    color: #fff;
    text-align: center;
    padding: 70px 0 50px 0;
}
.logo {
    width: 64px;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 2.7em;
    font-weight: 700;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}
.cta-btn {
    background: #fff;
    color: #2b60e2;
    border: none;
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 1.15em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px #0002;
    transition: background .2s, color .2s;
}
.cta-btn:hover {
    background: #f3f7ff;
    color: #2242a3;
}
.benefits {
    background: #fff;
    padding: 60px 0;
}
.benefits h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
}
.benefit-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}
.benefit-item {
    background: #f2f7ff;
    border-radius: 20px;
    box-shadow: 0 2px 10px #0001;
    text-align: center;
    width: 260px;
    padding: 25px 18px 20px 18px;
    margin-bottom: 12px;
}
.benefit-item img {
    width: 44px;
    margin-bottom: 10px;
}
.benefit-item h3 {
    font-size: 1.1em;
    margin-bottom: 5px;
}
.howitworks {
    background: #f7faff;
    padding: 60px 0 30px 0;
    text-align: center;
}
.howitworks h2 {
    margin-bottom: 18px;
}
.howitworks ol {
    text-align: left;
    display: inline-block;
    font-size: 1.13em;
    margin: 0;
    padding: 0 18px;
}
.signup {
    background: #eaf2fd;
    text-align: center;
    padding: 60px 0;
}
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 380px;
    margin: 0 auto 16px auto;
}
.signup-form input, .signup-form button {
    padding: 14px 12px;
    border-radius: 10px;
    border: 1px solid #b7cef6;
    font-size: 1em;
}
.signup-form button {
    background: #2b60e2;
    color: #fff;
    font-weight: bold;
    border: none;
    transition: background .2s;
    cursor: pointer;
}
.signup-form button:hover {
    background: #2242a3;
}
.disclaimer {
    font-size: 0.93em;
    color: #477;
    margin-top: 0;
}
.faq {
    background: #fff;
    padding: 60px 0 20px 0;
}
.faq h2 {
    text-align: center;
    margin-bottom: 25px;
}
.faq details {
    max-width: 600px;
    margin: 0 auto 10px auto;
    background: #f6f9ff;
    padding: 18px 20px;
    border-radius: 11px;
    box-shadow: 0 1px 6px #0001;
    font-size: 1.08em;
}
footer {
    background: #193068;
    color: #fff;
    text-align: center;
    padding: 22px 0;
    font-size: 1em;
    letter-spacing: 0.03em;
}
@media (max-width: 900px) {
    .benefit-list {{ flex-direction: column; align-items: center; }}
    .benefit-item {{ width: 90%; }}
}
