/* Footer Container */
.prestige-footer-container {
    background-color: white;
    color: #ecf0f1;
    padding: 1.8rem 5%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  /* Main Footer Text */
  .prestige-footer-compliance {
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    margin-top: 1rem;
    
    color: #9CA3AF;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Copyright Section */
  .prestige-footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    margin: 1rem 0;
    color: #95a5a6;
  }
  
  /* Privacy Links Container */
  .prestige-footer-links {
    display: flex;
    justify-content: center;
  }
  
  /* Links List */
  .prestige-footer-links-list {
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  /* Individual Links */
  .prestige-footer-link-item a {
    color: #6B7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 3px;

  }
  
  .prestige-footer-link-item a:hover {
    color: #3498db;
  }
  
  /* Link Underline Effect */
  .prestige-footer-link-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
  }
  
  .prestige-footer-link-item a:hover::after {
    width: 100%;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .prestige-footer-container {
      padding: 1.5rem 5%;
    }
    
    .prestige-footer-links-list {
      flex-direction: column;
      gap: 0.8rem;
      align-items: center;
    }
    
    .prestige-footer-compliance {
      font-size: 0.8rem;
    }
    
    .prestige-footer-copyright {
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .prestige-footer-container {
      padding: 1rem 5%;
    }
    
    .prestige-footer-compliance {
      font-size: 0.75rem;
    }
  }