* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, Helvetica, sans-serif; color: #222; line-height: 1.6; background: #fff; }
header { background: #fff; border-bottom: 3px solid #2e6b1f; padding: 16px 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
header .logo img { height: 60px; display: block; }
nav { width: 100%; background: #2e6b1f; }
nav ul { list-style: none; display: flex; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
nav > ul > li { position: relative; }
nav a { color: #fff; text-decoration: none; font-size: 0.95em; display: block; padding: 12px 18px; }
nav a:hover, nav a.active { background: #1f4d15; }
nav ul ul { display: none; position: absolute; background: #2e6b1f; flex-direction: column; min-width: 200px; z-index: 10; }
nav > ul > li:hover > ul { display: flex; }
nav ul ul a { padding: 10px 18px; border-top: 1px solid #3f7e2c; }
.hero { background: linear-gradient(135deg, #2e6b1f 0%, #4a9433 100%); color: #fff; padding: 30px 5% 26px; text-align: center; }
.hero h1 { font-size: 2em; }
main { max-width: 1000px; margin: 0 auto; padding: 40px 5%; }
h2 { color: #2e6b1f; font-size: 1.5em; margin-bottom: 16px; }
p { margin-bottom: 14px; }
ul.services { list-style: none; margin: 16px 0; }
ul.services li { padding: 8px 0 8px 24px; position: relative; border-bottom: 1px solid #eee; }
ul.services li::before { content: "\2713"; position: absolute; left: 0; color: #2e6b1f; font-weight: bold; }
.photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 24px 0; }
.photos img { width: 100%; height: auto; border-radius: 4px; display: block; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 24px; }
.card { background: #f3f7f0; border-left: 4px solid #4a9433; padding: 20px; border-radius: 4px; }
.card h3 { color: #2e6b1f; margin-bottom: 8px; font-size: 1.05em; }
.card a { color: #2e6b1f; font-weight: bold; text-decoration: none; }
.contact-block { background: #f3f7f0; padding: 26px; border-radius: 6px; margin-top: 20px; }
.contact-block h3 { color: #2e6b1f; margin-bottom: 10px; }
footer { background: #1f4d15; color: #cfe0c8; padding: 26px 5%; text-align: center; font-size: 0.9em; }
footer a { color: #cfe0c8; }
@media (max-width: 700px) {
  nav ul { flex-direction: column; }
  nav ul ul { position: static; display: none; }
  nav > ul > li:hover > ul { display: flex; }
}
