.page-hero {
  background: linear-gradient(135deg, #f8fdfc 0%, #ffffff 50%, #f0fffe 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(10, 186, 181, 0.1) 0%, transparent 70%);
  -webkit-animation: float 6s ease-in-out infinite;
  animation: float 6s ease-in-out infinite;
}

.page-hero .inner {
  position: relative;
  z-index: 2;
}

.page-hero-content {
  text-align: center;
  padding: 80px 0 60px;
}

.page-hero-content h1 {
  color: #0abab5;
  margin-bottom: 15px;
  font-size: 48px;
}

.page-hero-subtitle {
  color: #4a5568;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.page-hero-subtitle:not(:last-child) {
  margin-bottom: 8px;
}

.profile-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(10, 186, 181, 0.1);
  margin-bottom: 40px;
}

.profile-card .profile-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.profile-card .profile-header .profile-image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #0abab5;
}

.profile-card .profile-header .profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.profile-card .profile-header .profile-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.profile-card .profile-header .profile-info .profile-name {
  color: #0abab5;
  margin-bottom: 8px;
  font-size: 24px;
}

.profile-card .profile-header .profile-info .profile-title {
  color: #4a5568;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.text-section {
  line-height: 1.8;
}

.text-section p {
  color: #4a5568;
  margin-bottom: 20px;
  font-size: 16px;
}

.text-section p:last-child {
  margin-bottom: 0;
}

.text-section h3 {
  color: #0abab5;
  margin: 40px 0 20px;
  position: relative;
  padding-left: 20px;
}

.text-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(135deg, #0abab5, rgb(16.6163265306, 242.1836734694, 235.7755102041));
  border-radius: 2px;
}

.text-section h3:first-child {
  margin-top: 0;
}

.text-section h4 {
  color: #0abab5;
  margin: 30px 0 15px;
}

.text-section h4:first-child {
  margin-top: 0;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(-20px) rotate(180deg);
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(-20px) rotate(180deg);
    transform: translateY(-20px) rotate(180deg);
  }
}

@media screen and (max-width: 1152px) {
  .page-hero-content {
    padding: 60px 0 40px;
  }

  .page-hero-content h1 {
    font-size: 40px;
  }

  .page-hero-subtitle {
    font-size: 16px;
  }

  .profile-card {
    padding: 30px;
    margin-bottom: 30px;
  }

  .profile-card .profile-header {
    gap: 25px;
    margin-bottom: 25px;
  }

  .profile-card .profile-header .profile-image {
    width: 100px;
    height: 100px;
  }

  .profile-card .profile-header .profile-info .profile-name {
    font-size: 22px;
  }

  .profile-card .profile-header .profile-info .profile-title {
    font-size: 15px;
  }

  .text-section p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .text-section h3 {
    margin: 35px 0 18px;
  }

  .text-section h4 {
    margin: 25px 0 12px;
  }
}

@media screen and (max-width: 490px) {
  .page-hero-content {
    padding: 50px 0 30px;
  }

  .page-hero-content h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .page-hero-subtitle {
    font-size: 15px;
  }

  .page-hero-subtitle:not(:last-child) {
    margin-bottom: 6px;
  }

  .profile-card {
    padding: 25px 20px;
    margin-bottom: 25px;
  }

  .profile-card .profile-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .profile-card .profile-header .profile-image {
    width: 80px;
    height: 80px;
  }

  .profile-card .profile-header .profile-info .profile-name {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .profile-card .profile-header .profile-info .profile-title {
    font-size: 14px;
  }

  .text-section p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .text-section h3 {
    margin: 30px 0 15px;
    padding-left: 15px;
  }

  .text-section h4 {
    margin: 20px 0 10px;
  }
}
/*# sourceMappingURL=common-page.css.map */