 .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .project-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }
    .project-card:hover {
      transform: translateY(-5px);
    }
    .project-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .project-card h3 {
      margin: 1rem;
      color: #4cafef;
    }
    .project-card p {
      margin: 0 1rem 1rem;
    }
    .project-card a {
      display: block;
      text-align: center;
      padding: 0.7rem;
      background: #4cafef;
      color: white;
      text-decoration: none;
      font-weight: 600;
      border-radius: 0 0 10px 10px;
    }
    .project-card a:hover {
      background: #81c784;
    }