/* Global Styles */
:root {
  --primary-color: #2e7d32;
  --secondary-color: #4caf50;
  --text-color: #333;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../../assets/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 120px 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: var(--secondary-color);
}

/* Impact Numbers Section */
.impact-numbers {
  padding: 80px 20px;
  background-color: var(--light-bg);
  text-align: center;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.number-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* What We Do Section */
.what-we-do {
  padding: 80px 20px;
  text-align: center;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-item {
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.process-item:hover {
  transform: translateY(-5px);
}

/* Products Section */
.products-section {
  padding: 80px 20px;
  background-color: var(--light-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.product-category {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.product-category ul {
  list-style: none;
  padding: 0;
}

.product-category li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* Technology Section */
.technology-section {
  padding: 80px 20px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.tech-item {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 20px;
  background-color: var(--light-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.testimonial-item {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.testimonial-item p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-item cite {
  font-weight: bold;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .numbers-grid,
  .process-grid,
  .products-grid,
  .tech-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
