* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --white: #FFFFFF;
    --dark: #1C1C1C;
    --green: #357328;
    --light-gray: #F8F8F8;
    --gray: #727272;
    --max-width: 1180px;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

h1, h2, h3, h4 { font-family: 'Poppins', Arial, sans-serif; }
a { text-decoration: none; color: inherit; }

/* Nav */
.nav {
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo img {
    border-radius: 6px;
}
.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-links a {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
}

/* Hero */
.hero {
    padding: 80px 24px;
    text-align: center;
    background: var(--white);
    border-bottom: 3px solid var(--green);
}
.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--dark);
}
.hero h1 span {
    color: var(--green);
}
.hero p {
    font-size: 18px;
    color: var(--gray);
}

/* Sections */
.section {
    padding: 60px 24px;
}
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.section.alt {
    background: var(--light-gray);
}
.section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}
.section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--green);
}
.section p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Benefits */
.benefits-list {
    list-style: none;
    margin: 12px 0 28px;
}
.benefits-list li {
    padding: 8px 0 8px 24px;
    font-size: 14px;
    color: var(--gray);
    position: relative;
    line-height: 1.7;
}
.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 20px;
}
.feature-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-left: 4px solid var(--green);
    border-radius: 6px;
    padding: 24px;
}
.feature-card p {
    margin-bottom: 0;
}

/* Steps */
.steps-list {
    list-style: none;
    counter-reset: step;
}
.steps-list li {
    counter-increment: step;
    padding: 14px 0 14px 56px;
    font-size: 14px;
    color: var(--gray);
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid #eee;
}
.steps-list li:last-child { border-bottom: none; }
.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 12px;
    width: 36px;
    height: 36px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
}

/* Form */
.form-container {
    max-width: 500px;
}
.form-container h3 {
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--dark);
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
}
.form-group select {
    height: 140px;
}
.form-submit {
    padding: 12px 40px;
    border: 2px solid var(--green);
    background: transparent;
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}
.form-submit:hover {
    background: var(--green);
    color: var(--white);
}

/* Embedded form pages */
.embed-container {
    max-width: var(--max-width);
    margin: 0 auto;
}
.embed-container p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}
.embed-container a {
    color: var(--green);
    text-decoration: underline;
}
.embed-container iframe {
    width: 100%;
    min-height: 800px;
    border: none;
    margin-top: 16px;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 40px 24px;
    text-align: center;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.2s;
}
.social-links a:hover {
    background: var(--green);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .hero h1 { font-size: 36px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .hero h1 { font-size: 28px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; gap: 10px; }
}
