.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.project-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-content {
  padding: 15px;
}

.project-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.project-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.project-links {
  margin-top: 10px;
}

.project-links a {
  text-decoration: none;
  color: #333;
  background-color: #f0f0f0;
  padding: 8px 15px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-right: 10px;
  display: inline-block;
}

.project-links a:hover {
  background-color: #e0e0e0;
}

.icon {
  margin-right: 5px;
}

.body-section {
  padding: 80px 20px; /* Increased padding for better spacing */
  background: #fff;
  text-align: center;
  max-width: 1000px; /* Adjusted max-width for larger screens */
  margin: 0 auto; /* Center align the section */
}
