body {
  margin: 0;
  font-family: 'Georgia', serif;
  color: white;
  background-color: black;
}

.section-1 {
  position: relative;
  color: white;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.text-overlay {
  background-color: black;
  padding: 40px 80px;
  text-align: justify; /* Add this if overlay has paragraphs */
}

.text-overlay h1 {
  font-size: 48px;
  margin: 0;
  line-height: 1.2;
  font-weight: bold;
  text-align: left; /* Override justify for heading */
}

.text-overlay .roles {
  margin-top: 10px;
  font-size: 16px;
  display: flex;
  gap: 40px;
  text-align: right; /* Keep roles aligned left */
}

.content-columns {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 40px 80px;
  background-color: black;
}

.column {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  color: white;
  text-align: justify; /* Justify content here */
}

@media (max-width: 768px) {
  .text-overlay {
    padding: 30px 20px 10px 20px;
  }

  .content-columns {
    flex-direction: column;
    padding: 20px;
  }

  .text-overlay h1 {
    font-size: 32px;
  }

  .text-overlay .roles {
    flex-direction: column;
    gap: 10px;
  }
}

.created-section {
  background-color: white;
  color: black;
  padding: 100px 20px;
  text-align: center;
  font-family: 'Georgia', serif;
}

.created-content {
  display: inline-block;
  position: relative;
}

.line {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.4;
}

.line-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.italic {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: bold;
}

.line-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.img-left,
.img-right {
  width: 140px;
  height: auto;
  object-fit: cover;
}

.journey-section {
  background-color: black;
  color: white;
  padding: 100px 80px;
  font-family: 'Georgia', serif;
}

.journey-heading-wrapper {
  text-align: left;
  max-width: 100%;
  margin-bottom: 80px;
}

.journey-heading {
  font-size: 64px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.2;
  color: white;
}

.journey-cards-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.journey-card {
  flex: 1 1 280px;
  max-width: 300px;
  text-align: left;
}

.card-header {
  font-size: 20px;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
  margin-bottom: 16px;
  position: relative;
  padding-top: 20px;
}

.card-header::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #888;
  position: absolute;
  top: 0;
  left: 0;
}

.journey-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.awards-section {
  background-color: #222;
  color: white;
  padding: 100px 80px;
  font-family: 'Georgia', serif;
}

/* Top heading and award images row */
.awards-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.awards-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}

.award-images-top {
  display: flex;
  gap: 20px;
}

.award-images-top img {
  width: 140px;
  height: auto;
  object-fit: cover;
}

/* Award items in a single centered row */
.awards-items-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 240px;
  margin-bottom: 60px;
}

.award-item {
  max-width: 260px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}

.award-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.award-item p {
  margin: 6px 0;
}

/* Event images with no spacing between */
.event-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;

}

.event-images img {
  width: 100%;
  max-width: 280px;
  object-fit: cover;
  gap: 0;
  margin: 0;
  padding: 0;
  border: none;
}


.award-images-top img {
  width: 140px;
  height: auto;
  object-fit: cover;
}

/* Citation items */
.awards-info {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
}

.award-item {
  flex: 1 1 220px;
  max-width: 240px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 24px;
  line-height: 1.6;
}

.award-item h3 {
  font-weight: 500;
  font-size: 34px;
  margin-bottom: 8px;
}

.award-item p {
  margin: 4px 0;
}

/* Event images row */
.event-images {
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
}

.event-images img {
  width: 400px;
  height: auto;
  object-fit: cover;
  margin: 0;
  padding: 0;
  
}
  




