/* Additional styles for privacy page */
  .privacy-hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 80px 20px;
    text-align: center;
    /* Removed: border-bottom: 2px solid #FFD400; */
  }
  
  .privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .privacy-card {
    background: #111;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid #FFD400;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 212, 0, 0.1);
  }
  
  .privacy-section h3 {
    color: #FFD400;
    margin-bottom: 20px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .privacy-section h3 i {
    font-size: 24px;
  }
  
  .info-list {
    list-style: none;
    margin: 20px 0;
  }
  
  .info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  
  .info-list li:last-child {
    border-bottom: none;
  }
  
  .info-list li:before {
    content: "✓";
    color: #FFD400;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  
  .toggle-content.active {
    max-height: 1000px;
  }
  
  .toggle-btn {
    background: transparent;
    border: 2px solid #FFD400;
    color: #FFD400;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .toggle-btn:hover {
    background: #FFD400;
    color: #000;
  }
  
  .data-flow {
    background: #0a0a0a;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
  }
  
  .flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .flow-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    background: #FFD400;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    font-weight: bold;
  }
  
  .step-arrow {
    color: #FFD400;
    font-size: 24px;
  }
  
  .highlight-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border: 2px solid #FFD400;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
  }
  
  .contact-card {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
  }
  
  .contact-btn {
    background: #FFD400;
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 212, 0, 0.3);
  }
  
  @media (max-width: 768px) {
    .flow-steps {
      flex-direction: column;
    }
    
    .step-arrow {
      transform: rotate(90deg);
      margin: 10px 0;
    }
    
    .privacy-card {
      padding: 25px;
    }
  }