body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f9f9f9;
      color: #333;
    }

    header {
      background-color: #333;
      color: white;
      padding: 20px;
      text-align: center;
    }

    .container {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
    }

    h2 {
      color: #007bff;
      margin-bottom: 10px;
    }

    p {
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .values, .team {
      margin-top: 40px;
    }

    .team-members {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .member {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      flex: 1 1 250px;
    }

    footer {
      background-color: #222;
      color: white;
      text-align: center;
      padding: 15px 0;
      font-size: 14px;
      margin-top: 60px;
    }

    .back-home-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #555;
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 15px;
      font-weight: bold;
      z-index: 1000;
    }
    .back-home-button:hover {
      background-color: #333;
    }