 body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f4f6f8;
      color: #333;
    }
    header, footer {
      background-color: #2c3e50;
      color: white;
      padding: 15px;
      text-align: center;
    }
    nav {
      background-color: #34495e;
      text-align: center;
      padding: 10px;
    }
    nav a {
      color: white;
      margin: 0 10px;
      text-decoration: none;
      font-weight: bold;
    }
    .container {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
    }
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .service {
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      overflow: hidden;
      transition: transform 0.2s;
    }
    .service:hover {
      transform: translateY(-5px);
    }
    .service img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .info {
      padding: 15px;
    }
    .info h2 {
      margin: 0 0 10px;
      font-size: 18px;
      color: #2980b9;
    }
    .info p {
      font-size: 14px;
      margin: 0 0 10px;
    }
    .info a {
      display: inline-block;
      background: #27ae60;
      color: white;
      padding: 8px 12px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }
    .admin-link {
      text-align: center;
      margin-top: 30px;
    }
    .admin-link a {
      color: #3498db;
      text-decoration: none;
    }