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

:root {
--primary-color: #2d5016;
--secondary-color: #5a8c2e;
--accent-color: #8bc34a;
--dark-color: #1a3409;
--light-color: #f1f8e9;
--text-color: #333;
--white: #fff;
--gray: #666;
--light-gray: #f5f5f5;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.5;
color: var(--text-color);
font-size: 14px;
}

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

.header {
background: var(--white);
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
transition: transform 0.3s ease;
}

.header.hidden {
transform: translateY(-100%);
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 0;
}

.logo {
font-size: 18px;
font-weight: 700;
color: var(--primary-color);
}

.nav ul {
display: flex;
list-style: none;
gap: 20px;
}

.nav a {
text-decoration: none;
color: var(--text-color);
font-size: 13px;
font-weight: 500;
transition: color 0.3s;
}

.nav a:hover {
color: var(--secondary-color);
}

.menu-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 22px;
height: 2px;
background: var(--primary-color);
margin: 3px 0;
transition: 0.3s;
}

.hero-modern {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, #1a3409 0%, #2d5016 50%, #5a8c2e 100%);
overflow: hidden;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
opacity: 0.4;
}

.hero-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 50px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-text {
color: var(--white);
}

.hero-badge {
display: inline-block;
background: rgba(139, 195, 74, 0.2);
color: var(--accent-color);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 20px;
border: 1px solid rgba(139, 195, 74, 0.3);
}

.hero-text h1 {
font-size: 48px;
line-height: 1.2;
margin-bottom: 20px;
font-weight: 800;
}

.hero-text p {
font-size: 17px;
line-height: 1.7;
opacity: 0.9;
margin-bottom: 30px;
max-width: 550px;
}

.hero-buttons {
display: flex;
gap: 15px;
margin-bottom: 40px;
flex-wrap: wrap;
}

.btn-outline {
display: inline-block;
background: transparent;
color: var(--white);
padding: 12px 28px;
text-decoration: none;
border-radius: 4px;
font-weight: 600;
font-size: 14px;
border: 2px solid var(--white);
transition: all 0.3s;
}

.btn-outline:hover {
background: var(--white);
color: var(--primary-color);
}

.hero-stats {
display: flex;
gap: 35px;
flex-wrap: wrap;
}

.stat-item {
display: flex;
flex-direction: column;
}

.stat-number {
font-size: 32px;
font-weight: 800;
color: var(--accent-color);
line-height: 1;
}

.stat-label {
font-size: 12px;
opacity: 0.8;
margin-top: 5px;
}

.hero-image {
position: relative;
}

.hero-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.section-header {
text-align: center;
margin-bottom: 40px;
}

.section-label {
display: inline-block;
background: var(--light-color);
color: var(--secondary-color);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 12px;
}

.section-header h2 {
margin-bottom: 10px;
}

.section-header p {
color: var(--gray);
font-size: 15px;
}

.service-icon {
font-size: 40px;
margin-bottom: 15px;
}

.breadcrumb {
font-size: 13px;
margin-bottom: 15px;
color: rgba(255,255,255,0.8);
}

.breadcrumb a {
color: var(--white);
text-decoration: none;
}

.breadcrumb a:hover {
text-decoration: underline;
}

.about-features {
margin-top: 25px;
display: flex;
flex-direction: column;
gap: 12px;
}

.feature-item {
padding: 12px 12px 12px 35px;
background: var(--light-color);
border-radius: 4px;
position: relative;
font-size: 13px;
font-weight: 500;
}

.feature-item:before {
content: "✓";
position: absolute;
left: 12px;
color: var(--accent-color);
font-weight: 700;
font-size: 16px;
}

.testimonials {
background: var(--light-gray);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 30px;
}

.testimonial-card {
background: var(--white);
padding: 25px;
border-radius: 8px;
border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
font-size: 14px;
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
color: var(--text-color);
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 3px;
}

.testimonial-author strong {
font-size: 14px;
color: var(--primary-color);
}

.testimonial-author span {
font-size: 12px;
color: var(--gray);
}

.guarantee {
padding: 60px 0;
background: var(--light-color);
}

.guarantee-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.guarantee-points {
margin: 25px 0;
display: flex;
flex-direction: column;
gap: 12px;
}

.point-item {
padding: 12px 12px 12px 35px;
background: var(--white);
border-radius: 4px;
position: relative;
font-size: 13px;
font-weight: 500;
}

.point-item:before {
content: "✓";
position: absolute;
left: 12px;
color: var(--accent-color);
font-weight: 700;
font-size: 16px;
}

.guarantee-image img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.package-label {
display: inline-block;
background: var(--light-color);
color: var(--secondary-color);
padding: 4px 12px;
border-radius: 12px;
font-size: 11px;
font-weight: 600;
margin-bottom: 10px;
}

.package-label.popular {
background: var(--accent-color);
color: var(--dark-color);
}

.contact-note {
font-size: 12px;
color: var(--gray);
margin-top: 8px;
}

.cta-phone {
font-size: 28px;
font-weight: 700;
color: var(--primary-color);
margin-top: 15px;
}

.btn {
display: inline-block;
background: var(--accent-color);
color: var(--dark-color);
padding: 10px 24px;
text-decoration: none;
border-radius: 4px;
font-weight: 600;
font-size: 13px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

.btn:hover {
background: var(--secondary-color);
color: var(--white);
transform: translateY(-2px);
}

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--primary-color);
padding: 10px 24px;
text-decoration: none;
border-radius: 4px;
font-weight: 600;
font-size: 13px;
border: 2px solid var(--primary-color);
transition: all 0.3s;
}

.btn-secondary:hover {
background: var(--primary-color);
color: var(--white);
}

section {
padding: 50px 0;
}

h2 {
font-size: 26px;
margin-bottom: 20px;
color: var(--primary-color);
font-weight: 700;
}

h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark-color);
font-weight: 600;
}

.services {
background: var(--light-gray);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 30px;
}

.service-card {
background: var(--white);
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.service-card h3 {
margin-bottom: 12px;
}

.service-card p {
margin-bottom: 15px;
font-size: 13px;
line-height: 1.6;
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}

.about-text p {
margin-bottom: 15px;
font-size: 14px;
line-height: 1.7;
}

.about-image img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.seasonal {
background: var(--light-color);
}

.seasonal-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
margin-top: 30px;
}

.season-card {
background: var(--white);
padding: 20px;
border-radius: 8px;
border-left: 4px solid var(--accent-color);
}

.season-card h3 {
color: var(--secondary-color);
margin-bottom: 10px;
}

.season-card p {
font-size: 13px;
line-height: 1.6;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 25px;
margin-top: 30px;
}

.step {
text-align: center;
}

.step-number {
width: 50px;
height: 50px;
background: var(--secondary-color);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: 700;
margin: 0 auto 15px;
}

.step h3 {
margin-bottom: 10px;
font-size: 16px;
}

.step p {
font-size: 13px;
}

.benefits {
background: var(--light-gray);
}

.benefits-list {
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 15px;
margin-top: 20px;
}

.benefits-list li {
padding: 12px 12px 12px 35px;
background: var(--white);
border-radius: 4px;
position: relative;
font-size: 13px;
}

.benefits-list li:before {
content: "✓";
position: absolute;
left: 12px;
color: var(--accent-color);
font-weight: 700;
font-size: 16px;
}

.cta {
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
color: var(--white);
text-align: center;
}

.cta h2 {
color: var(--white);
margin-bottom: 15px;
}

.cta p {
margin-bottom: 20px;
font-size: 15px;
}

.footer {
background: var(--dark-color);
color: var(--white);
padding: 40px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin-bottom: 30px;
}

.footer-col h4 {
color: var(--accent-color);
margin-bottom: 15px;
font-size: 15px;
}

.footer-col p {
font-size: 13px;
line-height: 1.7;
margin-bottom: 8px;
}

.footer-col ul {
list-style: none;
}

.footer-col ul li {
margin-bottom: 8px;
}

.footer-col a {
color: var(--white);
text-decoration: none;
font-size: 13px;
transition: color 0.3s;
}

.footer-col a:hover {
color: var(--accent-color);
}

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.1);
font-size: 12px;
}

.page-hero {
background: var(--primary-color);
color: var(--white);
padding: 50px 0;
text-align: center;
}

.page-hero h1 {
font-size: 30px;
margin-bottom: 10px;
}

.page-hero p {
font-size: 15px;
}

.service-detail {
padding: 50px 0;
}

.service-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: start;
}

.service-text h2 {
margin-bottom: 15px;
}

.service-text p {
margin-bottom: 15px;
font-size: 14px;
line-height: 1.7;
}

.service-text ul {
margin: 20px 0 20px 20px;
}

.service-text li {
margin-bottom: 8px;
font-size: 13px;
}

.service-image img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pricing {
background: var(--light-gray);
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
margin-top: 30px;
}

.price-card {
background: var(--white);
padding: 30px 20px;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

.price-card:hover {
transform: translateY(-5px);
}

.price-card.featured {
border: 2px solid var(--accent-color);
transform: scale(1.05);
}

.price {
font-size: 36px;
font-weight: 700;
color: var(--secondary-color);
margin: 15px 0 5px;
}

.price-period {
font-size: 12px;
color: var(--gray);
margin-bottom: 20px;
}

.price-card ul {
list-style: none;
margin: 20px 0;
text-align: left;
}

.price-card li {
padding: 8px 0;
font-size: 13px;
border-bottom: 1px solid var(--light-gray);
}

.tips {
padding: 50px 0;
}

.tips-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
margin-top: 30px;
}

.tip-card {
background: var(--light-color);
padding: 20px;
border-radius: 8px;
}

.tip-card h3 {
color: var(--secondary-color);
margin-bottom: 10px;
}

.tip-card p {
font-size: 13px;
line-height: 1.6;
}

.mulching-info {
background: var(--light-gray);
}

.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
margin-top: 30px;
}

.info-card {
background: var(--white);
padding: 20px;
border-radius: 8px;
}

.info-card h3 {
color: var(--secondary-color);
margin-bottom: 10px;
}

.info-card p {
font-size: 13px;
line-height: 1.6;
}

.seasonal-planting {
padding: 50px 0;
}

.planting-timeline {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
margin-top: 30px;
}

.timeline-item {
background: var(--light-color);
padding: 20px;
border-radius: 8px;
border-left: 4px solid var(--accent-color);
}

.timeline-item h3 {
color: var(--secondary-color);
margin-bottom: 10px;
}

.timeline-item p {
font-size: 13px;
line-height: 1.6;
}

.contact-section {
padding: 50px 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 40px;
}

.contact-info {
background: var(--light-color);
padding: 30px;
border-radius: 8px;
}

.contact-item {
margin-bottom: 25px;
}

.contact-item h3 {
font-size: 16px;
margin-bottom: 8px;
color: var(--secondary-color);
}

.contact-item p {
font-size: 13px;
line-height: 1.7;
}

.contact-form-wrapper h2 {
margin-bottom: 15px;
}

.contact-form-wrapper > p {
margin-bottom: 25px;
font-size: 14px;
}

.form-group {
margin-bottom: 18px;
}

.form-group label {
display: block;
margin-bottom: 6px;
font-weight: 600;
font-size: 13px;
color: var(--dark-color);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 13px;
font-family: inherit;
transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--secondary-color);
}

.checkbox-group {
margin: 20px 0;
}

.checkbox-label {
display: flex;
align-items: start;
gap: 10px;
font-size: 12px;
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
margin-top: 3px;
width: auto;
}

.checkbox-label a {
color: var(--secondary-color);
text-decoration: underline;
}

.map-section {
padding: 50px 0;
background: var(--light-gray);
}

.map-wrapper {
margin-top: 25px;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-cta {
background: var(--light-color);
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark-color);
color: var(--white);
padding: 20px;
z-index: 9999;
box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
display: none;
}

.privacy-popup.show {
display: block;
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
}

.privacy-content h3 {
color: var(--accent-color);
margin-bottom: 10px;
font-size: 16px;
}

.privacy-content p {
font-size: 13px;
margin-bottom: 15px;
}

.privacy-buttons {
display: flex;
gap: 15px;
align-items: center;
}

.privacy-buttons button {
background: var(--accent-color);
color: var(--dark-color);
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-weight: 600;
font-size: 13px;
}

.privacy-buttons a {
color: var(--white);
font-size: 12px;
text-decoration: underline;
}

.policy-page {
padding: 50px 0;
}

.policy-content {
max-width: 900px;
margin: 0 auto;
}

.update-date {
font-size: 12px;
color: var(--gray);
margin-bottom: 30px;
}

.policy-content h2 {
margin-top: 35px;
margin-bottom: 15px;
font-size: 22px;
}

.policy-content h3 {
margin-top: 25px;
margin-bottom: 12px;
font-size: 17px;
}

.policy-content p {
margin-bottom: 15px;
font-size: 14px;
line-height: 1.7;
}

.policy-content ul {
margin: 15px 0 15px 25px;
}

.policy-content li {
margin-bottom: 8px;
font-size: 14px;
line-height: 1.6;
}

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--light-color), var(--white));
padding: 20px;
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 600px;
}

.thankyou-icon {
width: 80px;
height: 80px;
background: var(--accent-color);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
margin: 0 auto 25px;
}

.thankyou-content h1 {
font-size: 32px;
color: var(--primary-color);
margin-bottom: 15px;
}

.thankyou-content p {
font-size: 15px;
margin-bottom: 15px;
line-height: 1.6;
}

.thankyou-info {
background: var(--light-color);
padding: 20px;
border-radius: 8px;
margin: 25px 0;
}

.thankyou-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-top: 30px;
}

.error-code {
font-size: 80px;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 20px;
}

.error-content h1 {
font-size: 28px;
color: var(--primary-color);
margin-bottom: 15px;
}

.error-content p {
font-size: 15px;
margin-bottom: 30px;
}

.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
background: var(--white);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: left 0.3s;
padding: 20px;
}

.nav.active {
left: 0;
}

.nav ul {
flex-direction: column;
gap: 15px;
}

.menu-toggle {
display: flex;
}

.hero-modern {
min-height: auto;
padding: 50px 0;
}

.hero-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.hero-text h1 {
font-size: 32px;
}

.hero-text p {
font-size: 15px;
}

.hero-stats {
gap: 25px;
}

.stat-number {
font-size: 28px;
}

h2 {
font-size: 22px;
}

.about-content,
.service-content,
.contact-wrapper,
.guarantee-content {
grid-template-columns: 1fr;
gap: 30px;
}

.services-grid,
.seasonal-grid,
.process-steps,
.pricing-grid,
.tips-grid,
.info-grid,
.planting-timeline,
.testimonials-grid {
grid-template-columns: 1fr;
}

.footer-content {
grid-template-columns: 1fr;
gap: 25px;
}

.price-card.featured {
transform: scale(1);
}

section {
padding: 35px 0;
}

.thankyou-content h1,
.error-content h1 {
font-size: 24px;
}

.error-code {
font-size: 60px;
}
}

@media (max-width: 480px) {
body {
font-size: 13px;
}

.hero-modern {
padding: 40px 0;
}

.hero-text h1 {
font-size: 26px;
}

.hero-text p {
font-size: 14px;
}

.hero-buttons {
flex-direction: column;
}

.hero-stats {
flex-direction: column;
gap: 15px;
}

.btn,
.btn-secondary,
.btn-outline {
padding: 10px 20px;
font-size: 13px;
width: 100%;
text-align: center;
}

.logo {
font-size: 16px;
}

.thankyou-actions,
.error-actions {
flex-direction: column;
}

.stat-number {
font-size: 24px;
}

.cta-phone {
font-size: 22px;
}
}

@media (max-width: 320px) {
.container {
padding: 0 12px;
}

.hero-text h1 {
font-size: 22px;
}

.hero-text p {
font-size: 13px;
}

h2 {
font-size: 20px;
}

h3 {
font-size: 16px;
}

.service-card,
.price-card,
.testimonial-card {
padding: 18px;
}

.btn,
.btn-secondary,
.btn-outline {
padding: 8px 16px;
font-size: 12px;
}

.stat-number {
font-size: 20px;
}

.service-icon {
font-size: 32px;
}
}
