    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
      min-height: 100vh;
      padding: 20px;
      color: #1f2937;
      line-height: 1.8;
    }
    
    .container {
      max-width: 900px;
      margin: 0 auto;
      background: white;
      border-radius: 20px;
      padding: 50px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .header {
      text-align: center;
      margin-bottom: 40px;
      padding-bottom: 30px;
      border-bottom: 3px solid #2B7AB8;
    }
    
    .logo {
      max-width: 200px;
      margin-bottom: 20px;
    }
    
    h1 {
      color: #2B7AB8;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    
    .subtitle {
      color: #6b7280;
      font-size: 16px;
      font-weight: 500;
    }
    
    .update-date {
      background: linear-gradient(135deg, #2B7AB8, #2570a8);
      color: white;
      display: inline-block;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      margin-top: 15px;
    }
    
    h2 {
      color: #1f2937;
      font-size: 22px;
      font-weight: 700;
      margin-top: 35px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    h2:before {
      content: "▸";
      color: #2B7AB8;
      font-size: 24px;
    }
    
    p {
      margin-bottom: 15px;
      text-align: justify;
      color: #374151;
    }
    
    ul {
      margin: 15px 0 15px 30px;
      color: #374151;
    }
    
    li {
      margin-bottom: 10px;
    }
    
    .highlight-box {
      background: linear-gradient(135deg, #f0f9ff, #dbeafe);
      border-left: 4px solid #2B7AB8;
      padding: 20px;
      margin: 20px 0;
      border-radius: 8px;
    }
    
    .highlight-box strong {
      color: #2B7AB8;
    }
    
    .contact-box {
      background: linear-gradient(135deg, #2B7AB8, #2570a8);
      color: white;
      padding: 25px;
      border-radius: 12px;
      margin: 30px 0;
      text-align: center;
    }
    
    .contact-box h3 {
      font-size: 20px;
      margin-bottom: 15px;
    }
    
    .contact-box a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 18px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .contact-box a:hover {
      text-decoration: underline;
    }
    
    .legal-reference {
      background: #f9fafb;
      border: 1px solid #e5e7eb;
      padding: 15px;
      border-radius: 8px;
      font-size: 14px;
      margin: 15px 0;
      font-style: italic;
    }
    
    .btn-back {
      display: inline-block;
      background: linear-gradient(135deg, #6b7280, #4b5563);
      color: white;
      padding: 14px 30px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      margin-top: 30px;
    }
    
    .btn-back:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(107, 114, 128, 0.4);
    }
    
    .footer-legal {
      margin-top: 40px;
      padding-top: 30px;
      border-top: 2px solid #e5e7eb;
      text-align: center;
      font-size: 14px;
      color: #6b7280;
    }
    
    @media (max-width: 768px) {
      .container {
        padding: 30px 20px;
        border-radius: 15px;
      }
      
      h1 {
        font-size: 26px;
      }
      
      h2 {
        font-size: 20px;
      }
      
      .logo {
        max-width: 160px;
      }
    }

.text-small-top { margin-top: 15px; font-size: 14px; }
.link-blue { color: #2B7AB8; }
.text-top { margin-top: 10px; }
.text-center-top { text-align: center; margin-top: 30px; }
