.profile-hero {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e9 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.profile-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.profile-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.profile-image-container {
  position: relative;
  padding: 40px;
  text-align: center;
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.profile-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.profile-badge {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #28a745;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.profile-info {
  padding: 30px 40px 40px;
  text-align: center;
}

.profile-name {
  font-size: 32px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
}

.profile-title {
  font-size: 20px;
  color: #28a745;
  font-weight: 600;
  margin-bottom: 15px;
}

.profile-subtitle {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 15px;
}

.profile-rnpi {
  display: inline-block;
  background: #f1f5f9;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 25px;
}

.profile-rnpi span {
  color: #28a745;
  font-weight: 600;
}

.btn-appointment {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.35);
}

.btn-appointment:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(40, 167, 69, 0.45);
  color: white;
  text-decoration: none;
}

.btn-appointment svg {
  width: 24px;
  height: 24px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.section-title-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title-icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.section-title h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
}

.info-section {
  padding: 60px 0;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f1f5f9;
}

.credential-item:last-child {
  border-bottom: none;
}

.credential-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #e8f5e9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.credential-icon svg {
  width: 20px;
  height: 20px;
  stroke: #28a745;
  fill: none;
  stroke-width: 2;
}

.credential-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
}

.credential-content p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.about-text {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 15px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-text ul li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
}

.about-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
}

.experience-highlight {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e9 100%);
  border-radius: 16px;
  padding: 25px;
  margin-top: 20px;
}

.experience-highlight p {
  font-size: 15px;
  color: #4a5568;
  margin: 0;
  line-height: 1.7;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #28a745;
  text-decoration: none;
}

.back-link svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .profile-hero {
    padding: 60px 0 40px;
  }

  .profile-image {
    width: 180px;
    height: 180px;
  }

  .profile-name {
    font-size: 26px;
  }

  .profile-info {
    padding: 20px;
  }

  .btn-appointment {
    padding: 14px 30px;
    font-size: 16px;
  }

  .section-title h3 {
    font-size: 20px;
  }
}
