/* static/css/contact.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  color: #333;
  padding-top: 60px;
  /* Adjust according to header height */
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
}

.pricing-container {
  padding: 100px;
  max-width: 100%;
  /* Adjusted for a wider view */
  margin: auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.pricing-header {
  font-family: sans-serif;
  margin-bottom: 20px;
}

.pricing-header h2 {
  color: #0078d7;
  font-size: 24px;
}

.pricing-plans {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  /* Allow wrapping for smaller screens */
}

.pricing-plan {



  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  width: 280px;
  /* Fixed width for each plan box */
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.pricing-plan h3 {
  color: #0078d7;
  font-size: 22px;
}

.pricing-plan p {
  font-family: sans-serif;
  font-size: 18px;
  margin: 10px 0;
}

.pricing-plan ul {
  list-style-type: none;
  /* Remove bullet points */
  padding: 0;
  margin: 10px 0;
  text-align: left;
  /* Align text to the left */
}

.pricing-plan ul li {
  font-family: sans-serif;
  margin: 8px 0;
}

.pricing-plan .price {
  font-size: 24px;
  font-weight: bold;
  margin: 15px 0;
}

.ct-button {
  background-color: #0078d7;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  /* Remove underline for links */
  display: inline-block;
  /* Make it behave like a button */
}

.ct-button:hover {
  background-color: #005bb5;
}
