/* General styles for the container */
.price-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  /*padding: 20px;*/
}

.price-section{
  margin: 5rem 0 0 0;
}

.price-card {
  color: #303030;
  flex: 1;
  border: 1px solid #303030;
  padding: 10px;
  margin: 10px;
  max-width: 30%;
  box-sizing: border-box;
  position: relative;
}

/* Styling for Title Box */
.title-box {
  text-align: center;
  padding: 10px 0;
  margin-bottom: 15px;
}
.title-box-small {
  background-color: #C2ACA3;
}
.title-box-standard {
  background-color: #B7988B;
}
.title-box-exclusive {
  background-color: #CDA899;
}

.title-box h3 {
  font-size: 24px;
  margin: 0;
  color: #ECE8E8;
  font-weight: 500;
}

.title-box p {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  color: #ECE8E8;
  font-weight: 500;
}

/* Price styling */
.price {
  color: #303030;
  font-size: 48px;
  text-align: center;
  margin-top: 40px;
  position: relative;
}

.euro-symbol {
  font-size: 24px;
  position: relative;
  top: -15px;
  color: #303030;
}

/* Subtitle under price */
.subtitle {
  color: #303030;
  text-align: center;
  font-size: 10px;
  margin-bottom: 20px;
}

/* Price details */
.price-details {
  list-style-type: none;
  padding: 0;
}

.price-details li {
  text-align: center;
  font-size: 14px;
  padding-top: 15px;
  /*border-bottom: 2px solid #303030;*/
}

.price-details hr {
  border: 0;
  border-top: 2px solid #959595;
  margin: 5px 50px;
  color: #303030;
  opacity: 0.4;
  padding: 0 5px 0 5px;
}

/* Button styling */
.request-button {
  color: #ECE8E8;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  display: block;
  margin: 40px auto 0;
  bottom: 0;
}
.request-button-small {
  background-color: #C2ACA3;
}
.request-button-standard {
  background-color: #B7988B;
}
.request-button-exclusive {
  background-color: #CDA899;
}

.price-note {
  max-width: 65%;
  font-size: 13px;
  text-align: center;
  margin: 0 auto;
  color: #303030;
  font-weight: 300;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .price-container {
    justify-content: center;
  }
  .price-card {
    flex: 1 1 80%;
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .price-container {
    width: 80%;
  }
  .price-card {
    max-width: 100%;
  }
}

@media (max-width: 425px) {
  .price-container {
    width: 100%;
  }
}
