    :root {
      --primary-color: #333;
      --secondary-color: #666;
      --accent-color: #0066cc;
      --light-gray: #f4f4f4;
      --border-color: #e0e0e0;
      --container-width: 800px;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      line-height: 1.6;
      color: var(--primary-color);
      background-color: #fff;
    }
    
    .container {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    
    header {
      text-align: center;
      padding: 60px 0 40px;
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 40px;
    }
    
    .blog-title {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
    }
    
    .blog-meta {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      color: var(--secondary-color);
      font-size: 0.9rem;
      margin-top: 20px;
    }
    
    .meta-item {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .blog-excerpt {
      font-size: 1.1rem;
      color: var(--secondary-color);
      max-width: 600px;
      margin: 20px auto;
      text-align: center;
      line-height: 1.5;
    }
    
    .hero-image {
      width: 100%;
      height: auto;
      margin: 30px 0;
      border-radius: 8px;
      background-color: var(--light-gray);
      min-height: 300px;
    }
    
    section {
      margin-bottom: 50px;
    }
    
    h2 {
      font-size: 1.8rem;
      margin-bottom: 25px;
      font-weight: 700;
      color: var(--primary-color);
    }
    
    h3 {
      font-size: 1.4rem;
      margin: 30px 0 15px;
      font-weight: 600;
    }
    
    p {
      margin-bottom: 20px;
      color: var(--primary-color);
    }
    
    a {
      color: var(--accent-color);
      text-decoration: none;
    }
    
    a:hover {
      text-decoration: underline;
    }
    
    table {
      width: 100%;
      border-collapse: collapse;
      margin: 25px 0;
      font-size: 0.9rem;
    }
    
    th, td {
      padding: 12px 15px;
      border: 1px solid var(--border-color);
    }
    
    th {
      background-color: var(--light-gray);
      font-weight: 600;
      text-align: left;
    }
    
    tr:nth-child(even) {
      background-color: #fafafa;
    }
    
    ul {
      margin: 20px 0;
      padding-left: 20px;
    }
    
    li {
      margin-bottom: 10px;
    }
    
    .category-label {
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 1px;
      color: var(--secondary-color);
      margin-bottom: 10px;
      display: block;
    }
    
    .icon {
      width: 18px;
      height: 18px;
      vertical-align: middle;
      margin-right: 5px;
    }

 
    .logo {
      width: 800px;
    }


  .back-home {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-left: 18px;
  }
  
  .back-home:hover,
  .back-home:focus {
    color: #2c3e50;
    text-decoration: none;
  }
  
  .back-home .arrow {
    margin-right: 8px;
    font-size: 1.2em;
  }

  /* Demo Signup Section Styles */
  .demo-signup-section {
      position: relative;
      background: #fff;
      padding: 2rem 1rem;
  }

  .demo-signup-section .border-warning {
      border-color: #ffc107 !important; /* Matches the orange border from the image */
  }

  .demo-signup-section .btn-primary {
      background-color: #007bff;
      border-color: #007bff;
  }

  .demo-signup-section .btn-primary:hover {
      background-color: #0056b3;
      border-color: #0056b3;
  }

  .custom-bullets {
      padding-left: 0; /* Remove default padding */
  }

  .custom-bullet-icon {
      font-size: 1.2rem;
      margin-top: 0.2rem; /* Align icon with text */
      width: 1.5rem; /* Fixed width for consistent alignment */
      text-align: center;
      color: #76C7EF !important;
  }

  .placeholder-image {
      max-width: 100%;
      height: auto;
  }

  .placeholder-image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px; /* Optional: Matches the rounded corners in the image */
  }

  .demo-border {
    border-style: solid;
    border-color: #160C51 !important;
  }

  .demo-button {
    background: #76C7EF !important;
    color: white;
  }

  .demo-button:hover, .demo-button:active {
    background: #76C7EF !important;
    color: white;  
  }

  .demo-title {
    color: #76C7EF !important;
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
      .demo-signup-section .row {
          flex-direction: column-reverse; /* Stack image above text on medium screens */
      }
      .demo-signup-section .col-lg-6 {
          width: 100%;
      }
      .demo-signup-section .lead {
          font-size: 1.1rem;
      }
      .demo-signup-section h2 {
          font-size: 1.5rem;
      }
      .demo-signup-section .btn-lg {
          font-size: 1rem;
          padding: 0.5rem 1.5rem;
      }
      .placeholder-image img {
          width: 100%; /* Ensure image scales on smaller screens */
      }
  }

  @media (max-width: 768px) {
      .demo-signup-section .placeholder-image {
          margin-bottom: 1.5rem; /* Add space between image and text on small screens */
      }
  }


.form-title {
    font-size: 24px;
    font-weight: 600;
    color: #160C51;
    margin-bottom: 32px;
    line-height: 1.3;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    color: #1f2937;
    background-color: white;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 24px;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-bottom-color: #160C51;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    color: #1f2937;
    background-color: white;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 24px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-select:focus {
    outline: none;
    border-bottom-color: #160C51;
}

.demo-form-button, .pilot-form-button {
    width: 100%;
    padding: 10px 24px;
    font-size: 20px;
    font-weight: 400;
    color: white;
    background-color: #ff5722;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pilot-form-button {
    background-color: #00C853;
}

.demo-form-button:hover, .pilot-form-button:hover {
    background-color: #f4511e;
    transform: translateY(-1px);
}

.pilot-form-button:hover {
    background-color: green;
}

.demo-form-button:active, .pilot-form-button:active {
    transform: translateY(0);
}

.modal-content {
    background: white !important;
}  


.custom-btn {
    background-color: #0d6efd !important; /* Change background color */
    color: white !important; /* Change text color */
    border-color: #0d6efd !important; /* Change border color */
}

.custom-btn:hover, .custom-btn:focus {
    background-color: #0b5ed7 !important; /* Darker shade on hover */
    color: white !important; /*#160C51;*/
    border-color: #0b5ed7 !important;
} 

.modal-content {
    background-color: #ffffff !important; /* Force white background */
    border: none; /* Remove border if desired */
    padding: 10px !important;
}