body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f4ef;
    margin: 0;
    padding: 0;
    color: #3b2f2f;
  }
  
  .cgu-container {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
    line-height: 1.7;
  }
  
  .cgu-hero {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .cgu-hero h1 {
    font-size: 2.8em;
    color: #a87847;
    margin-bottom: 10px;
  }
  
  .cgu-hero p {
    font-size: 1.1em;
    color: #6a3a18;
  }
  
  .cgu-section {
    margin-bottom: 40px;
    background-color: #ffffff;
    padding: 30px;
    border-left: 6px solid #f2994a;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }
  
  .cgu-section:hover {
    transform: translateY(-4px);
  }
  
  .cgu-section h2 {
    color: #6a3a18;
    font-size: 1.6em;
    margin-bottom: 15px;
  }
  
  .cgu-section p {
    color: #4a3c3c;
    font-size: 1em;
  }
  
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  
  .popup-overlay.show {
    opacity: 1;
    pointer-events: all;
  }
  
  .popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .popup-overlay.show .popup-content {
    transform: translateY(0);
    opacity: 1;
  }
  
  .popup-content h2 {
    color: #6a3a18;
    margin-bottom: 10px;
  }
  
  .popup-content p {
    color: #333;
    font-size: 15px;
  }
  
  .popup-content .close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    color: #888;
    cursor: pointer;
  }
  
  .popup-content .close:hover {
    color: #000;
  }
  