body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f4f4;
  color: #333;
}

header {
  background-color: #002D72;
  color: white;
  padding: 15px;
  text-align: center;
  position: relative;
}

.logo {
  width: 120px;
  height: auto;
  margin-top: 10px;
}

.under-construction {
  background: #F4A300;
  color: #002D72;
  padding: 5px;
  text-align: center;
}

.cofounders {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.cofounders h2 {
  color: #7D0F1E;
  margin-bottom: 30px;
}

.profile {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 500px;
  padding: 20px;
  background: #fafafa;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.profile img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center 30%; /* Adjusted to show more of the top */
  border-radius: 50%;
  border: 3px solid #002D72;
  margin-bottom: 15px;
}

.profile img.adjust-down {
  object-position: center 20%; /* Further adjustment for specific images */
}

.profile h3 {
  color: #002D72;
  margin: 10px 0 5px;
}

.title {
  font-size: 16px;
  color: #7D0F1E;
  margin: 5px 0;
}

.profile p {
  font-size: 14px;
  color: #555;
  text-align: justify;
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.profile ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0;
  font-size: 14px;
  color: #555;
  text-align: left;
}

footer {
  background-color: #7D0F1E;
  color: white;
  text-align: center;
  padding: 15px;
}

/* Mobile optimization */
@media (max-width: 600px) {
  .profile {
    padding: 15px;
  }

  .profile img {
    width: 100px;
    height: 100px;
    object-position: center 30%; /* Adjusted to show more top on mobile */
  }

  .profile p {
    font-size: 15px;
    line-height: 1.7;
    text-align: left !important; /* Prevent large dashes */
    hyphens: none;
  }

  .profile ul {
    padding-left: 15px;
    font-size: 13px;
  }
}