/* Container & layout */
#PriceList {
  width: 100%;
  height: -30px;
}

.rowprice_list-1 {
  background-color: #000;
  display: flex;
  justify-content: center;
  padding: 8px;
}

.columnpricelist {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 32px;
  margin: 0 auto;
}

/* Title */
.pricelist-1 {
  color: #fff;
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  text-align: center;
}

/* Flex row for the rectangles */
.listrectangle-1 {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Individual column/rectangle */
.column-1 {
  background-color: #d4af37;
  color: black;
  flex: 1 1 30%;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-sizing: border-box;
}

/* Headings and descriptions */
.dermalfillers-1,
.complimentary-1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.description-6 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.description-7 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.description-5 {
  font-size: 16px;
  font-weight: 300;
  color: white;
  text-align: center;
  margin-top: 16px;
}

/* Responsive Tweaks */

/* Tablets */
@media screen and (max-width: 1024px) {
  .pricelist-1 {
    font-size: 42px;
  }

  .column-1 {
    flex: 1 1 45%;
  }

  .description-6,
  .description-7,
  .description-5 {
    font-size: 90%;
  }
}

/* Mobile (Large Phones) */
@media screen and (max-width: 768px) {
  .pricelist-1 {
    font-size: 36px;
  }

  .column-1 {
    flex: 1 1 100%;
  }

  .dermalfillers-1,
  .complimentary-1 {
    font-size: 20px;
  }

  .description-6 {
    font-size: 18px;
  }

  .description-7 {
    font-size: 16px;
  }

  .description-5 {
    font-size: 14px;
  }
}

/* Mobile (Small Phones) */
@media screen and (max-width: 480px) {
  .pricelist-1 {
    font-size: 28px;
    padding: 0 10px;
  }

  .columnpricelist {
    gap: 24px;
  }

  .column-1 {
    padding: 16px;
    gap: 10px;
  }

  .dermalfillers-1,
  .complimentary-1 {
    font-size: 18px;
  }

  .description-6,
  .description-7 {
    font-size: 16px;
  }

  .description-5 {
    font-size: 13px;
  }
}

/* Heading */
.aboutmasha-1 {
    font-style: italic;
    font-size: 96px;
    font-weight: 100;
    color: white;
    margin-bottom: 50px;
    padding-top: 0;
}
