:root {
    --dark1: #22002A;
    --dark2: #430053;
    --pastelpurple: #E8E0EC;
    --pastelorange : #FFE5D4;
    --red: #C61902;
    --orange: #F43429;
    --yellow: #FF9900;
    --white: #FFF6F0;
    --beige-light: #ECE3D5;
    --ffffff: #ffffff;
    --font-body: 'Montserrat';
    --font-heading: 'Righteous';
  }

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark1);
    margin: 0;
    padding: 0;
  }

/* === HEADER === */
.blazed-header {
    background-color: var(--ffffff);
    padding: 1rem 1rem 1rem 1rem;
    max-width: 1400px;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);

    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
  }
  
  .logo {
    height: 40px;
    width: auto;
  }
  
  .btn-download {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(90deg, #22002A 0%, #430053 14.91%, #F43429 54.92%, #F90 89.93%); color: #fff;
    color: white;
    border-radius: 10px;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }

  .btn-download:hover {
    transform: scale(1.05);
  }



  /* === CONTENU === */
  .cgv-section {
    padding: 8em 4em 4em 4em;
    max-width: 1000px;
    margin: auto;
  }
  
  .cgv-container h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark1);
    margin-bottom: 1rem;
  }
  
  .cgv-update {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 2rem;
  }
  
  .cgv-container h2 {
    font-family: var(--font-heading);
    margin-top: 2.5rem;
    font-size: 2rem;
    color: var(--dark1);
  }
  
  .cgv-container h3 {
    font-family: var(--font-heading);
    margin-top: 1.5rem;
    font-size: 1.4rem;
    color: var(--yellow);
  }
  
  .cgv-container p {
    margin-top: 1rem;
    line-height: 1.8;
    font-size: 1rem;
  }
  
  .cgv-contact {
    margin-top: 3rem;
    font-weight: bold;
    line-height: 1.6;
  }



  /* === Footer === */
  .footer {
    background-color: var(--orange);
    color: var(--ffffff);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 4rem 16rem;
    gap: 2rem;
  }
  
  .footer-left {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-logo {
    width: 140px;
    margin-bottom: 2rem;
  }
  
  .footer-contact {
    background-color: var(--ffffff);
    padding: 0em 2rem 2em;
    border-radius: 12px;
    text-align: center;
  }
  
  .footer-contact p {
    font-family: var(--font-heading);
    font-size: x-large;
    color: var(--dark1);
    margin-bottom: 1rem;
  }
  
  .footer-button {
    display: inline-block;
    background: linear-gradient(90deg, #22002A 0%, #430053 14.91%, #F43429 54.92%, #F90 89.93%);
    color: var(--ffffff);
    text-decoration: none;
    padding: 0.75rem 5.5rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-family: var(--font-body);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }
  
  .footer-button:hover {
    background: linear-gradient(90deg, #22002A 0%, #430053 14.91%, #F43429 54.92%, #F90 89.93%); color: #fff;
    color: white;
    border-radius: 10px;
    transition: transform 0.2s ease;
    transform: scale(1.05);
  }
  
  .footer-links {
    display: flex;
    flex: 2 1 600px;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .footer-column {
    min-width: 120px;
  }
  
  .footer-column h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .footer-column ul {
    font-family: var(--font-body);
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
    font-weight: 400;
  }
  
  .footer-column a {
    color: white;
    text-decoration: none;
  }
  
  .footer-column a:hover {
    text-decoration: none;
    color: var(--dark1);
  }
   
  