body {
  font-size: 1rem;
  font-family: 'Raleway';
}

.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

/*
 * Header
 */
.site-header {
  border: 0!important;
}

.header {
  background: #222;
  color: #636b6f;
}

.header a {
  color: white!important;
}

.header a:hover {
  color: #636b6f;!important;
}

/*
 * Sidebar
 */

.sidebar {
  background: #222;
  color: #fff;
  border: 0!important;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 48px 0 0; /* Height of navbar */
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

.sidebar .nav-link {
  font-weight: 500;
  color: #fff;
}

.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #ddd;
}

.sidebar .nav-link.active {
  color: #ddd;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
}

ul {
  padding: 0;
}

ul.dashed {
  list-style-type: none;
}

ul.dashed > li {
  text-indent: -5px;
  text-align: left!important;
}

ul.dashed > li:before{
  content: " - ";
  text-indent: -5px;
}

/*
 * Content
 */

[role="main"] {
  padding-top: 133px; /* Space for fixed navbar */
}

@media (min-width: 768px) {
  [role="main"] {
    padding-top: 48px; /* Space for fixed navbar */
  }
}

/*
 * Navbar
 */

.navbar {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, .25);
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
}

.table {
  table-layout:fixed;
  font-size: 18px;
  text-overflow: ellipsis;

  /* Required for text-overflow to do anything */
  white-space: nowrap;
  overflow: hidden !important;
}

.side-content {
  width: 100%;
  margin: 10px auto;
}

.side-content > div {
  width: 70%;
  display: block;
  margin: 30px auto;
  text-align: center;
}

.side-content img {
  width: 70%;
  display: block;
  margin: 20px auto;
  border: white solid 5px;
}

/*
 * Global
 */
a {
  color: black;
}

a:hover {
  color: grey;
}

/*
 * it-content
 */
.it-container {
  color: black;
  font-size: 20px;
  font-family: 'Avenir Next';
  margin-bottom: 30px;
}

.it-header {
  border-bottom: 1px solid #222;
}

.it-content {
  margin: 20px auto;
}

.it-subheader {
  color: #666;
}

.border-left {
  border-left: 1px solid #222;
}

.it-img-text {
  text-align: center;
}

.it-img-text > img {
  width: 80%;
  display: block;
  margin: 10px auto;
}

/* Privacy Policy Styles */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.policy-header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #222;
  padding-bottom: 20px;
}

.policy-header h1 {
  color: #222;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.last-updated {
  color: #666;
  font-style: italic;
  font-size: 0.9rem;
}

.policy-content {
  line-height: 1.6;
  color: #333;
}

.policy-content h2 {
  color: #222;
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 4px solid #222;
  padding-left: 15px;
}

.policy-content h3 {
  color: #333;
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content h4 {
  color: #444;
  font-size: 1.2rem;
  margin-top: 25px;
  margin-bottom: 10px;
}

.policy-content p {
  margin-bottom: 15px;
  text-align: justify;
}

.policy-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 8px;
  text-align: left;
}

.policy-content strong {
  color: #222;
  font-weight: 600;
}

.policy-content a {
  color: #007bff;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-container {
    padding: 15px;
  }
  
  .policy-header h1 {
    font-size: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.2rem;
  }
  
  .policy-content h4 {
    font-size: 1.1rem;
  }
}