* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #2b2b2b;
    background: #fdfcfa;
}

.container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    padding: 70px 0;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
    line-height: 1.2;
    color: #2e5d34;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 22px;
    color: #4a4a4a;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background: #4caf50;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: background 0.2s;
}

.btn:hover {
    background: #43a047;
}

.btn-big {
    font-size: 24px;
    padding: 20px 50px;
}

.section {
    padding: 55px 0;
}

.section-alt {
    background: #f4f6f2;
}

.section h2 {
    font-size: 32px;
    color: #2e5d34;
    margin-bottom: 25px;
    text-align: center;
}

.lead {
    font-size: 22px;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.benefits {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.benefits li {
    padding: 16px 16px 16px 50px;
    position: relative;
    font-size: 21px;
    border-bottom: 1px solid #e0e0e0;
}

.benefits li:before {
    content: "✓";
    position: absolute;
    left: 15px;
    color: #4caf50;
    font-weight: bold;
    font-size: 24px;
}

.price-card {
    background: #fff;
    border: 2px solid #4caf50;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.price {
    font-size: 52px;
    font-weight: 700;
    color: #2e5d34;
    margin-bottom: 15px;
}

.secure-note {
    margin-top: 20px;
    font-size: 17px;
    color: #777;
}

.reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 640px;
    margin: 0 auto;
}

.review {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.review-author {
    display: block;
    margin-top: 12px;
    color: #4caf50;
    font-weight: 600;
}

.faq-item {
    max-width: 640px;
    margin: 0 auto 25px;
}

.faq-item h3 {
    font-size: 22px;
    color: #2e5d34;
    margin-bottom: 8px;
}

.footer {
    background: #2e5d34;
    color: #fff;
    text-align: center;
    padding: 35px 0;
}

.footer-small {
    font-size: 16px;
    color: #bcd9bf;
    margin-top: 8px;
}

@media (max-width: 600px) {
    .hero h1 { font-size: 30px; }
    .subtitle { font-size: 19px; }
    .section h2 { font-size: 26px; }
    .btn-big { font-size: 21px; padding: 18px 36px; width: 100%; }
    body { font-size: 18px; }
}
