* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.funnel-sans-body {
  font-family: "Funnel Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.funnel-sans-heading {
  font-family: "Funnel Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

body {
  font-family: "Funnel Sans", sans-serif;
  font-weight: 300;
  color: #333;
  background-color: #f7fafc;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Funnel Sans", sans-serif;
  font-weight: 500;
}

.section-subtitle {
  font-family: "Funnel Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 1rem;
}

.section-subheading {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #1a202c;
}

.funding-list, .publication-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.funding-list li, .publication-list li {
  margin-bottom: 0.5rem;
}

.publication-list a {
  color: #1e40af;
  text-decoration: none;
}

.publication-list a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  margin-right: 0.5rem;
}

.logo-text:empty {
  display: none;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-link {
  text-decoration: none;
  color: #4a5568;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #1e40af;
}

.hero {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 6rem 0 4rem;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.9;
  filter: brightness(50%) blur(2px); /* Adjust the percentage for desired darkness */ 
    clip-path: inset(4px); /* Crops 2px from all sides */
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

.bhero {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 6rem 0 4rem;
}

.bhero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.9;
  filter: brightness(80%) blur(0px); /* Adjust the percentage for desired darkness */ 
    clip-path: inset(4px); /* Crops 2px from all sides */ 
}

.bhero-content {
  max-width: 800px;
  margin: 0 auto;
}

.bhero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bhero p {
  font-size: 1.2rem;
}
    
.section {
  padding: 4rem 0;
  scroll-margin-top: 80px;
}

.section-alt {
  background-color: #ffffff;
}

.section-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.section-content-reverse {
  flex-direction: row-reverse;
}

.section-text {
  flex: 1;
}

.section-img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.constulting-img {
  width: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a202c;
}

.section h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1a202c;
}

.section p {
  margin-bottom: 1rem;
}

.section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.section ul li {
  margin-bottom: 0.5rem;
}

.contact-info {
  margin: 1.5rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #1e40af;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.footer {
  background-color: #edf2f7;
  padding: 1.5rem 0;
  text-align: center;
}

.footer p {
  color: #4a5568;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .section-content, .section-content-reverse {
    flex-direction: column;
  }

  .section-img {
    width: 100%;
    max-width: 400px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
    
  .hero-bottom h1 {
    font-size: 2rem;
  }

  .hero-bottom p {
    font-size: 1rem;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-link {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}