:root{
  --ink:#1f3544;
  --ink-light:#365569;
  --tab-pink:#d7b1b0;
  --label-pink:#d3a9a7;
  --price-gold:#c9a17f;
  --price-muted:#ede0d5;
  --white:#fff;
}

.holder .inner {
  max-width: 1160px;
  margin: 0 auto;
}

.holder .inner h2 {
  font-size: 36px;
  text-align: center;
  font-weight: 500;
  color:#000;
}

.pricing-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 20px; */
}

.header-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 0 20px;
}

.tab {
  background: var(--tab-pink);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  width: 250px;
  height: 90px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  font-family:'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
  margin: 0 10px;
}

.tab:first-child {
  margin-left: 0;
}

.tab:last-child {
  margin-right: 0;
}

.tab.is-active {
  background: var(--ink);
  color: var(--white);
}
.card-wrapper::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 11px;
  background-repeat: repeat-x;
}
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 75px 20px 20px;
  background: var(--ink);
  color: var(--white);
}

.card-wrapper {
  width: 323px;
  height: 303px;
  background: var(--white);
  color: var(--ink);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 50px;
}

.card-wrapper.is-muted .pricing-card {
  opacity: 0.4;
}

.card-wrapper.is-muted .card-label {
  background: var(--price-muted);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  height: 100%;
  margin-top: -25px;
  position: relative;
}

.pricing-card .price {
  font-size: 80px;
  line-height: 120px;
  color: var(--price-gold);
  font-family:'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
  letter-spacing: -5px;
  font-weight: 600;
}

.pricing-card .date-range {
  font-size: 18px;
  line-height: 46px;
  color: #000;
  font-family:'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
  font-weight: 500;
}

.register-btn {
  background: #1F3544;
  color: var(--white);
  border: none;
  padding: 5px 16px;
  cursor: pointer;
  margin-top: 28px;
  text-decoration: none;
  font-family:'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
  display: inline-block;
  text-transform: uppercase;
}

.register-btn.disabled {
  cursor: default;
  background: transparent;
  text-indent: -99999px;
}

.register-btn:hover {
  background: var(--ink-light);
}
.register-btn.disabled:hover {
  /* background: #1F3544; */
  background: transparent;
}

.card-label {
  text-transform: uppercase;
  background-color: var(--label-pink);
  color: var(--white);
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  margin: -25px 25px 0;
  font-family:'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
}

.pricing-cards p {
  font-size: 24px;
  line-height: 30px;
  color: var(--white);
  padding: 20px;
  text-align: center;
  font-family:'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
}

.inner h3 {
  margin-bottom: 1em;
}

.partnership-section {
  padding: 40px;
}

.partnership-section .inner {
  text-align: center;
}

.partnership-title {
  display: inline-block;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  border-bottom: 2px #D2A9A8 solid;
  padding-bottom: 10px;
  font-weight: normal;
  font-size: 1.9em;
}

.partnership-content {
  display: flex;
  gap: 25px;
  text-align: left;
}

.content-column {
  flex: 1;
  max-width: 600px;
}

.content-column p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.image-column {
  flex: 1;
  max-width: 700px;
}

.image-column img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.partnership-cta {
  text-align: center;
}

.cancellation-section {
  padding: 40px;
  text-align: center;
}

.cancellation-section .inner {
  max-width: 900px;
  margin: 0 auto;
}

.cancellation-section p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

.cancellation-section a {
  color: #D2A9A8;
  text-decoration: none;
}

.cancellation-section a:hover {
  text-decoration: underline;
}

@media (max-width: 968px) {
  .partnership-content {
    flex-direction: column-reverse;
  }
  
  .content-column,
  .image-column {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .tab {
    margin: 0;
  }

  .pricing-container {
    /* padding: 10px; */
  }

  .header-tabs {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
  }
  
  .tab {
    width: calc(50% - 5px);
    height: 60px;
    font-size: 14px;
    padding: 8px 10px;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
    padding: 40px 10px 20px;
  }

  .card-wrapper {
    width: 100%;
    max-width: 323px;
  }

  .pricing-card .price {
    font-size: 80px;
  }

  .pricing-card .date-range {
    font-size: 16px;
  }

  .pricing-cards p {
    font-size: 18px;
    line-height: 26px;
    padding: 30px 15px 15px;
  }
  
  .partnership-section {
    padding: 40px 20px;
  }
  
  .cancellation-section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .tab {
    width: 100%;
    height: 50px;
  }

  .pricing-card .price {
    font-size: 60px;
  }

  .card-label {
    font-size: 14px;
    height: 40px;
  }

  .pricing-card .date-range {
    font-size: 14px;
    line-height: 20px;
  }

  .pricing-card .register-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}
