body {
  background-color: #560202; /* Change background color */
  font-family: Arial, sans-serif;
}

.form-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  max-width: 100px;
  height: auto;
}

h1 {
  margin-top: 10px;
  font-size: 24px;
  color: #333;
}

.container {
  width: 100%;
}

.form-group {
  margin-bottom: 15px;
}

input[type="text"],
select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

input[type="submit"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}

.link-button {
  display: block;
  width: auto;
  text-align: center;
  text-decoration: none;
  background-color: #06C755;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  text-align: center;
  text-decoration: none;
  background-color: #25d366; /* WhatsApp green color */
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
}

.whatsapp-button img {
  width: 24px; /* Adjust the image size as needed */
  height: 24px;
  margin-right: 8px;
}

.faq-container {
  margin-top: 20px;
}

.faq-container h2 {
  text-align: center;
  font-size: 22px;
  color: #333;
}

.accordion {
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  width: 100%;
  padding: 15px;
  text-align: center;
  background-color: #f7f7f7;
  border: none;
  outline: none;
  cursor: pointer;
}

.accordion-button:hover,
.accordion-button:focus {
  background-color: #e2e2e2;
}

.accordion-content {
  display: none;
  padding: 15px;
  background-color: #fff;
}

.accordion-content p {
  margin: 0;
}

.footer {
  margin-top: 20px;
  margin-bottom: 75px;
  text-align: center;
}

.social-link {
  margin: 0 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
}

.social-link:hover {
  color: #007bff;
}

@media (max-width: 350px) {
  input[type="text"],
  select,
  input[type="submit"],
  .link-button,
  .whatsapp-button {
    width: 90%;
    margin-top: 10px;
  }
}
