/* Import Roboto (Google Fonts) */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #222;
  background: #f9f9f9;
  line-height: 1.6;
}

/* Variables */
:root {
  --green: #2b9e4b;
  --dark: #1b1b1b;
  --light: #ffffff;
  --gray: #f0f0f0;
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  --radius: 12px;
}

/* Header */
.site-header {
  background: var(--light);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
}
.brand {
  text-decoration: none;
  color: var(--dark);
}
.brand-title {
  font-size: 1.4rem;
  font-weight: 700;
}
.brand-sub {
  display: block;
  font-size: 0.9rem;
  color: var(--green);
}

/* Navigation */
.nav-toggle {
  display: none;
}
.menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}
.menu a:hover {
  color: var(--green);
}

/* Hero */
.hero {
  padding: 60px 20px;
  background: linear-gradient(to right, #e8f5e9, #f9f9f9);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.hero-text .lead {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.hero-media img {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid var(--green);
  color: var(--green);
  font-weight: 500;
  margin-right: 10px;
  transition: 0.3s;
}
.btn:hover {
  background: var(--green);
  color: var(--light);
}
.btn.primary {
  background: var(--green);
  color: var(--light);
}

/* Sections */
.section {
  padding: 60px 20px;
}
.section.alt {
  background: var(--gray);
}
.section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0;
}
.features li {
  background: var(--light);
  padding: 15px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}
.features .icon {
  font-size: 1.4rem;
}

/* Map */
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin: 20px auto;
  max-width: 900px;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-actions {
  text-align: center;
  margin: 20px 0;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 20px;
}
.site-footer nav {
  margin-top: 10px;
}
.site-footer a {
  color: var(--green);
  margin: 0 10px;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .menu {
    display: none;
  }
  .nav-toggle {
    display: inline-block;
    background: var(--green);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: var(--radius);
    cursor: pointer;
  }
}
