.section {
  padding: 3rem 9% 2rem;
}

.single-account {
  display: flex;
  flex-direction: column;
}

.account-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-left: 46px;
  margin-bottom: 30px;
}

.account-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 1rem;
}

.acc-card {
  width: calc(50% - 20px);
  background: #fff;
  text-align: center;
  padding: 15px 30px 30px 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

.acc-top {
  height: 130px;
  background: #39b54a;
  color: #fff;
  padding: 12px 0 0 0;
  width: 100%;
}

.acc-top .acc-title {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 600;
}

.acc-price-sec {
  margin-top: -10px;
}

.acc-price-sec span {
  color: #fff;
}
.acc-price-sec .price {
  font-size: 40px;
}

.acc-details .plan {
  margin-top: 25px;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.acc-details .plan span {
  font-weight: 400;
  color: #000000;
}

.acc-details .plan::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: -12px;
  background: #ddd;
}

.acc-card button {
  height: 42px;
  display: block;
  outline: none;
  border: none;
  margin-top: 30px;
  width: 100%;
  color: #fff;
  border-radius: 4px;
  letter-spacing: 1px;
  background: var(--title-color);
  font-size: 18px;
  cursor: pointer;
}

.acc-card button:hover {
  background: #020e41;
}

.account-text {
  font-size: 22px;
  text-align: justify;
}

.account-text span {
  font-size: 18px;
  margin-top: 10px;
  color: #cccccc;
}

.explore {
  padding: 2rem 3rem;
  margin: 10px 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}






@media screen and (max-width: 667px) {
  .carousel {
    grid-auto-columns: 100%;
  }

  .section {
    padding: 1rem 3%;
  }

  
.account-content {
  grid-template-columns: 1fr;
}
.account-text {
  text-align: justify;
}
.account-text h3 {
  font-size: 20px;
  color: #333;
}

.account-text p {
  font-size: 18px;
}
  
  .acc-card {
    width: 70%; /* One card per row */
    margin-bottom: 20px;
  }

  .acc-details .plan {
    font-size: 14px;
  }

  .acc-card button {
    font-size: 16px;
  }
}

