#pricing {
  padding: 60px 0;
}

.pricing-box {
  padding: 40px;
  border: 4px solid #eee;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 20px;
}

.pricing-box.featured {
  border-color: #007bff;
  background-color: #007bff;
  color: #ffffff;
}

.pricing-box h3 {
  font-size: 24px;
}

.pricing-box h4 {
  margin: 20px 0;
  font-size: 30px;
}

.pricing-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}

.pricing-box ul li {
  margin-bottom: 10px;
}

.pricing-box a {
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 5px;
}


.faq-section {
  background-color: #f9f9f9;
  padding: 40px 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  background-color: #ffffff;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.faq-title {
  display: block;
  padding: 15px;
  margin: 0;
  background-color: #333; /* Dark background for titles */
  color: #ffffff; /* White text for contrast */
  cursor: pointer;
  font-weight: bold;
}

.faq-title:hover {
  background-color: #444; /* Slightly lighter dark shade on hover */
}

.faq-content {
  padding: 15px;
  display: none;
  animation: fadein 0.35s ease-in-out;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item input[type="checkbox"]:checked + label + .faq-content {
  display: block;
}

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}