/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f2;
  color: #444;
  line-height: 1.6;
}

header {
  background: #ffffff;
  border-bottom: 3px solid #8fbc8f;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 32px;
  font-weight: bold;
  background: linear-gradient(to right, #006400, #90ee90);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo .r {
  color: #006400;
  font-size: 42px;
  position: relative;
  top: 5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #556b2f;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  background: #8fbc8f;
  color: white;
}

main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

section {
  margin-bottom: 50px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

h1, h2 {
  color: #556b2f;
  margin-bottom: 20px;
  background: linear-gradient(to right, #8fbc8f, #556b2f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
}

h2 {
  font-size: 28px;
  border-bottom: 2px solid #8fbc8f;
  padding-bottom: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background: #f8fff8;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #d0e6d0;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-card h3 {
  color: #006400;
  margin-bottom: 10px;
  font-size: 18px;
}

.price {
  font-weight: bold;
  color: #8b4513;
  font-size: 18px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.info-box {
  background: #f0f8f0;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #8fbc8f;
}

.info-box i {
  font-size: 24px;
  color: #556b2f;
  margin-bottom: 10px;
}

footer {
  background: #556b2f;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  font-size: 14px;
}

.footer-bar {
  height: 20px;
  background: linear-gradient(to right, #8fbc8f 0%, #8fbc8f 85%, #b0c4de 85%, #b0c4de 100%);
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .logo {
    font-size: 26px;
  }
  .logo .r {
    font-size: 34px;
  }
}