.about {
  position: relative;
  padding: 90px 20px 90px;
  background: #f4f6f6;
  text-align: center;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  left: -8%;
  width: 116%;
  background: #f4f6f6;
  z-index: 1;
  top: -160px;
  height: 300px;
  border-radius: 0 0 70% 70% / 0 0 100% 100%;
}

.about > * {
  position: relative;
  z-index: 2;
}

/* TITLE */
.about h2 {
  font-family: "Georgia", serif;
  font-size: clamp(28px, 6vw, 40px);
  margin-bottom: 40px;
  color: #2f3e3e;
  letter-spacing: 1px;
}

/* CARD */
.about-card {
  max-width: 720px;
  margin: auto;
  padding: 36px 40px;

  font-family: "Poppins", system-ui, sans-serif;
  background: rgba(255, 255, 255, 0.6);

  border-radius: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* TEXT */
.about-card p {
  font-size: 14px;
  line-height: 1.9;
  color: #4a5a5a;
}

.about-list {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.about-list li::marker {
  content: none;
  font-family: ;
}

.about-right {
  max-width: 420px;
}

.about-right h3 {
  font-family: "Georgia", serif;
  font-size: 21px;
  margin-bottom: 22px;
  color: #2f3e3e;
}

.about-list li {
  background: #ced3cf;
  color: #1f2e2e;
  font-family: "Poppins", system-ui, sans-serif;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}

.about-list li:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 80px;
}

/* MOBILE REFINEMENT */
@media (max-width: 480px) {
  .about {
    padding: 72px 16px 96px;
  }

  .about-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .about-card p {
    font-size: 13.5px;
  }
}
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-right {
    max-width: 100%;
  }

  .about-list li {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 80px 16px 90px;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  /* ===== LEFT ===== */
  .about-left {
    width: 100%;
    text-align: center;
  }

  .about-left h2 {
    margin-bottom: 28px;
  }

  .about-card {
    margin: 0 auto;
    max-width: 100%;
    padding: 28px 22px;
    border-radius: 22px;
  }

  .about-card p {
    font-size: 13.5px;
    line-height: 1.85;
    text-align: center;
  }

  /* ===== RIGHT ===== */
  .about-right {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .about-right h3 {
    font-size: 22px;
    margin-bottom: 22px;
  }

  .about-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .about-list li {
    width: 100%;
    max-width: 340px;

    text-align: center;
    font-size: 13.5px;
    padding: 10px 18px;
  }
}

