.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

/* Remove default list styling */

.icon-list {
  list-style: none;
  padding-left: 0;
}

/* Style each list item */

.icon-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

/* Style the icon */

.icon-list li i {
  margin-right: 8px;
  color: #007bff;
  font-size: 1.2em;
  margin-top: 2px;
}

/* Style the text */

.icon-list li span {
  font-size: 16px;
  color: #333;
}

#DemoRequest {
  /*background-color: #ffffff;*/
  /*border-radius: 15px;*/
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
  padding: 20px;
  margin: auto;
  max-width: 900px;
}

h1.text-primary {
  font-size: 24px;
  font-weight: bold;
}

.form-group {
  margin-bottom: 10px;
}

.form-control {
  font-size: 14px;
  padding: 8px;
}

.input-group-text {
  font-size: 14px;
}

textarea.form-control {
  resize: none;
}

.btn-primary {
  font-size: 16px;
  font-weight: bold;
}

/* Two-Column Layout for Larger Screens */

@media (min-width: 768px) {
  .form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .form-container .form-group {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (min-width: 768px) {
  .form-container .form-group textarea {
    flex: 0 0 100%;
  }
}

/* Single Column for Small Screens */

@media (max-width: 767px) {
  .form-container .form-group {
    flex: 0 0 100%;
  }
}

