/* AgriFuture Page Styles */

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

.content-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #0f1e40;
  font-weight: 600;
}

.content-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.project-highlight {
  background-color: #f8f9fa;
  border-left: 4px solid #1ec6ff;
  padding: 20px;
  margin: 30px 0;
  border-radius: 4px;
}

.project-highlight h3 {
  color: #0f1e40;
  margin-bottom: 10px;
  font-weight: 600;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #1ec6ff, #40d2ff);
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(30, 198, 255, 0.3);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.9;
}
