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

body {
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: transparent;
  overflow-x: hidden;
}

.container {
  position: relative;
  height: 180vh; /* 1.8 times the viewport height */
  width: 100vw;
  background: transparent;
  margin: 0;
  padding: 0;
}

.gradient-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.work-persona-title {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: rgb(114 58 131);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-tall {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  padding-top: 250px;
  padding-bottom: 50px;
}

.content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  padding-top: 100px;
  padding-bottom: 50px;
}

h1 {
  color: rgb(0, 0, 0);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 5px;
}

h2 {
  color: rgb(0, 0, 0);
  font-size: 2.2rem;
  font-weight: 200;
  margin-bottom: 10px;
}

.content-header {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}

.content-header-light {
  color: white;
}

.content-header-dark {
  color: rgb(32, 32, 75);
}

.content-text {
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 400;
}

.content-text-dark {
  color: black;
  margin-bottom: 10px;
  text-align: left;
}

.content-text-light {
  color: rgb(202, 177, 203);
  margin-bottom: 10px;
  text-align: left;
}

.content-text-dark.content-text {
  margin-top: 20px;
}

.middle-column {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.content-section {
  align-self: flex-start;
  width: 100%;
}

.push-down {
  margin-top: 100px;
}

.push-down-bottom {
  margin-top: 75px;
}

.three-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1000px;
  padding-top: 20px;
  margin: 0 auto;
  position: relative;
}

.column {
  flex: 1;
  padding: 20px;
  text-align: center;
  position: relative;
}

.three-columns .content-header,
.three-columns .content-text {
  text-align: center !important;
}

.column-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 15px auto;
  display: block;
}

.column:nth-child(2) .column-icon {
  transform: rotate(-90deg);
}

.column:nth-child(3) .column-icon {
  transform: rotate(30deg);
}

.understanding-star {
  width: 50px;
  height: 50px;
  margin: 0 0 20px 0;
  display: block;
}

.column:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 120px;
  background: rgba(255, 255, 255, 0.3);
}

.assessment-link-top-right {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 10;
  display: inline-block;
  padding: 10px 30px;
  background: rgb(114 58 131);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.assessment-link-top-right:hover {
  background: rgb(114, 58, 131, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background: rgb(32, 32, 75);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}
