body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  header,
  section,
  footer {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
  }
  
  .hero {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1fc8f8, #2f80ed);
    color: #fff;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .hero h2 {
    font-size: 2.5rem;
    padding: 1.5rem 3rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  section {
    background-color: #fff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
  }
  
  section:hover {
    transform: translateY(-5px);
  }
  
  section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
  }
  
  section p {
    font-size: 1.1rem;
    color: #555;
  }
  
  footer {
    color: #777;
    padding: 2rem;
    border-top: 1px solid #eee;
  }
  
  .intro-section {
    background-color: #f0f8ff; /* Light Blue */
  }
  
  .key-findings-section {
    background-color: #f0fff0; /* Light Green */
  }
  
  .next-steps-section {
    background-color: #fff0f5; /* Light Pink */
  }
  .app-description-section {
    background-color: #f8f8ff; /* Lavender */
  }

  
.persona-section {
  max-width: 1000px; /* Wider than other sections */
  margin: 0 auto;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.persona {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  border: 1px solid #eee;
  padding: 2rem;
  border-radius: 8px;
  background-color: #f0f8ff;
}

.persona-image {
  max-width: 150px; /* Or whatever maximum width you want */
  height: auto;      /* Maintain aspect ratio */
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.persona h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.persona h4 {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 1rem;
}

.persona ul {
  list-style: disc;
  padding-left: 2rem;
}

.persona li {
  margin-bottom: 0.5rem;
}

.image-attribution {
  font-size: 0.8rem;
  color: #777;
  text-align: center;
  margin-bottom: 0.5rem;
}

.image-attribution a {
  color: #555;
  text-decoration: none;
}

.image-attribution a:hover {
  text-decoration: underline;
}
/* User Journey Section */
.user-journey-section {
  background-color: #f0f5ff; /* Light blueish */
}

/* Wireframing and Prototype Section */
.wireframing-prototype-section {
  background-color: #f0fff0; /* Light greenish */
}

.wireframe-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.wireframe-image {
  width: 300px; /* Adjust as needed */
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Usability Testing Section */
.usability-testing-section {
  background-color: #fff0f0; /* Light reddish */
}

/* Reflection Section */
.reflection-section {
  background-color: #ffffe0; /* Light yellow */
}

.user-journey-section {
  background-color: #f0f5ff; /* Light blueish */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the content horizontally */
}

.user-journey-image-container {
  width: 100%; /* Take up the full width of the section */
  max-width: 800px; /* Or whatever maximum width you want */
  margin-bottom: 1rem;
}

.user-journey-image {
  width: 100%; /* Make the image responsive */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.user-journey-image:hover {
  transform: scale(2.4); /* Slight zoom on hover */
}

