.pricing {
  padding: 30px;
  text-align: center;
  background-color: white;
}

.pricing-header h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: black;
}

.pricing-header p {
  font-size: 18px;
  color:  #677788;
  margin-bottom: 60px;
}

/* Main pricing container layout */
.pricing-container {
  display: flex;
  flex-basis: 50%;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 60px;
}

/* LEFT SIDE BOX */
.pricing-box {
  background-color: white;
  border: 1px solid #E6E8F2;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.price {
  font-size: 26px;
  font-weight: 500;
  font-weight: bold;
  margin-bottom: 20px;
}

.price .amount {
  font-size: 50px;
  color: #000;
}

.price .per {
  font-size: 24px;
  color: #999;
}

.pricing-box p {
  color: #677788;
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.play-button {
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 12px;
  cursor: pointer;
  margin-bottom: 10px;
  align-items: center;
  width: 50%;
  padding: 20px;
  gap: 10px;
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}

.play-button:hover {
  background-color: white;
  color: #2563eb;
  border: 1px solid #2563eb;
}

.pricing-box span {
  font-size: 12px;
  color: #999;
}

/* RIGHT FEATURES GRID */

.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
}

.feature-item {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-item img {
  width: 50px;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: black;
}

.feature-item p {
  font-size: 16px;
  color: #677788;
}

.sketch-badge {
  background-color: #00b67a;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-left: 8px;
  vertical-align: middle;
}
