/* Reset and base styles */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100vw;
  background: linear-gradient(135deg, #F5E6D3 0%, #F4C2A1 50%, #E67E22 100%);
  font-family: system-ui, sans-serif;
}

body.team-bg {
  background: linear-gradient(135deg, #F5E6D3 0%, #4A9B9B 50%, #34495E 100%);
}

/* Primary and supporting color variables */
:root {
  --teal-blue: #4A9B9B;
  --charcoal-black: #2D2D2D;
  --warm-orange: #E67E22;
  --brick-red: #C0392B;
  --soft-pink: #F4C2A1;
  --deep-teal: #34495E;
  --warm-beige: #F5E6D3;
}

.hero {
  width: 100vw;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.logo-container {
  position: relative;
  width: 576px; /* 768px * 0.75 */
  height: 617px; /* 823px * 0.75 */
  display: block;
}

.left-piece,
.right-piece {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-sizing: border-box;
  opacity: 0;
}

.left-piece {
  z-index: 1;
  transform: translateX(-100%);
  animation: slideInLeft 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.right-piece {
  z-index: 2;
  transform: translateX(100%);
  animation: slideInRight 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  60% {
    opacity: 1;
    transform: translateX(5%);
  }
  80% {
    transform: translateX(-2%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  60% {
    opacity: 1;
    transform: translateX(-5%);
  }
  80% {
    transform: translateX(2%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .logo-container {
    width: 67.5vw; /* 90vw * 0.75 */
    height: calc(67.5vw * 617 / 576);
  }
}

@media (prefers-reduced-motion: reduce) {
  .left-piece,
  .right-piece {
    animation: none !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: none !important;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.hero-text {
  width: 700px;
  max-width: 95vw;
  margin-bottom: 4px;
  opacity: 0;
  animation: fadeInText 1.2s ease 2s forwards;
  display: block;
}

@keyframes fadeInText {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 900px) {
  .hero-text {
    width: 85vw;
    margin-bottom: 2px;
  }
}

.home-content {
  max-width: 600px;
  margin: 56px auto 56px auto;
  padding: 40px 28px 56px 28px;
  background: rgba(245, 230, 211, 0.97); /* warm beige */
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(40,40,60,0.10), 0 1.5px 6px rgba(8,174,234,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(32px);
  animation: fadeInSection 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.home-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--charcoal-black);
  margin-bottom: 0.5em;
  letter-spacing: -1px;
  text-align: center;
}

.home-subtitle {
  font-size: 1.2rem;
  color: var(--teal-blue);
  font-weight: 600;
  margin: 0.2em 0 1.2em 0;
  text-align: center;
  letter-spacing: 0.5px;
}

.home-lead {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--charcoal-black);
  font-weight: 500;
  margin-bottom: 0.5em;
  text-align: center;
  letter-spacing: -0.01em;
}

@media (max-width: 400px) {
  .home-lead {
    font-size: 0.98rem;
    overflow-x: auto;
    max-width: 100vw;
  }
}

.home-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5em;
  text-align: center;
}

.home-section-title {
  font-size: 1.15rem;
  color: var(--brick-red);
  font-weight: 700;
  margin: 1.5em 0 0.7em 0;
  text-align: center;
  letter-spacing: 0.5px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.checklist li {
  position: relative;
  padding-left: 2.1em;
  margin-bottom: 0.85em;
  font-size: 1.05rem;
  color: var(--charcoal-black);
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  width: 100%;
  max-width: 420px;
}

.checklist li::before {
  content: '\2714';
  position: absolute;
  left: 0.2em;
  top: 0.1em;
  color: var(--teal-blue);
  font-size: 1.25em;
  font-weight: bold;
  background: linear-gradient(135deg, var(--warm-orange) 0%, var(--brick-red) 60%, var(--teal-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-benefit {
  font-size: 1.08rem;
  color: var(--charcoal-black);
  font-weight: 600;
  margin: 1.2em 0 1.2em 0;
  text-align: center;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--warm-orange) 0%, var(--brick-red) 60%, var(--teal-blue) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.85em 2.2em;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(8,174,234,0.10);
  text-decoration: none;
  margin-top: 1.2em;
  letter-spacing: 0.5px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  align-self: center;
  position: relative;
  z-index: 1;
  /* Pulse animation */
  animation: ctaPulse 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--brick-red) 0%, var(--warm-orange) 60%, var(--teal-blue) 100%);
  box-shadow: 0 8px 24px rgba(230,126,34,0.18), 0 2px 8px rgba(8,174,234,0.18);
  transform: scale(1.045);
}

.cta-button:active {
  transform: scale(0.97);
  box-shadow: 0 2px 4px rgba(44,73,94,0.10);
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(8,174,234,0.10); }
  50% { box-shadow: 0 8px 32px rgba(230,126,34,0.18), 0 2px 8px rgba(8,174,234,0.18); }
}

@media (max-width: 700px) {
  .home-content {
    max-width: 98vw;
    padding: 18px 4vw 32px 4vw;
    border-radius: 14px;
    margin: 32px 0 32px 0;
  }
  .home-title {
    font-size: 1.3rem;
  }
  .home-section-title {
    font-size: 1rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 0.7em 1.2em;
  }
  .checklist li {
    max-width: 98vw;
  }
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.team-content {
  max-width: 600px;
  margin: 64px auto 64px auto;
  padding: 40px 28px 56px 28px;
  background: rgba(245, 230, 211, 0.97); /* warm beige */
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(40,40,60,0.10), 0 1.5px 6px rgba(8,174,234,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(32px);
  animation: fadeInSection 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.back-link {
  display: inline-block;
  color: var(--teal-blue);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.5em;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.back-link:hover, .back-link:focus {
  color: var(--brick-red);
  text-decoration: underline;
}

.team-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal-black);
  margin-bottom: 0.5em;
  letter-spacing: -1px;
}

.team-subtitle {
  font-size: 1.15rem;
  color: var(--teal-blue);
  font-weight: 600;
  margin-bottom: 1.2em;
}

.team-lead {
  font-size: 1.08rem;
  color: var(--charcoal-black);
  font-weight: 500;
  margin-bottom: 0.5em;
}

.team-desc {
  font-size: 1rem;
  color: var(--charcoal-black);
  margin-bottom: 2em;
}

.team-member {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(74, 155, 155, 0.07); /* light teal overlay */
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(8,174,234,0.06);
  margin-top: 12px;
  max-width: 100%;
}

.team-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--teal-blue);
  box-shadow: 0 2px 8px rgba(40,40,60,0.10);
  background: #fff;
}

.team-bio {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 320px;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal-black);
  margin-bottom: 0.2em;
}

.team-role {
  font-size: 1.05rem;
  color: var(--brick-red);
  font-weight: 600;
  margin-bottom: 0.7em;
}

.team-bio-text {
  font-size: 1rem;
  color: var(--charcoal-black);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .team-content {
    max-width: 98vw;
    padding: 18px 4vw 32px 4vw;
    border-radius: 14px;
    margin: 32px 0 32px 0;
  }
  .team-member {
    flex-direction: column;
    gap: 18px;
    padding: 18px 8px;
  }
  .team-bio {
    align-items: center;
    text-align: center;
    max-width: 98vw;
  }
}

.site-header {
  width: 100%;
  background: rgba(245, 230, 211, 0.92);
  box-shadow: 0 2px 8px rgba(44, 73, 94, 0.06);
  padding: 0 0;
  position: relative;
  z-index: 10;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal-blue);
  letter-spacing: -0.5px;
  text-shadow: 0 1px 0 #fff2;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.nav-link {
  color: var(--charcoal-black);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
  position: relative;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-blue), var(--warm-orange), var(--brick-red));
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.nav-link:hover::after, .nav-link:focus::after, .nav-link.active::after {
  transform: scaleX(1);
}

@media (max-width: 700px) {
  .header-inner {
    padding: 0 10px;
    height: 52px;
  }
  .site-title {
    font-size: 1rem;
  }
  .site-nav {
    gap: 14px;
  }
  .nav-link {
    font-size: 0.98rem;
  }
}

.section-divider-wrap {
  width: 100%;
  margin: 0 0 32px 0;
  line-height: 0;
  background: none;
  display: block;
}

.section-divider {
  display: block;
  width: 100%;
  height: 48px;
  min-height: 24px;
  margin: 0;
  background: none;
}

@media (max-width: 700px) {
  .section-divider {
    height: 24px;
  }
  .section-divider-wrap {
    margin-bottom: 18px;
  }
}

.site-footer {
  width: 100%;
  background: rgba(245, 230, 211, 0.97);
  box-shadow: 0 -2px 8px rgba(44, 73, 94, 0.04);
  padding: 0;
  margin-top: 48px;
}

.footer-inner.simple-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0 12px 0;
}

.footer-copy {
  font-size: 0.98rem;
  color: var(--deep-teal);
  text-align: center;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal-blue);
  letter-spacing: -0.5px;
}

.footer-nav {
  display: flex;
  gap: 18px;
}

.footer-link {
  color: var(--charcoal-black);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-link:hover, .footer-link:focus {
  color: var(--brick-red);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-icon svg {
  display: block;
  stroke: var(--teal-blue);
  transition: stroke 0.18s;
}
.footer-icon:hover svg, .footer-icon:focus svg {
  stroke: var(--brick-red);
}

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    padding: 18px 4vw 12px 4vw;
    gap: 8px;
  }
  .footer-brand, .footer-copy {
    margin-left: 0;
  }
  .footer-nav {
    gap: 12px;
  }
}

.contact-form {
  width: 100%;
  max-width: 420px;
  margin: 2em auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  background: none;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}

.contact-form label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-teal);
  margin-bottom: 0.1em;
}

.contact-form input,
.contact-form textarea {
  font-size: 1rem;
  padding: 0.7em 1em;
  border: 1.5px solid #dbe6e6;
  border-radius: 8px;
  background: #fff;
  color: var(--charcoal-black);
  font-family: inherit;
  transition: border 0.18s, box-shadow 0.18s;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal-blue);
  box-shadow: 0 0 0 2px #4a9b9b22;
}

.contact-form textarea {
  min-height: 80px;
  max-height: 220px;
}

.contact-form .cta-button {
  margin-top: 0.7em;
  width: 100%;
  font-size: 1.08rem;
  padding: 0.9em 0;
}

@media (max-width: 700px) {
  .contact-form {
    max-width: 98vw;
    padding: 0 2vw;
  }
}

.team-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 36px 0 0 0;
  width: 100%;
}

@media (max-width: 700px) {
  .team-cta-wrap {
    margin: 24px 0 0 0;
  }
} 

/* Testimonial Carousel Styles */
.testimonial-carousel-section {
  margin: 48px auto 0 auto;
  max-width: 600px;
  background: rgba(245, 230, 211, 0.97);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(40,40,60,0.08);
  padding: 36px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-blue);
  margin-bottom: 1.5em;
}

.testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 160px;
}

.carousel-arrow {
  background: var(--teal-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0 12px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(74,155,155,0.10);
  z-index: 2;
}
.carousel-arrow:hover, .carousel-arrow:focus {
  background: var(--warm-orange);
  outline: none;
}

.testimonial-slide {
  display: none;
  flex: 1 1 0;
  max-width: 420px;
  min-width: 0;
  opacity: 0;
  transition: opacity 0.5s;
  padding: 0 8px;
}
.testimonial-slide.active {
  display: block;
  opacity: 1;
  animation: fadeInTestimonial 0.7s;
}
@keyframes fadeInTestimonial {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-slide blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--deep-teal);
  margin: 0 0 1em 0;
  line-height: 1.6;
  background: none;
  border-left: 4px solid var(--teal-blue);
  padding-left: 16px;
}
.testimonial-author {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal-black);
  margin-top: 0.5em;
}

@media (max-width: 700px) {
  .testimonial-carousel-section {
    max-width: 98vw;
    padding: 24px 4vw 24px 4vw;
  }
  .testimonial-carousel {
    min-height: 140px;
  }
  .carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
    margin: 0 4px;
  }
  .testimonial-slide blockquote {
    font-size: 1rem;
    padding-left: 10px;
  }
} 

/* Impactful About Section Styles */
.impact-lines {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--deep-teal);
  line-height: 1.4;
  margin-bottom: 1.2em;
  text-align: center;
  letter-spacing: -0.5px;
}
.impact-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-blue) 0%, var(--warm-orange) 100%);
  border-radius: 2px;
  margin: 0 auto 1.2em auto;
  opacity: 0.7;
}
.impact-paragraph {
  font-size: 1.08rem;
  color: var(--charcoal-black);
  font-weight: 500;
  margin-bottom: 1em;
  text-align: center;
}
.impact-paragraph strong, .impact-paragraph b {
  color: var(--teal-blue);
  font-weight: 700;
}
@media (max-width: 700px) {
  .impact-lines {
    font-size: 1.08rem;
    padding: 0 2vw;
  }
  .impact-divider {
    width: 36px;
    height: 3px;
  }
  .impact-paragraph {
    font-size: 0.98rem;
    padding: 0 2vw;
  }
} 