.about {
  width: 100%;
}

.about-inner {
  display: flex;
  align-items: flex-start;
  padding: 0px 72px 96px;
  box-sizing: border-box;
}

.about-wrapper {
  width: 100%;
  max-width: 1232px;
  height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 96px;
  align-items: start;
  justify-content: flex-start;
  margin-top: 144px;
}

.about-image-frame {
  position: relative;
  width: 100%;
  max-width: 568px;
  aspect-ratio: 1 / 1;
}

.about-image-stripes {
  position: absolute;
  left: -34px;
  bottom: -28px;
  width: calc(100% - 34px);
  height: calc(100% - 18px);
  background: repeating-linear-gradient(
    45deg,
    rgba(61, 207, 182, 0.9) 0 1px,
    transparent 2px 18px
  );
  opacity: 0.8;
  border-radius: 28px;
}

.about-image {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: url("../assets/img/about.jpg") center / cover no-repeat,
    #2b2b2b;
  filter: grayscale(0%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-text {
  width: 100%;
  max-width: 568px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 98px;
}

.about-kicker {
  margin: 0;
  color: #3dcfb6;
  font-family: "Karla", sans-serif;
  font-size: 40px;
  font-weight: 500;
}

.about-card {
  width: 100%; /* Changed from fixed 568px to fluid */
  max-width: 568px;
  border-radius: 30px;
  border: 1px solid #3dcfb6;
  padding: 32px;
  background: linear-gradient(
    115deg,
    rgba(19, 19, 19, 0.95) 15%,
    rgba(7, 86, 74, 0.45) 100%
  );
  box-sizing: border-box;
}

.about-card h2 {
  max-width: 472px;
  margin: 0 0 40px;
  color: #3dcfb6;
  font-family: "Karla", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

.about-card p {
  max-width: 504px;
  margin: 0 0 24px;
  color: #ffffff;
  font-family: "Karla", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.about-list li {
  max-width: 504px;
  color: #d9d9d9;
  font-family: "Karla", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 125%;
  padding-left: 48px;
  padding-top: 8px;
  position: relative;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.about-list li:nth-child(1)::before {
  background-image: url("../assets/icon/location_on.svg");
}

.about-list li:nth-child(2)::before {
  background-image: url("../assets/icon/cognition.svg");
}

.about-list li:nth-child(3)::before,
.about-list li:nth-child(4)::before {
  background-image: url("../assets/icon/quality.svg");
}

/* RESPONSIVE BREAKPOINTS */

@media (max-width: 768px) {
  .about-inner {
    padding: 0 24px 60px;
  }
  .about-wrapper {
    margin-top: 48px;
    row-gap: 48px;
  }
  .about-kicker {
    font-size: 18px;
  }
  .about-card {
    padding: 24px;
  }
  .about-card h2 {
    font-size: 40px;
    margin-bottom: 24px;
  }
  .about-image-stripes {
    left: -16px;
    bottom: -16px;
    width: calc(100% - 16px);
    height: calc(100% - 8px);
    border-radius: 16px;
  }
}

@media (max-width: 1200px) {
  .about-inner {
    padding: 80px 40px;
  }

  .about-wrapper {
    grid-template-columns: minmax(0, 620px);
    gap: 40px;
    justify-content: center;
    justify-items: center;
    margin-top: 80px;
    min-height: auto;
  }

  .about-image-frame {
    width: 100%;
  }

  .about-image {
    width: 100%;
  }

  .about-kicker {
    font-size: 32px;
  }

  .about-text {
    width: 100%;
    min-height: auto;
    margin-top: 0;
  }

  .about-card {
    width: 100%;
    min-height: auto;
  }

  .about-card h2 {
    font-size: 62px;
    line-height: 1.1;
  }

  .about-card p,
  .about-list li {
    font-size: 17px;
  }
}

@media (max-width: 700px) {
  .about-inner {
    padding: 56px 20px;
  }

  .about-kicker {
    font-size: 18px;
  }

  .about-image-stripes {
    left: -18px;
    bottom: -16px;
  }

  .about-card {
    padding: 24px 18px;
  }

  .about-card h2 {
    font-size: 48px;
    line-height: 1.1;
  }

  .about-card p,
  .about-list li {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .about-inner {
    padding: 20px 16px 56px;
  }

 

  .about-image-frame {
    max-width: none;
  }

  .about-image,
  .about-image-stripes {
    border-radius: 28px;
  }

  .about-image-stripes {
    left: -14px;
    bottom: -14px;
    width: calc(100% - 14px);
    height: calc(100% - 6px);
  }

  .about-text {
    gap: 12px;
  }

  .about-kicker {
    font-size: 18px;
    line-height: 1;
  }

  .about-card {
    border-radius: 30px;
    padding: 18px 18px 22px;
  }

  .about-card h2 {
    font-size: 56px;
    margin-bottom: 16px;
  }

  .about-card p,
  .about-list li {
    font-size: 16px;
    line-height: 1.25;
  }

  .about-list {
    gap: 10px;
  }

  .about-list li {
    padding-left: 40px;
    padding-top: 2px;
  }

  .about-list li::before {
    width: 24px;
    height: 24px;
  }
}