* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f7;
}

header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #2d5016;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d5016;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #4a4a4a;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: #6b9e3a;
}

.hero {
  background: linear-gradient(135deg, #f0f7e6 0%, #e8f5d8 100%);
  padding: 100px 30px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  width: 180px;
  height: 180px;
  margin-bottom: 30px;
  object-fit: contain;
}

.hero h1 {
  font-size: 3rem;
  color: #2d5016;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero .tagline {
  font-size: 1.2rem;
  color: #5a7a3a;
  margin-bottom: 30px;
}

.hero .contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a4a4a;
  font-size: 0.95rem;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: #6b9e3a;
}

section {
  padding: 80px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 2.2rem;
  color: #2d5016;
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  color: #3d6b1e;
  margin-bottom: 15px;
  margin-top: 30px;
}

p {
  margin-bottom: 15px;
  color: #555;
  font-size: 1rem;
}

ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
  color: #555;
}

.about-section {
  background: #fff;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-card {
  background: #f9f9f7;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border-left: 4px solid #6b9e3a;
}

.info-card h4 {
  color: #2d5016;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.info-card p {
  color: #666;
  margin: 0;
}

.privacy-content {
  background: #fff;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.privacy-content h3 {
  margin-top: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8f5d8;
}

.privacy-content ul {
  margin-left: 25px;
}

.privacy-content li {
  margin-bottom: 12px;
}

footer {
  background: #2d5016;
  color: #fff;
  text-align: center;
  padding: 30px;
  margin-top: 80px;
}

footer p {
  color: #c5d9a8;
  margin: 5px 0;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #6b9e3a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .nav-links {
    gap: 15px;
    font-size: 0.85rem;
  }

  .hero .contact-info {
    flex-direction: column;
    gap: 15px;
  }
}