/* Base styles */
:root {
    --color-bg: #000;
    --color-bg-dark: #111;
    --color-text: #fff;
    --color-text-secondary: #b09e8f;
    --color-border: #444;
    --color-primary: #b09e8f;
    --color-accent: #7c6a59;
    --color-off-white: #ccc;
    --color-light-gray: #333;
  }
  
  /* Reset and base styles */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: var(--color-primary);
  }
  
  /* Header */
  header {
    background-color: var(--color-bg-dark);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 2px solid var(--color-border);
  }
  
  header h1 {
    margin: 0;
    font-size: 2.5em;
    color: var(--color-primary);
  }
  
  /* Main content */
  main {
    padding: 30px 20px;
    max-width: 900px;
    margin: 0 auto;
    flex: 1;
  }
  
  section {
    margin-bottom: 40px;
  }
  
  section:last-child {
    margin-bottom: 0;
  }
  
  section h2 {
    color: var(--color-text-secondary);
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
  }
  
  section p {
    margin: 15px 0;
    line-height: 1.7;
  }
  
  ul {
    padding-left: 20px;
    margin: 15px 0;
  }
  
  ul li {
    margin-bottom: 15px;
    position: relative;
  }
  
  ul li:last-child {
    margin-bottom: 0;
  }
  
  ul li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  
  strong {
    color: var(--color-text-secondary);
    font-weight: bold;
  }
  
  /* Footer */
  footer {
    background-color: var(--color-bg-dark);
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
  }
  
  footer p {
    margin: 0;
    color: var(--color-off-white);
    font-size: 0.9em;
  }
  
  /* Cookie banner */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-dark);
    padding: 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    border-top: 1px solid var(--color-border);
  }
  
  .cookie-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .cookie-text {
    flex: 1;
  }
  
  .cookie-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
  }
  
  /* Button styles */
  .btn {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-bg);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: var(--color-accent);
  }
  
  .btn-secondary {
    background-color: var(--color-light-gray);
    color: var(--color-text);
  }
  
  .btn-secondary:hover {
    background-color: #444;
  }
  
  /* Navigation */
  nav {
    margin-top: 15px;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li::before {
    display: none;
  }
  
  nav ul li a {
    color: var(--color-off-white);
    font-weight: 500;
  }
  
  nav ul li a:hover {
    color: var(--color-primary);
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    header h1 {
      font-size: 2em;
    }
    
    section h2 {
      font-size: 1.5em;
    }
    
    .cookie-banner-content {
      flex-direction: column;
      gap: 20px;
    }
    
    .cookie-buttons {
      width: 100%;
      justify-content: center;
      margin-left: 0;
    }
  }



  .bouton{
    display: block;
    background-color: #766858;
    text-align: center;
    font-size: 15px;
    padding: 10px;
    width: 100px;
    cursor: pointer;
}

.bouton:hover{
    background-color: #b09e8f;
}