.chairman-page {
  padding: 60px 24px;
  max-width: 850px;
  margin: 48px auto;
  background: #faf7ff;
  color: #092c5c;
  border-radius: 18px;
  box-shadow: 0 16px 52px rgba(168,92,249,0.14), 0 4px 16px rgba(9,44,92,0.09);
  animation: fadeInPage 1.2s cubic-bezier(.21,.87,.38,1) both;
}

@keyframes fadeInPage {
  0% { opacity: 0; transform: translateY(45px);}
  100% { opacity: 1; transform: none;}
}

.chairman-header {
  text-align: center;
  margin-bottom: 40px;
}

.chairman-header h1 {
  font-size: 2.7rem;
  margin-bottom: 10px;
  color: #a85cf9;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px rgba(168,92,249,0.06);
}

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

.chairman-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.20), 0 2px 8px rgba(9,44,92,0.17);
  border: 5px solid #fff;
  transition: transform 0.45s cubic-bezier(.22,.64,.52,1.7), box-shadow 0.35s;
  animation: chairmanFloat 3.9s infinite alternate;
}
.chairman-photo:hover {
  transform: scale(1.055) rotate(-2deg);
  box-shadow: 0 20px 44px rgba(209,0,44,0.19), 0 8px 24px rgba(168,92,249,0.09);
}
@keyframes chairmanFloat {
  to { transform: translateY(-13px) scale(1.02);}
}

.chairman-content {
  margin: 0 auto;
  text-align: left;
}

.chairman-content blockquote {
  position: relative;
  margin: 0;
  padding: 38px 28px 32px 60px;
  background: linear-gradient(103deg, #f3e9fc 70%, #e5f2fa 100%);
  border-left: 7px solid #a85cf9;
  border-radius: 16px;
  font-size: 1.12rem;
  color: #333141;
  line-height: 1.78;
  font-family: 'Georgia', serif;
  font-style: italic;
  box-shadow: 0 4px 22px rgba(168,92,249,0.09);
  animation: fadeInQuote 1.3s cubic-bezier(.12,1,.37,1.17) both;
}
@keyframes fadeInQuote {
  0% { opacity: 0; transform: translateY(40px);}
  80% { opacity: .6; }
  100% { opacity: 1; transform: none;}
}

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

.chairman-signature {
  display: block;
  margin-top: 42px;
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: #a85cf9;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-style: normal;
  letter-spacing: 1.3px;
  text-align: right;
  border: none;
  border-bottom: 2px dashed #d1002c;
  background: transparent;
  padding-right: 0;
  float: none;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
  box-sizing: border-box;
}
@keyframes fadeInSignature {
  from { opacity: 0; transform: translateY(15px);}
  to   { opacity: 1; transform: none;}
}
.sign-name {
  display: block;
  font-size: 1.23rem;
  color: #d1002c;
  font-family: inherit;
  font-weight: bold;
  font-style: normal;
  margin-top: 5px;
}
.sign-title {
  display: block;
  font-size: 0.98rem;
  color: #a85cf9;
  font-family: inherit;
  font-weight: 600;
  margin-top: 1px;
}

/* Responsive */
@media (max-width: 700px) {
  .chairman-page { padding: 32px 7vw; }
  .chairman-header h1 { font-size: 1.38rem; }
  .chairman-photo { width: 130px; height: 130px; }
  .chairman-content blockquote { padding: 24px 8px 18px 36px; font-size: 0.99rem; }
  .quote-mark { font-size: 2.5rem; left: 7px; top: 3px; }
}
@media (max-width: 480px) {
  .chairman-page { padding: 18px 2vw; }
  .chairman-photo { width: 90px; height: 90px; }
  .chairman-content blockquote { padding: 14px 4vw 11px 15vw; font-size: 0.92rem; }
  .quote-mark { font-size: 1.4rem; left: 3px; top: 2px; }
  .chairman-signature { font-size: 0.99rem; margin-top: 30px; }
  .sign-name { font-size: 1.07rem; }
}
@media (max-width: 700px) {
  .chairman-signature {
    text-align: center;
    font-size: 1rem;
    padding-right: 0;
    margin-top: 30px;
  }
}
