* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Figtree";
}

body {
  margin: 0;
  padding: 0;
  color: #fff;
}

.about-background {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust as needed */
  background: url("../images/about.jpg") center/cover no-repeat;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Overlay effect */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-text {
  color: #fff;
  max-width: 80%;
  font-size: 18px;
}

.about-text h2 {
  font-size: 3em;
  margin-bottom: 10px;
}

.about-text span{
  color: #F1AC32;
  font-style: italic;
}

.about-text p {
  margin-bottom: 15px;
  max-width: 800px;
}
