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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
  min-height: 100vh;
  padding: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
}

.title {
  font-size: 3.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
  text-shadow: none;
  font-weight: 700;
}

.hero-image {
  max-width: 100%;
  width: auto;
  height: 200px;
  object-fit: contain;
  margin: 1.5rem 0;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.subtitle {
  font-size: 1.2rem;
  color: #64748b;
  font-weight: 400;
}

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

.project-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.1rem;
  border-bottom: 1px solid #eee;
  position: relative;
}

.project-image::before {
  content: '🖼️';
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.project-image::after {
  content: 'Project Image';
  position: absolute;
  bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.project-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.project-button {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.project-button:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
  transform: translateY(-2px);
}

.stats {
  margin-top: 3rem;
  text-align: center;
  color: #475569;
  opacity: 0.9;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
}

.stats-label {
  font-size: 1rem;
  margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
  body {
    padding: 1rem;
  }

  .title {
    font-size: 2.5rem;
  }

  .hero-image {
    height: 150px;
    margin: 1rem 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-image {
    height: 150px;
  }
}

@media screen and (max-width: 500px) {
  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .hero-image {
    height: 120px;
    margin: 0.75rem 0;
  }

  .project-content {
    padding: 1rem;
  }
}
