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

body {
  font-family: 'Segoe UI', sans-serif;
}




/* Product Grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  padding: 30px 20px;
}

.product-card {
  flex: 1 1 calc(25% - 40px);
  max-width: 250px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #006400;
}

.product-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

.product-card button {
  background-color: #006400;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card button:hover {
  background-color: #009933;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .intro-section {
    flex-direction: column;
  }
  .product-card {
    flex: 1 1 100%;
    max-width: none;
  }
}


.video-section {
  padding: 40px 20px;
  background-color: #f0fff0;
  text-align: center;
}

.video-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-box {
  width: 48%;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-box iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .video-box {
    width: 100%;
  }
}
