* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
}

.page-header {
   background-image: url(./images/wmremove-transformed.jpeg);
  /* background: #2c3e50; */
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

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

.project-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.project-card h2 {
  color: #2c3e50;
  margin-bottom: 12px;
}

.project-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.project-card button {
  background: #c0392b;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}

.project-card button:hover {
  background: #a93226;
}