body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #fefefe;
      color: #333;
      max-width: 800px;
      margin: auto;
      padding: 2rem;
      line-height: 1.6;
    }
    header {
      text-align: center;
      margin-bottom: 3rem;
    }
    h1 {
      color: #cc5500;
    }
    section {
      margin-bottom: 2rem;
    }
    a {
      color: #0066cc;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    .project {
      background: #f9f9f9;
      border-left: 4px solid #cc5500;
      padding: 1rem;
      margin-bottom: 1rem;
      border-radius: 8px;
    }

.project {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
