/* Fix for talent profile section to match other sections */
.talent-profile-section {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
  position: relative;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.talent-profile-section:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Make title blue like other sections */
.talent-profile-section h2 {
  color: #6495ED;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 0.5cm;
  font-weight: 600;
  font-family: 'Archivo Narrow', sans-serif;
  cursor: pointer;
  position: relative;
  padding-right: 1cm;
}

/* Fix caret size and behavior */
.talent-profile-section h2::after {
  content: "\\f078";
  font-family: 'FontAwesome';
  font-size: 0.4cm;
  color: #6495ED;
  position: absolute;
  right: 0.3cm;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transition: transform 0.3s ease;
}

.talent-profile-section h2.expanded::after {
  transform: translateY(-50%) rotate(0);
}

/* Fix collapsed state */
.talent-profile-section.collapsed .talent-profile-content {
  max-height: 0;
  overflow: hidden;
}

.talent-profile-section .talent-profile-content {
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}