* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: #2c5f2d;
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2c5f2d 0%, #4a8f4d 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #2c5f2d;
  color: white;
}

.btn-primary:hover {
  background: #1f4420;
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background: #545b62;
}

/* Features */
.features {
  padding: 4rem 0;
  background: #f8f9fa;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: #2c5f2d;
}

/* Products */
.products-preview, .content-section {
  padding: 4rem 0;
}

.products-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.category {
  display: inline-block;
  background: #e9ecef;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.product-card h3 {
  margin: 0.5rem 0;
  color: #2c5f2d;
}

.product-card p {
  color: #666;
  margin-bottom: 1rem;
}

.price {
  display: block;
  font-weight: bold;
  color: #2c5f2d;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Page Header */
.page-header {
  background: #2c5f2d;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
}

/* Product Detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.product-image img {
  width: 100%;
  border-radius: 10px;
}

.product-info-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-info-detail h1 {
  margin: 1rem 0;
  color: #2c5f2d;
}

.product-info-detail .description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.product-info-detail .price {
  font-size: 1.5rem;
}

/* Forms */
.quote-form-section, .contact-form-wrapper {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

.quote-form-section h2, .contact-form-wrapper h2 {
  margin-bottom: 1.5rem;
  color: #2c5f2d;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

/* Contact Page */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item h3 {
  color: #2c5f2d;
  margin-bottom: 0.5rem;
}

/* About Page */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  color: #2c5f2d;
  margin-bottom: 1rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.mv-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

.mv-card h3 {
  color: #2c5f2d;
  margin-bottom: 1rem;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 3rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.success-message h1 {
  color: #2c5f2d;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: #2c5f2d;
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .product-detail,
  .contact-wrapper,
  .mission-vision {
    grid-template-columns: 1fr;
  }
}
