.sidebar {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 20px;
  margin-top: 30px
}
.sidebar h2 {
  background-color: #007bff; /* blue background */
  color: #fff;               /* white text */
  font-size: 1.5rem;
  padding: 10px 15px;
  margin-bottom: 0;          /* remove extra gap */
  border-radius: 4px 4px 0 0;
  border-bottom: 2px solid #0056b3; /* adds a visible line */
}

.sidebar .nav-link {
  color: #333;
  padding: 6px 0;
}

.nav.flex-column .nav-link {
  font-size: 16px;  /* larger than default */
  font-weight: 500;
}
.sidebar .nav-link:hover {
  color: #007bff;
}


/* Association block */
.flt-block {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 30px;
}

/* Title font size */
.association-title {
  font-size: 2rem;   /* bigger than default h3 */
  font-weight: bold;
  margin-bottom: 15px;
  color: #007bff;
}

/* Links font size */
.association-links li {
  margin-bottom: 10px;
}
.association-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.2rem; /* increased link size */
}
.association-links a:hover {
  color: #007bff;
  text-decoration: underline;
}


/* Increase heading size */
.col-xs-12 h3 {
  font-size: 24px;   /* bigger than default h3 */
  font-weight: bold;
  color: #1e266c;    /* optional: blue color */
}

/* Increase link size */
.col-xs-12 a {
  font-size: 16px; /* larger than default */
  font-weight: 500;
  color: #337a;
  text-decoration: none;
}

.col-xs-12 a:hover {
  color: #007bff;
  text-decoration: underline;
}


body {
    font-family: "Outfit", serif;
  }

@media (max-width: 768px) {
    .col-md-3{
        display: none;
    }
}