

.company_profile {
  display: flex;
  margin: 20px auto;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
}

.company_profile h2 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.top {
  border: 1px solid #ccc;
}

.profile_top {
    width: 45%;
    border: 1px solid #ccc;
}

.profile_row {
  display: flex;
  border-bottom: 1px solid #ccc;
}

.profile_row:last-child {
  border-bottom: none;
}

.profile_label {
  width: 20%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ccc;
  font-size: 0.95rem;
}

.profile_content {
    padding: 20px;
    font-size: 0.95rem;
    width: 80%;
}

@media (max-width: 600px) {
  .profile_top {
      width: 80%;
  }

  .profile_row {
    flex-direction: column;
    border-bottom: none;
  }
  .profile_label {
    width: 90%;
    background-color: #f9f9f9;
    border-right: none;
    border-bottom: 1px solid #ccc;
    justify-content: flex-start;
    padding: 10px 20px;
  }
  .profile_content {
    width: 100%;
  }

}
