.about-body {
  margin: 0;
  background-image: url("../../../Images/PlaniMe-WebApp-Background2.png");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  font-family: "Bubblegum Sans", sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  overflow: auto;
}

.back-icon {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: auto;
  cursor: pointer;
  z-index: 10;
  transition-duration: 0.3s;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.432));
}

.back-icon:hover {
  scale: 0.8;
}

.about-container {
  width: 100%;
  max-width: 1000px;
  background-color: #a0d94a;
  border: 5px solid black;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  animation: walkInAnimation 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  margin: 20px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 30px;
}

.about-title {
  margin: 0 0 25px 0;
  font-size: 2rem;
  text-align: center;
  color: black;
  width: 100%;
}

.content-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-section {
  width: 100%;
}

.section-box {
  background-color: #eff299;
  border: 3px solid black;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-box h2 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 15px;
  color: #000;
  text-align: center;
}

.section-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  text-align: center;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.value-box {
  background-color: #a0d94a;
  border: 2px solid black;
  border-radius: 15px;
  padding: 15px;
}

.value-box h3 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: #000;
  text-align: center;
}

.value-box p {
  font-size: 0.9rem;
  text-align: center;
}

.tech-box {
  background-color: #ff6b6b;
  color: white;
}

.tech-box h2,
.tech-box p {
  color: black;
}

.tech-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tech-specs {
  width: 100%;
  max-width: 700px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 10px;
  box-sizing: border-box;
}

.tech-specs p {
  text-align: left;
  margin: 10px 0;
  line-height: 1.6;
  color: #000;
  font-size: 1rem;
}

.tech-description {
  text-align: center !important;
  margin-bottom: 10px !important;
  font-size: 2.1rem;
}

.tech-box h2:not(:first-child) {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
}

a {
  color: #000;
  text-decoration: underline;
}