/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.testimonial__content {
  color: white; /* Replace #your-color-here with the desired color code */
}
.button {
  background-color: #B0A0F0;
  border: 1px solid #B0A0F0;
  color: #ffffff; /
}
.button.button--simple {
  background-color: #9ACF76;
  border: 1px solid #9ACF76;
  color: #ffffff;
  padding: 10px 20px; /* Add padding for space around the text */
  text-align: center; /* Center text */
  border-radius: 50px; /* Make the button pill-shaped */
  display: flex; /* Use inline-flex for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
  text-decoration: none;
  font-family: 'Nunito Sans', sans-serif;
}

.hs_cos_wrapper_type_form {
  background-color: #FFFFFF; /* Set the entire form wrapper background to white */
  padding: 20px; /* Add some padding if needed for better visual appearance */
  border-radius: 8px; /* Optional: add rounded corners for a nicer look */
}