body {
  overflow-x: hidden;
}

.about-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: url('/static/img/Component 2.png');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  height: calc(100vh - 80px);
  position: relative;
}

.left-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 40rem;
  flex-basis: 50%;
}

.tag-box {
  background: #fff;
  border-radius: 15px;
  padding: 1rem;
  display: inline-flex;
  flex-direction: column;
  max-width: 90%;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tag-box span {
  font-size: 1rem;
  line-height: 1.4;
}

.tag-box .highlight {
  color: #43B929;
  font-weight: bold;
  font-size: 1.2rem;
}

.tag-box .icon {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

.slogan {
  color: #03dafb ;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  padding: 90px;
}

.mission-statement {
  color: #43B929;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 90%;
}

/* Center Content */
.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay-text {
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.tagline {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.headline {
  color: #fff;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.headline .highlight {
  color: #43B929;
}

.cta-button {
  background: #43B929;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.cta-button:hover {
  background: #5c00d2;
}

.rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.stars {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.rating-text {
  color: #fff;
  font-size: 0.9rem;
}

.established {
  color: #fff;
  font-size: 0.9rem;
}

/* Right Content */
.right-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.bottom-tag {
  align-self: flex-end;
  margin-top: auto;
}
.left-content h2, .left-content span {
  margin-top: -1rem;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    flex-direction: column;
  }
  
  .left-content, .right-content {
    padding: 1rem;
    flex-basis: auto;
  }
  
  .overlay-text {
    padding: 2rem;
  }
  
  .headline {
    font-size: 2.5rem;
  }
  
  .right-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .headline {
    font-size: 2rem;
  }
  
  .slogan {
    font-size: 2rem;
  }
  .mission-statement {
    font-size: 1rem;
  }
}