templates/Accueil/mentionlegal.html.twig line 1

Open in your IDE?
  1. {% extends "Accueil/layoutAccueil.html.twig" %}
  2. {% block title %}Mentions Légales — 5sur5 Séjour{% endblock %}
  3. {% block stylesheets %}
  4. {{ parent() }}
  5. <style>
  6.     .legal-page {
  7.         background: #F9FAFB;
  8.         min-height: 100vh;
  9.         padding: 60px 24px 80px;
  10.     }
  11.     
  12.     .legal-container {
  13.         max-width: 800px;
  14.         margin: 0 auto;
  15.     }
  16.     
  17.     .legal-header {
  18.         text-align: center;
  19.         margin-bottom: 48px;
  20.     }
  21.     
  22.     .legal-icon {
  23.         width: 72px;
  24.         height: 72px;
  25.         border-radius: 18px;
  26.         background: linear-gradient(135deg, rgba(65, 162, 170, 0.1) 0%, rgba(65, 162, 170, 0.05) 100%);
  27.         display: inline-flex;
  28.         align-items: center;
  29.         justify-content: center;
  30.         margin-bottom: 20px;
  31.     }
  32.     
  33.     .legal-icon i {
  34.         font-size: 32px;
  35.         color: #41A2AA;
  36.     }
  37.     
  38.     .legal-title {
  39.         font-size: 32px;
  40.         font-weight: 700;
  41.         color: #1A1A1A;
  42.         margin: 0 0 12px;
  43.     }
  44.     
  45.     .legal-subtitle {
  46.         font-size: 16px;
  47.         color: #6B7280;
  48.     }
  49.     
  50.     .legal-card {
  51.         background: white;
  52.         border-radius: 16px;
  53.         box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  54.         padding: 40px;
  55.     }
  56.     
  57.     .legal-section {
  58.         margin-bottom: 32px;
  59.         padding-bottom: 32px;
  60.         border-bottom: 1px solid #E5E7EB;
  61.     }
  62.     
  63.     .legal-section:last-child {
  64.         margin-bottom: 0;
  65.         padding-bottom: 0;
  66.         border-bottom: none;
  67.     }
  68.     
  69.     .legal-section-title {
  70.         font-size: 18px;
  71.         font-weight: 600;
  72.         color: #1A1A1A;
  73.         margin: 0 0 16px;
  74.         display: flex;
  75.         align-items: center;
  76.         gap: 10px;
  77.     }
  78.     
  79.     .legal-section-title i {
  80.         color: #41A2AA;
  81.         font-size: 20px;
  82.     }
  83.     
  84.     .legal-text {
  85.         font-size: 15px;
  86.         color: #4B5563;
  87.         line-height: 1.7;
  88.         margin: 0;
  89.     }
  90.     
  91.     .legal-text strong {
  92.         color: #1A1A1A;
  93.     }
  94.     
  95.     .legal-text a {
  96.         color: #41A2AA;
  97.         text-decoration: none;
  98.     }
  99.     
  100.     .legal-text a:hover {
  101.         text-decoration: underline;
  102.     }
  103.     
  104.     .legal-list {
  105.         list-style: none;
  106.         padding: 0;
  107.         margin: 16px 0 0;
  108.     }
  109.     
  110.     .legal-list li {
  111.         padding: 8px 0 8px 24px;
  112.         position: relative;
  113.         font-size: 15px;
  114.         color: #4B5563;
  115.     }
  116.     
  117.     .legal-list li::before {
  118.         content: '•';
  119.         position: absolute;
  120.         left: 8px;
  121.         color: #41A2AA;
  122.         font-weight: bold;
  123.     }
  124.     
  125.     @media (max-width: 768px) {
  126.         .legal-page {
  127.             padding: 40px 16px 60px;
  128.         }
  129.         
  130.         .legal-title {
  131.             font-size: 26px;
  132.         }
  133.         
  134.         .legal-card {
  135.             padding: 24px;
  136.         }
  137.     }
  138. </style>
  139. {% endblock %}
  140. {% block Content %}
  141. <div class="legal-page">
  142.     <div class="legal-container">
  143.         
  144.         <div class="legal-header">
  145.             <div class="legal-icon">
  146.                 <i class="bi bi-file-earmark-text"></i>
  147.             </div>
  148.             <h1 class="legal-title">Mentions Légales</h1>
  149.             <p class="legal-subtitle">Dernière mise à jour : Janvier 2025</p>
  150.         </div>
  151.         
  152.         <div class="legal-card">
  153.             
  154.             <div class="legal-section">
  155.                 <h2 class="legal-section-title">
  156.                     <i class="bi bi-building"></i>
  157.                     Éditeur du site
  158.                 </h2>
  159.                 <p class="legal-text">
  160.                     <strong>TRUST CONSEILS</strong><br>
  161.                     Société par Actions Simplifiée (SAS)<br>
  162.                     Capital social : 10 000 €<br>
  163.                     RCS Lyon : 883 840 738<br>
  164.                     Siège social : 199 Avenue Francis de Pressensé, 69200 Vénissieux<br>
  165.                     N° TVA : FR 12 883 840 738
  166.                 </p>
  167.             </div>
  168.             
  169.             <div class="legal-section">
  170.                 <h2 class="legal-section-title">
  171.                     <i class="bi bi-person-badge"></i>
  172.                     Directeur de la publication
  173.                 </h2>
  174.                 <p class="legal-text">
  175.                     Le directeur de la publication du site 5sur5sejour.com est le représentant légal de la société TRUST CONSEILS.
  176.                 </p>
  177.             </div>
  178.             
  179.             <div class="legal-section">
  180.                 <h2 class="legal-section-title">
  181.                     <i class="bi bi-envelope"></i>
  182.                     Contact
  183.                 </h2>
  184.                 <p class="legal-text">
  185.                     <strong>Téléphone :</strong> 05 36 28 29 30<br>
  186.                     <strong>Email :</strong> <a href="mailto:contact@5sur5sejour.com">contact@5sur5sejour.com</a><br>
  187.                     <strong>Adresse :</strong> 199 Avenue Francis de Pressensé, 69200 Vénissieux
  188.                 </p>
  189.             </div>
  190.             
  191.             <div class="legal-section">
  192.                 <h2 class="legal-section-title">
  193.                     <i class="bi bi-server"></i>
  194.                     Hébergement
  195.                 </h2>
  196.                 <p class="legal-text">
  197.                     Le site 5sur5sejour.com est hébergé en France, conformément aux exigences du RGPD.<br><br>
  198.                     <strong>Hébergeur :</strong> OVH SAS<br>
  199.                     2 rue Kellermann, 59100 Roubaix, France<br>
  200.                     <a href="https://www.ovh.com" target="_blank">www.ovh.com</a>
  201.                 </p>
  202.             </div>
  203.             
  204.             <div class="legal-section">
  205.                 <h2 class="legal-section-title">
  206.                     <i class="bi bi-c-circle"></i>
  207.                     Propriété intellectuelle
  208.                 </h2>
  209.                 <p class="legal-text">
  210.                     L'ensemble du contenu du site 5sur5sejour.com (textes, images, graphismes, logo, icônes, etc.) est la propriété exclusive de TRUST CONSEILS, à l'exception des marques, logos ou contenus appartenant à d'autres sociétés partenaires ou auteurs.
  211.                 </p>
  212.                 <p class="legal-text" style="margin-top: 12px;">
  213.                     Toute reproduction, distribution, modification, adaptation, retransmission ou publication, même partielle, de ces différents éléments est strictement interdite sans l'accord exprès par écrit de TRUST CONSEILS.
  214.                 </p>
  215.             </div>
  216.             
  217.             <div class="legal-section">
  218.                 <h2 class="legal-section-title">
  219.                     <i class="bi bi-shield-check"></i>
  220.                     Protection des données
  221.                 </h2>
  222.                 <p class="legal-text">
  223.                     Conformément au Règlement Général sur la Protection des Données (RGPD) et à la loi Informatique et Libertés, vous disposez d'un droit d'accès, de rectification, de suppression et d'opposition aux données personnelles vous concernant.
  224.                 </p>
  225.                 <p class="legal-text" style="margin-top: 12px;">
  226.                     Pour exercer ces droits, contactez-nous à : <a href="mailto:contact@5sur5sejour.com">contact@5sur5sejour.com</a>
  227.                 </p>
  228.                 <p class="legal-text" style="margin-top: 12px;">
  229.                     Pour plus d'informations, consultez notre <a href="{{ path('Politique_Confidentialite_5sur5') }}">Politique de Confidentialité</a>.
  230.                 </p>
  231.             </div>
  232.             
  233.         </div>
  234.         
  235.     </div>
  236. </div>
  237. {% endblock %}