templates/pages/terms_conditions.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <meta
  7. property="og:image"
  8. content="https://care.pentabell.com/assets/img/logo.jpg"
  9. />
  10. <title>
  11. {% block title %}Expert Care - TERMS AND CONDITIONS{% endblock %}
  12. </title>
  13. <link rel="icon" href="{{ asset('assets/img/dashboard/logo.svg') }}" />
  14. <link
  15. rel="stylesheet"
  16. href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
  17. />
  18. <link
  19. href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css"
  20. rel="stylesheet"
  21. />
  22. <script
  23. src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/js/bootstrap.bundle.min.js"
  24. defer
  25. ></script>
  26. </head>
  27. <body>
  28. <div class="container mt-5 mb-5">
  29. <div class="row">
  30. <div class="col-md-8 offset-md-2">
  31. <h1>TERMS AND CONDITIONS – EXPERT CARE</h1>
  32. <p class="text-muted">Last Updated: May 26,2026</p>
  33. <section class="mt-4">
  34. <h2>1. Acceptance of Terms</h2>
  35. <p>
  36. By accessing or using the Expert Care platform, users agree to
  37. comply with these Terms & Conditions. If a user does not accept
  38. these terms, they should discontinue use of the platform.
  39. </p>
  40. </section>
  41. <section class="mt-4">
  42. <h2>2. Platform Description</h2>
  43. <p>
  44. Expert Care is an end-to-end consultant management solution
  45. designed to help consultants manage missions, contracts,
  46. documents, timesheets, and administrative processes through a
  47. centralized digital dashboard.
  48. </p>
  49. </section>
  50. <section class="mt-4">
  51. <h2>3. User Accounts</h2>
  52. <p>
  53. Users must provide accurate and up-to-date information and are
  54. responsible for maintaining the confidentiality of their login
  55. credentials. Each user remains fully responsible for all
  56. activities carried out through their account. Pentabell reserves
  57. the right to suspend or terminate accounts in case of misuse,
  58. security concerns, or violations of these Terms.
  59. </p>
  60. </section>
  61. <section class="mt-4">
  62. <h2>4. Expert Responsibilities</h2>
  63. <p>Experts agree to:</p>
  64. <ul>
  65. <li>Provide accurate profile information</li>
  66. <li>Deliver services professionally</li>
  67. <li>Comply with applicable laws and regulations</li>
  68. </ul>
  69. </section>
  70. <section class="mt-4">
  71. <h2>5. Prohibited Conduct</h2>
  72. <p>Users agree not to:</p>
  73. <ul>
  74. <li>Use the platform for unlawful purposes</li>
  75. <li>Share false or misleading information</li>
  76. <li>Harass or harm other users</li>
  77. <li>Attempt to breach platform security</li>
  78. </ul>
  79. </section>
  80. <section class="mt-4">
  81. <h2>6. Intellectual Property</h2>
  82. <p>
  83. All content available on Expert Care, including its design,
  84. branding, text, and software, remains the exclusive property of
  85. Pentabell. No content may be copied, reproduced, or distributed
  86. without prior written authorization.
  87. </p>
  88. </section>
  89. <section class="mt-4">
  90. <h2>7. Liability Disclaimer</h2>
  91. <p>
  92. While Pentabell strives to provide reliable services, the platform
  93. does not guarantee specific outcomes or uninterrupted
  94. availability. To the fullest extent permitted by law, Pentabell
  95. shall not be held liable for indirect or consequential damages
  96. related to the use of the platform.
  97. </p>
  98. </section>
  99. <section class="mt-4">
  100. <h2>8. Termination</h2>
  101. <p>We may suspend or terminate access:</p>
  102. <ul>
  103. <li>For violation of these terms</li>
  104. <li>For security or legal reasons</li>
  105. </ul>
  106. </section>
  107. <section class="mt-4">
  108. <h2>9. Governing Law</h2>
  109. <p>
  110. These Terms & Conditions are governed by French law. Pentabell may
  111. update these terms at any time, and continued use of the platform
  112. after updates constitutes acceptance of the revised version.
  113. </p>
  114. <p>
  115. Any dispute relating to the interpretation, validity, or execution
  116. of these Terms & Conditions shall fall under the exclusive
  117. jurisdiction of the courts of Paris, France.
  118. </p>
  119. </section>
  120. <section class="mt-4">
  121. <h2>10. Contact</h2>
  122. <p>
  123. For any legal or administrative questions related to Expert Care,
  124. users may contact Pentabell at:
  125. <br />
  126. 📍 Address: Atlantic Building Montparnasse, Entrance No. 7, 3rd
  127. floor, 75015 Paris
  128. <br />
  129. 📧 Email: [email protected]
  130. </p>
  131. </section>
  132. <section class="mt-4">
  133. <h2>11. Data Security</h2>
  134. <p>
  135. We implement appropriate technical and organizational measures:
  136. </p>
  137. <ul>
  138. <li>Encryption (HTTPS)</li>
  139. <li>Access control</li>
  140. <li>Secure infrastructure</li>
  141. </ul>
  142. </section>
  143. </div>
  144. </div>
  145. </div>
  146. </body>
  147. </html>