
/* Update about profile image to be smaller */
.research-profile img {
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 10px;
}

.img-large {
  width: 550px;
  height: 300px;
}

.img-medium {
  width: 400px;
  height: 350px;
}

.img-small {
  width: 400px;
  height: 300px;
}

.research-content {
  flex: 1;
  max-width: 800px; /* Increased from 600px to give more space for text */
  padding: 1rem;
  text-align: justify; /* Justify text for better readability */
}
/* Add these styles to improve your layout */

.research-content ul {
  list-style-type: disc;
  padding-left: 20px; /* Add padding to the left for better readability */
}

/* About container styling */
.research-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

/* Adjust the about profile to work within this container */
.research-profile {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background-color: #f9f9f9;
  margin-bottom: 2rem;
  border-radius: 8px;
}

/* Make sure about headings have proper spacing */
.research-container h1, .about-container h2 {
  color: #1c80ab;
  margin-bottom: 1rem;
}

/* Add spacing between sections */
.research-section {
  margin-bottom: 3rem;
}

.research-section a {
  color: #1c80ab;
  text-decoration: none;
}