/* Pricing Section Styles */
.pricing_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 35px 0;
  margin-top: 0; /* Added spacing */
}

.pricing_box {
  flex-basis: 280px;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px 0 rgba(253, 252, 252, 0.466);
  border-top: 15px solid transparent;
  background-color: #0b0b0b;
  transition: all 0.3s ease;
  text-align: center;
}

.pricing_box:hover {
  border-top: 15px solid #ffd700;
  transform: translateY(-10px);
}

.pricing_box h3 {
  color: #ffd700;
  font-size: 24px;
  margin-bottom: 20px;
}

.price {
  font-size: 32px;
  color: #ffffff;
  margin: 15px 0;
}

.price span {
  font-size: 16px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  color: #ffffff;
}

.features li {
  margin: 8px 0;
  padding: 4px 0;
}

.pricing_box .btn {
  display: inline-block;
  padding: 10px 30px;
  background-color: #5f5f5f;
  color: #ffd700;
  border-radius: 35px;
  text-decoration: none;
  margin-top: 20px;
}

.pricing_box .btn:hover {
  background-color: #8f8f8f;
}

.popular {
  position: relative;
  border-top: 15px solid #ffd700;
}

.popular::after {
  content: "Most Popular";
  position: absolute;
  top: -40px;
  right: 20px;
  background-color: #ffd700;
  color: #000000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
}

.heading_container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px; /* Increased from default */
}

.heading_container h2 {
  text-align: center;
  width: 100%;
}

.about_section .detail-box {
  text-align: center;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  text-align: left;
}

.faq-question {
  cursor: pointer;
  position: relative;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.faq-question h5 {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-icon {
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 0 0 5px 5px;
}

.faq-answer p {
  padding: 15px;
  margin: 0;
}

.category_links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 40px auto;
}

.category_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background-color: #0b0b0b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.category_item:hover {
  color: #ffd700;
  border-color: #ffd700;
  transform: translateX(10px);
  text-decoration: none;
}

.category_name {
  font-size: 20px;
  font-weight: 600;
}

.category_status {
  font-size: 14px;
  color: #ffd700;
  margin-left: 20px;
}

.category_item:hover .category_status {
  color: #ffffff;
}

.features {
  list-style: disc; /* Changes from list-style: none to disc for bullet points */
  padding: 0 0 0 20px; /* Added left padding for bullet points */
  margin: 15px 0;
  color: #ffffff;
  text-align: left; /* Align text to left for better readability with bullets */
}

.features li {
  margin: 8px 0;
  padding: 4px 0;
  line-height: 1.4; /* Added for better spacing */
}


