body {
  font-family: sans-serif; /* Choose your preferred font */
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #FFF9E6; /* Example light yellow background */
}

header, .features, .testimonials, .team, .pricing, .integrations, footer {
  padding: 2rem; /* Consistent padding */
  text-align: center; /* Center content in sections */
}

h1, h2 {
  color: #333; /* Darker heading color */
}

button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  background-color: #007bff; /* Example blue button */
  color: white;
  cursor: pointer;
  margin: 0 0.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto; /* Center images */
}

.feature-list, .testimonial-list, .team-members, .pricing-plans, .integration-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Add styles for feature items, testimonials, team members, pricing plans, etc. */
/* Example: */
.feature-item {
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 5px;
}
/* This creates the dark overlay and positions the popup */
.popup-class {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);  /* semi-transparent black */
  z-index: 1000;                         /* ensures popup is on top */
  display: flex;
  justify-content: center;
  align-items: center;
}
/* This styles the white popup box */
.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-x {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

.hidden {
  display: none;
}

/* Make sure the form elements are responsive */
.answer-input {
  width: 100%;
  min-height: 100px;
  margin: 1rem 0;
  padding: 0.5rem;
}

/* Ensure buttons stack nicely on mobile */
.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer {
  background: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0px 50px;
  color: rgba(0,0,0,0.3);
}
.footer-links a {
  color: black;
  opacity: 0.15;
  text-decoration: none;
  font-size: 24px;
  padding: 0px 10px;
}
.footer-links a:hover {
  opacity: 1;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .popup-content {
      padding: 1rem;
  }
}

@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .feature-list, .testimonial-list, .team-members, .pricing-plans {
      flex-direction: column; /* Stack items vertically on smaller screens */
  }
}


