body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #40454d;
}

.vision-board-container {
  max-width: 1300px;
  margin: 40px auto;
  margin-bottom: 100px;
  background: #fdfdfd;
  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: black;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-family: Georgia, serif;
}

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

/* SECTION TITLES */
.section-title {
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-size: 1.5rem;
  text-align: center;
  transition: all 0.4s ease-in-out;
  background-color: #750904;
}

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

/* ASPIRATIONAL VALUES */
.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;
  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 black;
  background-color: #E4E6E7;
}

/* TWO COLUMN LAYOUT (ASSETS/BARRIERS) */
.two-column-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.column {
  flex: 1 1 450px;
}

/* LISTS (ASSETS/BARRIERS) */
.flex-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HORIZONTAL BOXES (ASSETS/BARRIERS) */
.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 black;
  background-color: #f1f8f2; 
}

.barrier-item { 
  border-left: 8px solid black; 
  background-color: #fff5f5; 
}

/* PURPOSE */
.purpose-content {
  display: flex;
  flex-direction: column;
  background-color: white;
  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: #750904;
}