.profile_section {
  width: 100%;
  padding: 40px;
}

.profile_section .profile_header {
  background: #fff;
  border-radius: 5px;
  padding: 22px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.profile_section .profile_title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile_section .profile_icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-size: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .15);
  aspect-ratio: 1/1;
}

.profile_section .profile_title h2 {
  margin: 0;
  font-size: 30px;
  color: #333;
}

.profile_section .profile_card {
  position: relative;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 5px;
  padding: 35px;
  min-height: 420px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .15);
}

.profile_section .edit_btn {
  position: absolute;
  right: 30px;
  top: 30px;
  background: transparent;
  border: none;
  color: #0078d4;
  cursor: pointer;
  font-size: 20px;
}

.profile_section .profile_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 100px;
}

.profile_section .info_box label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #0b2343;
  margin-bottom: 10px;
}

.profile_section .info_box p {
  margin: 0;
  color: #222;
  font-size: 18px;
  word-break: break-word;
}

.profile_section .form_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 25px;
}

.profile_section .form_group {
  display: flex;
  flex-direction: column;
}

/* .form_group label {
  margin-bottom: 8px;
  font-weight: 600;
}

.form_group input,
.form_group select {
  width: 100%;
  height: 48px;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  padding: 0 15px;
  font-size: 15px;
  outline: none;
}

 */

.profile_section .form_group input:focus,
.profile_section .form_group select:focus {
  border-color: #0b7fd4;
  box-shadow: none !important;
}

.profile_section .form_buttons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 50px;
}

/* .cancel_btn {
  height: 44px;
  padding: 0 26px;
  border: 1px solid #d5d5d5;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}

.save_btn {
  height: 44px;
  padding: 0 30px;
  border: none;
  background: #0b7fd4;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: .3s;
}

.save_btn:hover {
  background: #046ab3;
} */

@media (min-width:0px) and (max-width:767.98px) {

  .profile_section .profile_grid,
  .profile_section .form_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .profile_section {
    padding: 0px;
  }

  .profile_section .info_box p {
    font-size: 16px;
  }

  .profile_section .profile_title h2 {
    font-size: 17px;
  }

  .profile_section .profile_card {
    padding: 15px;
  }

  .profile_section .form_buttons {
    justify-content: center;
  }

  .profile_section .edit_btn {
    position: unset;
    margin-left: auto;
    display: flex;
  }

  .profile_section .profile_header {
    padding: 18px;
  }

  .profile_section .profile_icon {
    width: 40px;
    height: 40px;
  }

}

@media (min-width:768px) and (max-width:991.98px) {
  .profile_section .info_box p {
    font-size: 16px;
  }
}