/* 
.hero-section {
    height: 100vh;
    background: url('path_to_your_image.jpg') center center/cover no-repeat;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
} */


@media print {
    .no-print { display: none; }
  }
  
      /* Apply the non-selectable rule */
      .non-selectable {
    user-select: none; /* Standard property */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* Internet Explorer */
  }
  
  
  body {
      background-color: #f3f3f3;
      margin: 0;
      font-family: Arial, sans-serif;
    }
  
    .paper {
      max-width: 800px;
      margin: 50px auto;
      padding: 40px;
      background-color: #fff;
      background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
      background-size: 20px 20px;
      border: 2px solid #333;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      position: relative;
    }
    
    .paper::before {
      content: '';
      position: absolute;
      top: -1px;
      left: -1px;
      right: -1px;
      bottom: -1px;
      background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
      border-radius: 12px;
      z-index: -1;
    }
  
    h1, h2, h3, h4, h5 {
      color: #333;
      margin: 0 0 10px;
      font-weight: 600;
    }
    
    .paper h1 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 5px;
    }
    
    .paper h2 {
      font-size: 1.5rem;
      font-weight: 600;
      color: #2c2c2c;
      margin-bottom: 15px;
    }
    
    .paper h3 {
      font-size: 1.3rem;
      font-weight: 600;
      color: #333;
      border-bottom: 2px solid #e0e0e0;
      padding-bottom: 5px;
      margin-bottom: 15px;
    }
    
    .paper h4 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #444;
      margin-bottom: 5px;
    }
    
    .paper h5 {
      font-size: 1rem;
      font-weight: 500;
      color: #666;
      font-style: italic;
      margin-bottom: 10px;
    }
  
    p, ul, li {
      color: #555;
      line-height: 1.6;
    }
    
    .paper p {
      color: #444;
      line-height: 1.7;
      margin-bottom: 15px;
    }
    
    .paper ul {
      padding-left: 25px;
      margin-bottom: 15px;
    }
    
    .paper li {
      color: #444;
      line-height: 1.6;
      margin-bottom: 8px;
    }
  
    ul {
      padding-left: 20px;
    }
  
    hr {
      border: none;
      border-top: 1px solid #5e5e5e;
      margin: 20px 0;
    }
  
    .text-center {
      text-align: center;
    }
    
    .paper .text-center {
      border-bottom: 3px solid #e0e0e0;
      padding-bottom: 20px;
      margin-bottom: 30px;
    }
    
    .paper .text-center p {
      color: #666;
      font-size: 1.1rem;
      margin-bottom: 0;
    }
  
    .mb-5 {
      margin-bottom: 30px;
    }
  
    .bg-light {
      background-color: #f8f9fa;
    }
  
    .fixed-bottom {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
    }
  
    .shadow {
      box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    }
  
    /* Remove global button override to allow Bootstrap button colors to work properly */
    /* .btn {
      padding: 10px 20px;
      border: none;
      color: #fff;
      background-color: #007bff;
      cursor: pointer;
      border-radius: 4px;
      text-decoration: none;
      font-size: 16px;
    }
  
    .btn-primary:hover {
      background-color: #0056b3;
    } */
  
    .icon {
      width: 64px;
      height: 64px;
  }

  .fade-edges {
    width: 600px;
    height: 400px;
    position: relative;
    object-fit: cover;
    -webkit-mask-image: 
      linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%),
      linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    mask-image: 
      linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%),
      linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }