*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Roboto',Arial,sans-serif;color:#222;line-height:1.6;background:#fff}
img{max-width:100%;height:auto;display:block}
a{color:#2d6a3f;text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:0 20px}

/* Header */
.header{background:#1a1a1a;position:sticky;top:0;z-index:100}
.header .container{display:flex;align-items:center;justify-content:space-between;height:60px}
.header__logo{display:flex;align-items:center;gap:10px;color:#fff;font-size:18px;font-weight:700}
.header__logo img{height:36px;width:auto;border-radius:50%}
.nav{display:flex;gap:24px;list-style:none}
.nav a{color:#ccc;font-size:14px;transition:color .2s}
.nav a:hover,.nav a.active{color:#4caf50;text-decoration:none}
.burger{display:none;background:none;border:none;cursor:pointer;padding:8px}
.burger span{display:block;width:24px;height:2px;background:#fff;margin:5px 0;transition:.3s}
.mobile-nav{display:none;background:#1a1a1a;padding:16px 20px}
.mobile-nav.open{display:block}
.mobile-nav a{display:block;color:#ccc;padding:10px 0;font-size:16px;border-bottom:1px solid #333}

/* Hero */
.hero{background:linear-gradient(135deg,#0a1f0d 0%,#1a3a1f 100%);color:#fff;padding:80px 0;text-align:center}
.hero h1{font-size:42px;font-weight:700;margin-bottom:16px}
.hero p{font-size:18px;color:#b0d4b8;max-width:600px;margin:0 auto 30px}
.hero__btn{display:inline-block;background:#4caf50;color:#fff;padding:14px 36px;border-radius:6px;font-size:16px;font-weight:500;transition:background .2s}
.hero__btn:hover{background:#388e3c;text-decoration:none}

/* Sections */
.section{padding:60px 0}
.section--alt{background:#f5f9f5}
.section__title{font-size:28px;font-weight:700;text-align:center;margin-bottom:12px}
.section__subtitle{text-align:center;color:#666;max-width:700px;margin:0 auto 40px;font-size:16px}

/* Cards grid */
.cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:24px}
.card{background:#fff;border-radius:10px;overflow:hidden;box-shadow:0 2px 12px rgba(0,0,0,.08);transition:transform .2s,box-shadow .2s}
.card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,.12)}
.card__img{width:100%;height:200px;object-fit:cover}
.card__body{padding:20px}
.card__body h3{font-size:18px;margin-bottom:8px}
.card__body p{color:#555;font-size:14px;line-height:1.5}

/* Price cards */
.prices{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:20px}
.price-card{background:#fff;border:2px solid #e0e0e0;border-radius:10px;padding:24px;text-align:center;transition:border-color .2s}
.price-card:hover{border-color:#4caf50}
.price-card h3{font-size:16px;margin-bottom:8px;color:#333}
.price-card .price{font-size:28px;font-weight:700;color:#2d6a3f;margin:12px 0}
.price-card .price small{font-size:14px;font-weight:400;color:#888}
.price-card p{font-size:13px;color:#777}

/* Steps */
.steps{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:24px;counter-reset:step}
.step{text-align:center;padding:20px}
.step::before{counter-increment:step;content:counter(step);display:flex;align-items:center;justify-content:center;width:48px;height:48px;background:#4caf50;color:#fff;border-radius:50%;font-size:20px;font-weight:700;margin:0 auto 16px}
.step h3{font-size:16px;margin-bottom:8px}
.step p{font-size:14px;color:#666}

/* Features */
.features{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.feature{text-align:center;padding:20px}
.feature__icon{font-size:36px;margin-bottom:12px}
.feature h3{font-size:16px;margin-bottom:8px}
.feature p{font-size:14px;color:#666}

/* Gallery */
.gallery{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:16px}
.gallery img{border-radius:8px;height:220px;width:100%;object-fit:cover}

/* Article content */
.article{max-width:800px;margin:0 auto}
.article h1{font-size:32px;margin-bottom:20px}
.article h2{font-size:24px;margin:32px 0 16px;color:#1a3a1f}
.article h3{font-size:20px;margin:24px 0 12px}
.article p{margin-bottom:16px;font-size:16px;line-height:1.7}
.article ul,.article ol{margin:0 0 16px 24px}
.article li{margin-bottom:8px;font-size:16px}
.article img{border-radius:8px;margin:20px 0}
.article blockquote{border-left:4px solid #4caf50;padding:12px 20px;margin:20px 0;background:#f5f9f5;font-style:italic}
.article .warning{background:#fff3e0;border-left:4px solid #ff9800;padding:12px 20px;margin:20px 0;border-radius:0 8px 8px 0}
.article .info{background:#e8f5e9;border-left:4px solid #4caf50;padding:12px 20px;margin:20px 0;border-radius:0 8px 8px 0}

/* Sidebar CTA */
.sidebar-cta{background:#1a3a1f;color:#fff;border-radius:10px;padding:30px;margin:40px 0;text-align:center}
.sidebar-cta h3{font-size:20px;margin-bottom:12px}
.sidebar-cta p{color:#b0d4b8;margin-bottom:20px}
.sidebar-cta a{display:inline-block;background:#4caf50;color:#fff;padding:12px 28px;border-radius:6px}
.sidebar-cta a:hover{background:#388e3c;text-decoration:none}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px}
.contact-info h3{font-size:18px;margin-bottom:16px}
.contact-item{display:flex;gap:12px;margin-bottom:16px;align-items:flex-start}
.contact-item strong{display:block;font-size:14px;color:#666}
.contact-item span{font-size:15px}
.schedule{margin:20px 0}
.schedule td{padding:4px 16px 4px 0;font-size:14px}
.addresses h4{font-size:16px;margin:16px 0 8px}
.addresses p{font-size:14px;color:#555;margin-bottom:4px}

/* Footer */
.footer{background:#1a1a1a;color:#999;padding:30px 0;font-size:13px}
.footer .container{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px}
.footer a{color:#4caf50}

/* Breadcrumbs */
.breadcrumbs{padding:12px 0;font-size:13px;color:#888}
.breadcrumbs a{color:#2d6a3f}
.breadcrumbs span{margin:0 6px}

/* Responsive */
@media(max-width:768px){
  .nav{display:none}
  .burger{display:block}
  .hero h1{font-size:28px}
  .hero p{font-size:16px}
  .features{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .prices{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .footer .container{flex-direction:column;text-align:center}
}
@media(max-width:480px){
  .prices{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
}
