<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cta-section {
  padding: 80px 0;
  background-color: #f5f7fa;
}
.profile-wrapper {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.profile-img-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  cursor: pointer;
}
.profile-img {
  width: 8rem;
  height: 8rem;
  overflow: hidden;
  border-radius: 9999px;
  margin: 0 auto;
  border: 4px solid #22c55e;
  transition: all 0.3s ease;
}
.profile-img-wrapper:hover .profile-img {
  transform: scale(1.05);
}
.profile-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.profile-overlay {
  position: absolute;
  bottom: 16px;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: #22c55e;
  border-radius: 9999px;
  border: 4px solid #fff;
  transition: all 0.3s ease;
}
.profile-title {
  margin-bottom: 24px;
  color: #141f40;
}
.profile-para {
  color: #141f40;
  margin-bottom: 32px;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta {
  background: #ff4136;
  border: none;
  color: #fff;
  padding: 16px 32px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}
.btn-cta:hover {
  opacity: 0.9;
  transform: scale(1.05);
}
</pre></body></html>