/* ==========================================
   1. STYLES GÉNÉRAUX & STRUCTURE
   ========================================== */
   body {
    margin: 0;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0f172a;
    box-sizing: border-box;
  }


  
  /* Image d'arrière-plan fixe */
  .red-heeler {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.75);
  }
  
  /* Le Conteneur Principal (Style Rectangle de Base) */
  .rectangle {
    width: 100%;
    max-width: 900px;
    min-height: 250px;
    padding: 45px;
    box-sizing: border-box;
    
    /* Effet Glassmorphism */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    
    /* Bordures et Ombres */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    
    /* Structure Interne */
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
    overflow: hidden;
  }
  
  /* ==========================================
     2. TYPOGRAPHIES (Identiques à votre base)
     ========================================== */
  .text-decale {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Légèrement réduit pour s'adapter aux longs titres */
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 15px 0;
    line-height: 1.2;
  }
  
  .text-decale-left-up {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin: 0;
  }
  
  .text-decale-left-down {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
  }
  
  .section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
  }
  
  /* ==========================================
     3. DISPOSITION INTERNE DE LA PRÉSENTATION
     ========================================== */
  .about-grid {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap; /* Aligne verticalement sur les petits écrans de téléphone */
  }
  
  .about-section {
    flex: 1;
    min-width: 280px;
  }
  
  /* Listes à puces */
  .about-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .about-list li {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
  }
  
  /* Puces standard (Technologies) */
  .about-list li::before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #5865F2; /* Couleur d'accentuation */
    font-weight: bold;
  }
  
  /* Puces vertes (Pourquoi nous choisir) */
  .about-list.ticks li::before {
    content: "✓";
    color: #22c55e; /* Vert de validation propre */
  }
  
  /* Bas de page & Commande */
  .about-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
  }
  
  .about-footer p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 25px 0;
  }
  
  /* ==========================================
     4. LIENS & BOUTONS
     ========================================== */
  .link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
  }
  
  /* Soulignement stylisé au survol */
  .link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #5865F2;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .link:hover {
    color: #5865F2;
  }
  
  .back-link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
  }
  