.trustee-page {
  padding: 60px 24px;
  max-width: 850px;
  margin: 48px auto;
  background: #faf7ff;
  color: #092c5c;
  border-radius: 18px;
  box-shadow: 0 14px 45px rgba(168,92,249,0.13), 0 4px 16px rgba(9,44,92,0.09);
  animation: fadeInPage 1.15s cubic-bezier(.21,.87,.38,1) both;
}
@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(40px);}
  to   { opacity: 1; transform: none;}
}

.trustee-header {
  text-align: center;
  margin-bottom: 38px;
}

.trustee-header h1 {
  font-size: 2.35rem;
  color: #a85cf9;
  font-weight: 800;
  letter-spacing: 1.35px;
  margin-bottom: 10px;
}

.trustee-header p {
  font-size: 1.12rem;
  color: #555;
  font-weight: 500;
  letter-spacing: .2px;
  margin-bottom: 16px;
  animation: fadeInIntro 1.1s 0.18s both;
}
@keyframes fadeInIntro {
  from { opacity: 0; transform: translateY(10px);}
  to   { opacity: 1; transform: none; }
}

.trustee-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: 22px auto 30px auto;
  display: block;
  background: #fff;
  box-shadow: 0 12px 32px rgba(168,92,249,0.18), 0 2px 8px rgba(9,44,92,0.15);
  border: 5px solid #fff;
  transition: transform 0.45s cubic-bezier(.22,.64,.52,1.7), box-shadow 0.35s;
  animation: trusteeFloat 3.6s infinite alternate;
}
.trustee-photo:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 20px 43px rgba(209,0,44,0.18), 0 8px 23px rgba(168,92,249,0.07);
}
@keyframes trusteeFloat {
  to { transform: translateY(-9px) scale(1.017); }
}

.trustee-content {
  margin: 0 auto;
  text-align: left;
}
.trustee-content blockquote {
  position: relative;
  margin: 0;
  padding: 34px 20px 28px 58px;
  background: linear-gradient(104deg, #f3e9fc 74%, #e5f2fa 100%);
  border-left: 7px solid #a85cf9;
  border-radius: 17px;
  font-size: 1.15rem;
  color: #333141;
  line-height: 1.78;
  font-family: 'Georgia', serif;
  font-style: italic;
  box-shadow: 0 4px 22px rgba(168,92,249,0.08);
  animation: fadeInQuote 1.1s cubic-bezier(.13,1.1,.39,1.18) both;
}
@keyframes fadeInQuote {
  from { opacity: 0; transform: translateY(28px);}
  to   { opacity: 1; transform: none;}
}

.quote-mark {
  position: absolute;
  left: 12px;
  top: 7px;
  font-size: 4.3rem;
  font-family: 'Georgia', serif;
  color: #d1002c;
  font-weight: 700;
  line-height: 1;
  opacity: .15;
  pointer-events: none;
  z-index: 1;
  font-style: normal;
  animation: dropQuote 1s .12s both;
}
@keyframes dropQuote {
  from { opacity: 0; transform: scale(.5) rotate(-25deg);}
  to   { opacity: .15; transform: none;}
}

.trustee-signature {
  display: block;
  margin-top: 38px;
  margin-bottom: 0;
  font-size: 1.14rem;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: #a85cf9;
  font-style: normal;
  text-align: right;
  border-bottom: 2px dashed #d1002c;
  letter-spacing: 1.2px;
  font-weight: 600;
  background: none;
  padding-right: 0;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
  box-sizing: border-box;
}
.sign-name {
  display: block;
  color: #d1002c;
  font-size: 1.15rem;
  font-weight: bold;
  margin-top: 5px;
}
.sign-title {
  display: block;
  color: #a85cf9;
  font-size: 0.99rem;
  font-weight: 600;
  margin-top: 1px;
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .trustee-page { padding: 30px 6vw;}
  .trustee-header h1 { font-size: 1.18rem;}
  .trustee-photo { width: 120px; height: 120px;}
  .trustee-content blockquote { padding: 17px 5px 15px 29px; font-size: 0.97rem;}
  .quote-mark { font-size: 2rem; left: 3px; top: 2px;}
  .trustee-signature { font-size: 0.99rem; text-align: center; margin-top: 22px;}
  .sign-name { font-size: 1.07rem;}
}

@media (max-width: 420px) {
  .trustee-content blockquote { font-size: 0.88rem; padding:8px 3px 8px 10vw;}
  .quote-mark { font-size: 1.1rem; left: 1px; top:2px;}
}
