body {
  background-color: #E4E6E7; /*The page's background color*/
  font-family: Verdana, sans-serif; /*The default font of the page (applies to all <p> elements)*/
}

.vision-board-container {
  max-width: 1300px;
  margin: 40px auto;
  margin-bottom: 200px;
  background: #fdfdfd; /*The vision board's background color*/
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  line-height: 1.6;
}

.header h1 {
  text-align: center;
  color: #3f51b5; /*The title's text color*/
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-family: Georgia, serif; /*The title's font*/
}

/* Header background colors */
#aspirations-header { background-color: #f57c00; }
#assets-header { background-color: #388e3c; }
#barriers-header { background-color: #d32f2f; }
#purpose-header { background-color: #0288d1; }

.section-title {
  color: white; /*The text color for all section headers*/
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-size: 1.5rem;
  text-align: center;
  transition: all 0.4s ease-in-out;
  font-family: Georgia, serif; /*The font for all section headers*/
}

/* The Aspirational Values Section */

.aspirations-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.aspiration-card {
  flex: 1 1 180px;
  max-width: 250px;
  background: #fff; /*The Aspiration items' background color*/
  padding: 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.aspiration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.aspiration-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  border: 4px solid #fff3e0;
  background-color: #E4E6E7;
}

/* The Assets / Barriers Section */

.two-column-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.column {
  flex: 1 1 450px;
}

.flex-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.horizontal-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fff; 
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.horizontal-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.horizontal-item img {
  flex: 1 1 160px;
  height: 160px;
  max-width: 100%;
  object-fit: cover;
  background-color: #E4E6E7;
}

.item-text {
  flex: 2 1 250px;
  padding: 20px;
  text-align: left;
  font-size: 1.2rem;
}

.asset-item {
  border-left: 8px solid #388e3c; /*The solid line that appears next to Asset item images*/
  background-color: #f1f8f2;  /*The Asset items' background color*/
}

.barrier-item { 
  border-left: 8px solid #d32f2f; /*The solid line that appears next to Barrier item images*/
  background-color: #fff5f5;  /*The Barrier items' background color*/
}

/* The Purpose Section */
.purpose-content {
  display: flex;
  flex-direction: column;
  background-color: white; /*The Purpose section's background color*/
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.purpose-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.purpose-content img {
  width: 100%;
	height: auto;
  max-height: 400px;
  object-fit: cover;
}

.purpose-content p {
  font-size: 1.3rem;
  padding: 40px;
  font-style: italic;
  color: #01579b;
}
