.prr-text-wrapper {
  margin-top: 8vh !important;
  width: 60%;
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 8vh;
}

.prr-text-wrapper img {
    max-width: 100%;
    height: auto;
    margin-bottom: 4vh;
}

.prr-cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 60%;
  max-width: 60%;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 8vh;
}

.prr-card {
  width: calc(100% / 2);
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 10px var(--crisal-green-light);
  transition: transform 0.2s;
}

.prr-card:hover {
  transform: translateY(-5px);
}

.prr-image-wrapper {
  flex: 1;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

.prr-card .prr-text-wrapper {
  margin: 0 auto !important;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  box-sizing: border-box;
}

.button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 2rem;
}

.prr-card-title {
  color: var(--grey-dark);
  text-align: center;
}

.prr-subtitle {
  text-align: center;
  color: var(--grey-light);
  font-weight: bold;
}

.custom-border {
  border: solid 1px var(--crisal-green-light);
}

.prr-btn {
  background-color: var(--crisal-green-light);
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: var(--font-sm);
  border: 2px solid transparent !important;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.prr-btn:hover {
  background-color: #ffffff;
  color: var(--crisal-green-light) !important;
  border-color: var(--crisal-green-light) !important;
}

/* Mobile Styles */
@media (max-width: 768px) {

  .prr-text-wrapper {
    width: 90%;
    max-width: 90%;
  }

  .prr-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 90%;
  }

  .prr-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    width: 100%;
    margin: 0;
  }

  .prr-image-wrapper {
    margin: 0 auto !important;
  }

  .prr-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
  }
}

@media (min-width: 1920px) {

  .prr-text-wrapper {
    max-width: 1890px;
  }

  .prr-cards-wrapper {
    max-width: 1890px;
  }

}