.membership-page-divider {
  content: "";
  position: absolute;
  margin-top: 11rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 7"%3E%3Cpath d="M0,3.5 C20,1 50,6 80,2.5 C90,1 100,5 100,3.5 L100,7 L0,7 Z" fill="%23f1f1ef"/%3E%3C/svg%3E')
    no-repeat;
  background-size: cover;
}

.membership-page-section {
  display: flex;
  margin-top: 13rem;
  flex-direction: column;
  background-color: #f1f1ef;
  justify-content: center;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 10rem;
}

.price-box-1 {
  margin-top: 4rem;
}

.membership-page-section-content-container {
  display: flex;
  flex-direction: column;
  width: 95vw;
  gap: 3rem;
  align-items: center;
}

.membership-page-container {
  display: flex;
  flex-direction: column;
  width: 78vw;
  gap: 1.5rem;
  align-items: center;
}

.membership-page-info-text {
  font-size: 1.2rem;
  line-height: 2.2rem;
}

/* ------------------------------- PACKAGES -------------------------------------- */

.packages-section {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  justify-content: center;
}

.packages-section-content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  gap: 5rem;
}

.packages-header-container {
  max-width: 75vw;
  margin-left: auto;
  margin-right: auto;
}

.packages-container {
  display: flex;
  padding-bottom: 2rem;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
  gap: 1rem;
  margin-top: 4rem;
}

.packages-container-mobile {
  display: none;
}
.package-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 25vw;
  height: max-content;
  padding: 1rem 0.5rem;
  align-items: center;
}

.silver-item {
  border: 3px solid rgb(102, 102, 102);
  border-radius: 0.5rem;
}

.silver-item:hover {
  transform: scale(1.01); /* Zoom in slightly when hovered */
  box-shadow: 0 6px 20px rgba(102, 102, 102, 0.6); /* Larger shadow on hover */
}

.gold-item {
  border: 3px solid rgb(212, 175, 55);
  border-radius: 0.5rem;
}

.gold-item:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.platinum-item {
  border: 3px solid rgb(209, 209, 209);
  border-radius: 0.5rem;
}

/*
.platinum-item:hover {
  transform: scale(1.01); 
  box-shadow: 0 6px 20px rgba(209, 209, 209, 0.6); 
}
*/

.diamond-item {
  border: 5px solid rgba(0, 113, 121);
  border-radius: 0.5rem;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 113, 121, 0.6);
}

.diamond-item:hover {
  transform: scale(1.03); /* Zoom in slightly when hovered */

  box-shadow: 0 10px 30px rgba(0, 113, 121, 0.6);
}

.package-item-top-border-filler {
  border-bottom: 2px dotted #0c340c;
}

.platinum-filler,
.gold-filler,
.silver-filler {
  margin-bottom: 1.2rem;
}

.best-value {
  font-size: 1.2rem;
}
.package-item-logo-container {
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
}

.package-item-logo {
  width: 120px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.platinum-logo,
.gold-logo,
.silver-logo {
  padding-top: 13px;
}
.package-item-header {
  font-size: 1.75rem;
  line-height: 1.8rem;
  font-weight: 600;
}

.package-item-description-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-left: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 0.6rem;
}

.platinum-description-container {
  border-top: 5px solid rgb(209, 209, 209);
  border-bottom: 5px solid rgb(209, 209, 209);
}

.silver-description-container {
  border-top: 5px solid rgb(102, 102, 102);
  border-bottom: 5px solid rgb(102, 102, 102);
}

.gold-description-container {
  border-top: 5px solid rgb(212, 175, 55);
  border-bottom: 5px solid rgb(212, 175, 55);
}

.diamond-description-container {
  border-top: 5px solid rgba(0, 113, 121);
  border-bottom: 5px solid rgba(0, 113, 121);
}

.package-item-description {
  display: flex;
  justify-content: center;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.description-price {
  font-size: 1.5rem;
  line-height: 4rem;
  display: flex;
  align-self: center;
}
.package-item-button {
  font-size: 1.2rem;
}

.package-item-ul {
  font-size: 1.2rem;
}
.package-item-li {
  font-weight: 400;
}
