* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: black;
}

body {
  font-family: sans-serif;
  background: #f8f6f3;
  line-height: 1.3;
}

.title {
  font-size: 3rem;
  text-align: center;
  margin-top: 5vw;
  color: deeppink;
}

.intro {
  text-align: center;
  padding: 8vw 10vw;
}

.step {
  max-width: 800px;
  margin: 0 auto;
  padding: 5vw 2vw;
  line-height: 1.6;
}

.number {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 60px;   /* space between projects */
}

.step p {
  margin: 10px 0;
  font-size: 1rem;
  color: #333;
}

.project-image {
  width: 600px;
  height: auto;
  margin: 20px 0 40px; /* space around image */
  border-radius: 8px; /* optional */
}


.step-boxes {
  display: flex;                  /* horizontal row */
  justify-content: space-between; /* spread boxes evenly */
  margin: 2rem 0;                 /* space above and below boxes */
  gap: 1rem;                      /* space between boxes */
}

.box-outcome h1 {
  font-size: 1.3rem;
  font-weight: 800;
  color: skyblue;
}

.box-outcome{
  flex: 1;                        /* equal width */
  padding: 2rem 1rem;
  background: lightsteelblue;            
  color: black;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  cursor: default;

  text-align: center;
  line-height: 1.5;
}

.highlight {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  font-family: "Georgia", serif;
}

.project-image-wrapper {
  position: relative;
  display: inline-block;
}

.project-image-wrapper img.project-image {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s;
}

.project-image-wrapper img.project-image:hover {
  transform: scale(1.05);
}

.project-image-wrapper .hover-text {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-image-wrapper:hover .hover-text {
  opacity: 1;
}


