* { 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

header {
  background: #2f5233;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

header h1 {
  font-size: 1.5rem;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background: url('images/plant5.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #77b255;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #5a8c40;
}

.section {
  padding: 60px 0;
}

.section.light {
  background: #f9f9f9;
}

.section h2 {
  text-align: center;
  color: #2f5233;
  margin-bottom: 20px;
}

.section .container {
  width: 90%;
  margin: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
}

.services {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  text-align: center;
}

.services li {
  background: #e8f5e9;
  padding: 20px;
  border-radius: 8px;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-cards.centralize {
  justify-content: center;
}

.contact-cards .card {
  background: #e8f5e9;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  width: 220px;
  text-align: left;
  word-wrap: break-word;
}

.contact-cards .icon {
  font-size: 2rem;
  margin-right: 10px;
}

.contact-cards .text {
  display: flex;
  flex-direction: column;
}

.contact-cards .text p a {
  word-break: break-all;
}

.contact-form {
  display: grid;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto 30px auto;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background: #2f5233;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #77b255;
}

.map {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  background: #2f5233;
  color: #fff;
  padding: 10px 0;
  font-size: 0.9rem;
}

.center-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.7;
}