  /* General styles */
  div {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
  }

  h2 {
    font-size: 28px;
  }

  button:hover{
      cursor:pointer;
  }
  .d-none{
      display:none;
  }
  /* Container */
  .container {
    width: 900px;
    max-width: 98%;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Hero section */
  .hero {
    position: relative;
    //background: url('hero.jpg') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    color: #fff;
    padding: 100px 0 200px 0;
  }

  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;

    width: 100%;
    height: 100%;
    background-image: url("hero.webp");
    z-index: -1;
    filter: contrast(115%) brightness(30%);
  }

  .hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .hero-cta-btn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: bold;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    
  }

  /* Social proof section */
  .social-proof {
    background-color: #f8f8f8;
    text-align: center;
    padding: 80px 0;
  }

  .social-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 20px auto 0 auto;
    vertical-align: middle;
  }

  .social-icons img {
    max-width: 200px;
    margin: 20px;
  }

  /* Form section */
  .form-section {
    padding: 100px 0 10px 0;
    background-color: #fff;
    min-height: 100vh;
  }

  .form-section h2 {
    // font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    margin: 0 10% 40px 10%;
  }
  /*
  .form-section span {
    max-width: 80%;
  }*/
  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  .form-group label.checkbox-label {
    font-size: 16px;
    margin-left: 10px;
    margin-top: 5px;
  }

  .form-group input[type="checkbox"] {
    width: auto;
    margin-top: 8px;
    margin-right: 5px;
    vertical-align: middle;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #333;
  }

  .form-cta-btn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: bold;
    background-color: #e84133;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
    border-color: #e84133;
    border-style: none;
  }

  /* Quote section */
  .quote {
    background-color: #f2f2f2;
    padding: 50px 0;
    text-align: center;
  }

  .quote blockquote {
    font-size: 36px;
    margin-bottom: 40px;
  }

  /* Call to action section */
  .call-to-action {
    background-color: #333;
    //background-color: #E84133;

    color: #fff;
    text-align: center;
    padding: 100px 0;
  }

  .call-to-action h2 {
    //font-size: 36px;
    margin-bottom: 40px;
  }

  .cta-section-btn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: bold;
    background-color: #e84133;
    color: #eee;
    text-decoration: none;
  }
  .privacy-consent {
    display: flex;
    align-items: center;
    padding:20px 0;
  }

  .privacy-consent label {
    font-size: 14px;
    margin-left: 5px;
    margin-bottom: 0;
  }
  /* Features section */
  .features {
    //background-color: #f8f8f8;
    padding: 50px 0;
  }

  .features .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .features h2 {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    //font-size: 28px;
  }
  .features .feature {
    width: 30%;
    padding: 20px;
    background-color: #fff;
    //border-radius: 5px;
    //text-align: center;
    margin-bottom: 30px;
    border-left: 2px solid #e84133;
  }

  .features .feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .features .feature p {
    font-size: 18px;
    line-height: 1.5;
  }

  @media only screen and (max-width: 768px) {
    /* On mobile devices, align features vertically */
    .features .container {
      flex-direction: column;
      align-items: center;
    }

    .features .feature {
      width: 90%;
    }

    .form-section {
      padding: 50px 0;
      background-color: #fff;
    }
    .hero {
      padding: 100px 0;
    }

    .form-section h2 {
      font-size: 24px;
    }
    .hero h1 {
      font-size: 45px;
    }
    .hero p {
      font-size: 28px;
    }
    .form-group label {
      font-size: 18px;
    }
  }

  #label-for-consent{
    padding-bottom: 10px;
  }