h1 {
  font-size: 65px;
  font-weight: bold;
  font-family: Hurme Geometric Sans 3;
}
h2 {
  font-size: 48px;
  font-weight: bold;
}

h3 {
  font-size: 36px;
  font-weight: bold;
}

.price {
  font-size: 24px;
}
.main-container {
  margin: auto;
  width: min(95vw, 1200px);
}

.price-header {
  padding-inline: 30px;
  margin-top: 150px;
}

.price-container {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
  gap: 20px;
}

.price-show {
  margin-top: 50px;
  box-shadow: 0 0 10px 0px rgba(127, 65, 250, 0.8);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  max-width: 350px;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  transition: transform 0.3s ease;
}
.price-show:hover {
  transform: scale(1.05);
}
.big {
  margin-top: 0px;
  border: solid 2px transparent;
}

.big > h4 {
  font-size: 20px;
}
.price-show > h3,
h4 p,
ul {
  margin-bottom: 5px;
}

.price-show > p {
  text-align: center;
  font-size: 16px;
  padding-inline: 20px;
}

.price-show > h4 {
  text-align: center;
  font-size: 30px;
  margin: 0;
  padding: 20px;
}

.price-show > ul {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-direction: column;
  padding-inline: 25px;
  align-self: stretch;
}

.price-show > ul > li {
  display: flex;
  justify-content: space-between;
}

.price-show > ul > li > p:nth-last-child(1) {
  background: linear-gradient(
    90deg,
    rgba(249, 117, 28, 1) 25%,
    rgba(127, 65, 250, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bolder;
}

.price-show > ul > li > p {
  font-size: 16px;
  margin: 0;
  max-width: 150px;
}

.price-dropdown {
  background-color: white;
  border-radius: 40px;
  display: grid;
  grid-template-columns: auto 24px;
  align-items: center;
  position: relative;
  box-shadow: 0px 1px 2px rgba(249, 117, 28, 1);
}
.text-gradient-cx-integrations,
.text-gradient-cx-terms {
  font-size: 24px;
  background: radial-gradient(
    60.54% 9668.35% at 55% 75.32%,
    #f9751c 60%,
    #7f41fa 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 30px;
  width: 80%;
}

.price-dropdown > img {
  transform: translateX(-30px);
  object-fit: contain;
  width: auto;
}

.dropdown-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  right: 0;
}
.dropdown-list li {
  width: 100%;
  border-bottom: 1px solid black;
  border-left: none;
  border-right: none;
  padding: 18px;
  text-align: left;
  padding-left: 6px;
}
.dropdown-list li .txt {
  padding-left: 27px;
  display: flex;
}
.border {
  border-top: 1px solid black;
  left: 0;
  right: 0;
}
.dropdown-list li:last-child {
  border-bottom: none;
}
.dropdown-table {
  display: none;
}

.price-dropdown .dropdown-table {
  width: 100%;
  height: auto;
  border-collapse: collapse;
  font-size: 16px;
  text-align: center;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: -24px;
}

.price-dropdown .dropdown-table th,
.price-dropdown .dropdown-table td {
  border: 2px solid #8f8d8d; 
  padding: 15px 12px;
  padding-left: 28px;
}
.price-dropdown .dropdown-table td {
  border-right: none;
  width: 25%;
}
.price-dropdown .dropdown-table td:first-child {
  border-left: none;
  text-align: left;
}

.price-dropdown .dropdown-table tbody tr:last-child td {
  border-bottom: none;
}

@media screen and (max-width: 562px) {
  .price-dropdown .dropdown-table {
    width: 100%!important;
    font-size: 11px; 
  }

  .price-dropdown .dropdown-table td {
    width: 15%;
    box-sizing: border-box; 
    padding: 10px 0px; 
  }

  .price-dropdown .dropdown-table td:first-child {
    text-align: center;
  }
}