main {
  margin: 0px 20px;
}
.headings h1 {
  color: #4d0026;
  text-align: center;
}
.img-s {
  display: flex;
  justify-content: center;
  margin-left: 60px;
}
.img-s img {
  width: 400px;
}
.info {
  display: flex;
  gap: 60px;
}
.mini-info {
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mini-info h2 {
  color: #4d0026;
  margin-bottom: 0;
}
.mini-info li {
  margin-left: 50px;
}
.why-abs {
  display: flex;
  gap: 60px;
}
.why-left {
  margin-left: 30px;
    display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-left h2 {
  color: #4d0026;
  margin-bottom: 0;

}
.why-left li {
  margin-left: 50px;
}
.why-right {
  margin-right: 60px;
}
.why-right img {
  width: 400px;
}
:root {
  --bg: #fbf8f7; /* Light background */
  --card: #ffffff; /* Card white (kept same for contrast) */
  --accent: #cc0066; /* Button & highlight color */
  --muted: #4d0026; /* Deep brand text color */
  --radius: 12px;
  --gap: 18px;
  --max-width: 1000px;
  --fw-regular: 400;
  --fw-semibold: 600;
}

.implant-section {
  padding: 48px 16px;
}
.container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  background: #fbf8f7;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(3, 15, 25, 0.06);
  justify-content: center;
  align-items: center;
}

.section-title {
  margin: 0 0 16px 0;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
      color: #4d0026;
    text-align: center;
}
.benefits-list {
  padding: 0;
  margin: 0;
  display: flex;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
.benefit-item {
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(3, 15, 25, 0.1);
  background: linear-gradient(180deg, rgba(11, 132, 255, 0.03), transparent);
  transition: transform 0.2s ease;
  cursor: pointer;
  width: 300px;
}
.benefit-item:hover{
    transform: translateY(-10px);
}
.benefit-item-in{
    display: flex;
    gap: 12px;
}
.check {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-item-in h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0 0 0;
}
.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.cta-row {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.btn-primary:hover, .btn-secondary:hover{
  transform: scale(1.2);
}
.btn-secondary {
  background: transparent;
  border: 1px solid;
  color: var(--muted);
  transition: transform 0.2s ease;
}


/* ============================
   MOBILE VIEW (max-width: 768px)
   ============================ */
@media (max-width: 768px) {

  main {
    margin: 0px 10px;
  }

  .headings h1 {
    font-size: 22px;
    padding: 0 10px;
  }

  /* IMAGE + CONTENT SECTION */
  .info {
    flex-direction: column;
    gap: 20px;
  }

  .img-s {
    margin-left: 0;
    justify-content: center;
  }

  .img-s img {
    width: 90%;
    max-width: 320px;
  }

  .mini-info {
    margin-right: 0;
  }

  .mini-info h2 {
    font-size: 20px;
  }

  .mini-info li {
    margin-left: 20px;
  }

  /* IMPLANT SECTION */
  .container {
    padding: 20px;
  }

  .benefits-list {
    flex-direction: column;
    gap: 16px;
  }

  .benefit-item {
    flex-direction: column;
  }

  .benefit-item-in h3 {
    font-size: 15px;
  }

  .benefit-item p {
    font-size: 14px;
  }

  .cta-row {
    flex-direction: column;
    margin-top: 40px;
    width: 100%;
    gap: 20px;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    font-size: 16px;
  }
  .btn-primary:hover,
  .btn-secondary:hover{
    transform: scale(1.1);
  }

  /* WHY ABS SECTION */
  .why-abs {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }

  .why-left {
    margin-left: 0;
  }

  .why-left h2 {
    font-size: 20px;
    text-align: center;
  }

  .why-left li {
    margin-left: 20px;
  }

  .why-right {
    margin-right: 0;
    text-align: center;
  }

  .why-right img {
    width: 90%;
    max-width: 320px;
  }

  /* GENERAL TYPOGRAPHY */
  p {
    font-size: 15px;
    line-height: 1.6;
  }
}