.mainpower {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 10px;
  align-items: center;
}

/* SECTION */
.pricing-section {
  margin: auto;
  padding: 0px 20px;
  text-align: center;
}

.pricing-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* CARD */
.plan-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.plan-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.plan-image img {
  width: 100%;
  display: block;
  filter: blur(2px);
  opacity: 0.8;
}

/* OVERLAY TEXT */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* CONTENT */
.plan-content {
  padding: 15px 5px 5px;
}

.plan-content {
  display: flex;
  flex-direction: column;
}

.plan-content span {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.plan-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* BUTTON */
.plan-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.center h2 {
  margin-top: 30px !important;
  margin-bottom: 10px !important;
}

.center p {
  margin-bottom: 50px !important;
}

/* OUTLINE STYLE */
.outline-btn {
  border: 1px solid #999;
  color: #333;
  background: transparent;
  cursor: pointer;
}

.outline-btn:hover {
  background: #2E7D32 !important;
  color: #fff;
  border-color: #333;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .center h2 {
    margin-top: 10px !important;
    margin-bottom: -24px !important;
  }

  .center p {
    margin-bottom: 20px !important;
  }

  .mainpower {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 0px 15px;
    margin-bottom: 10px;
  }

  .plan-content {
    display: flex;
    flex-direction: column;
  }

  .plan-card {
    background: rgb(249 172 21 / 8%);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 25px rgb(249 172 21 / 8%);
    transition: 0.3s ease;
  }
}
