body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  background: #008281;
  color: #dcdcdc;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.profile-container {
  background: #1A4255;
  border-radius: 10px;
  max-width: 820px;
  width: 100%;
  padding: 28px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  position: relative;
}

.close-button {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 26px;
  color: #ccc;
  background: #1a4255;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.close-button:hover {
  transform: scale(1.1);
  color: #fff;
}

h2 {
  color: #ff471d;
  font-size: 28px;
  margin-bottom: 4px;
}

h3 {
  color: #f0f0f0;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 10px;
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
}

.designation {
  font-style: italic;
  color: #aaa;
  margin-bottom: 20px;
}

.profile-container img {
  width: 160px;
  border-radius: 8px;
  float: right;
  margin-left: 20px;
}

p {
  line-height: 1.7;
  margin-bottom: 12px;
}

ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

ul li {
  margin-bottom: 6px;
  list-style-type: disc;
}

@media (max-width: 768px) {
  .profile-container {
    padding: 16px;
  }

  .profile-container img {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
  }

  .close-button {
    top: 12px;
    right: 12px;
  }
}


.neuro-title {
  color: #ff471d;
}