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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2d5016;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a7c1f;
}

.cta-button {
    background: #4a7c1f;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #3a6318;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 31, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c1f 100%);
    color: white;
    padding: 8rem 5% 5rem;
    margin-top: 70px;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn {
    background: white;
    color: #2d5016;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.secondary-btn {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
}

.secondary-btn:hover {
    background: white;
    color: #2d5016;
}

.hero-image {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
}

/* Benefits Section */
.benefits {
    padding: 5rem 5%;
    background: white;
}

.benefits .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.benefit-list li:before {
    content: "✓";
    color: #4a7c1f;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stats-box {
    background: linear-gradient(135deg, #4a7c1f 0%, #2d5016 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.stat {
    margin: 2rem 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: #2d5016;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #666;
}

.stars {
    color: #ffa500;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 5%;
    background: white;
}

.pricing .container {
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: linear-gradient(135deg, #4a7c1f 0%, #2d5016 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.price {
    font-size: 4rem;
    font-weight: bold;
    margin: 1rem 0;
}

.price-details {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.value-props {
    text-align: left;
    margin: 1rem auto;
    width: 400px;
}

.value-props li {
    padding: 0.5rem 0px;
    list-style: none;
}

.value-props li:before {
    content: "✓ ";
    font-weight: bold;
}

/* CTA Section */
.final-cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c1f 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #4a7c1f;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4a7c1f;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

.certification {
    display: inline-block;
    background: rgba(74, 124, 31, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container,
    .benefits .container {
        grid-template-columns: 1fr;
    }
    
.hero h1 { font-size: 2rem;}

.nav-links { display: none;}

.price { font-size: 2.5rem; }
}