@charset "utf-8";
/* CSS Document */

<style>
    body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      background: #f9f9f9;
      margin: 0;
      padding: 20px;
    }
    .projects {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 30px;
      max-width: 1200px;
      margin: auto;
    }
    .projects h1 {
      text-align: center;
      margin-bottom: 40px;
      color: #333;
    }
    .project-row {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }
    .project-item {
      flex: 0 0 48%;
      background: #f4f4f4;
      border-radius: 6px;
      padding: 20px;
      box-sizing: border-box;
      transition: all 0.3s ease;
      margin-bottom: 20px;
    }
    .project-item:hover {
      background: #e9e9e9;
      transform: translateY(-5px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
    .project-item h2 {
      color: #006699;
      margin-top: 0;
      font-size: 1.2em;
    }
    .project-item p {
      color: #444;
      line-height: 1.6;
      font-size: 0.95em;
    }
    @media(max-width: 768px) {
      .project-item {
        flex: 0 0 100%;
      }
    }
  </style>
  