body {
  background-color: #f8f9fa;
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "width" 100;
}
h1, h2 {
  color: #343a40;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.intro-text {
  margin-bottom: 2rem;
  text-align: justify;
}
.faq-section {
  margin-top: 2rem;
}
.faq-item {
  margin-bottom: 1.5rem;
}
.faq-question {
  font-weight: bold;
  margin-bottom: 0;
  /* color: #0056b3; */
}
.faq-answer {
  margin-top: 0.5rem;
}
.papers-list li {
  margin-bottom: 0.5rem;
}
.contact-info {
  margin-top: 1rem;
  margin-bottom: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-name {
  text-align: left;
}

.contact-details {
  text-align: right;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-details {
    text-align: left;
    margin-top: 1rem;
  }
}
/* Additional styles for links */
a {
  color: #0056b3;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}


/* Footer styling */
footer {
  margin-top: 3rem;
  padding: 1rem 0;
  background-color: #e9ecef;
  text-align: center;
  color: #6c757d;
}


.container {
  max-width: 800px;
  margin: 2.5rem auto 0 auto;
  padding: 0 1rem;

.subheader {
  color: #6c757d;        /* A subtle gray color */
  margin-top: 1rem;        /* Space above the subheader */
  margin-bottom: 2rem;     /* Space below the subheader */
  text-align: center;      /* Center the text */
  font-style: italic;
}



.noto-serif-header, h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}


.papers-list {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0;       /* Remove default padding */
}

.papers-list li::before {
  content: "\1F4C4";     /* Unicode for paper emoji 📄 */
  margin-right: 8px;     /* Space between emoji and text */
  font-size: 1.1em;      /* Adjust emoji size if needed */
}


