body {
      font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
      color: #1f3a44;
      background-color: #f9fcfd;
    }
    .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
      color: #1e3c4f !important;
    }
    .section-title {
      font-size: 2.4rem;
      font-weight: 700;
      position: relative;
      display: inline-block;
      margin-bottom: 1rem;
    }
    .section-title:after {
      content: '';
      display: block;
      width: 70px;
      height: 4px;
      background: #d98c4a;
      border-radius: 4px;
      margin-top: 10px;
    }
    .team-card {
      background: white;
      border-radius: 1.5rem;
      padding: 2rem 1.5rem;
      box-shadow: 0 12px 28px rgba(0,30,40,0.04);
      height: 100%;
      transition: 0.2s;
      border: 1px solid #eef4f7;
      text-align: center;
    }
    .team-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 35px rgba(43,92,111,0.12);
    }
    .avatar {
      width: 140px;
      height: 140px;
      background: #e7f0f5;
      border-radius: 50%;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      color: #2b5c6f;
      background-size: cover;
      background-position: center;
      border: 4px solid #d98c4a20;
    }
    .team-name {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1e3c4f;
      margin-bottom: 0.3rem;
    }
    .team-title {
      font-size: 1.1rem;
      color: #d98c4a;
      font-weight: 600;
      margin-bottom: 0.8rem;
    }
    .team-bio {
      color: #2f4a55;
      line-height: 1.6;
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }
    .team-expertise {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem;
      justify-content: center;
      margin-bottom: 1.2rem;
    }
    .expertise-tag {
      background: #eef4f7;
      border-radius: 50px;
      padding: 0.2rem 1rem;
      font-size: 0.8rem;
      color: #2b5c6f;
    }
    .social-links {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 0.5rem;
    }
    .social-links a {
      color: #2b5c6f;
      font-size: 1.3rem;
      transition: 0.2s;
    }
    .social-links a:hover {
      color: #d98c4a;
      transform: scale(1.1);
    }
    .breadcrumb {
      background: transparent;
      padding: 0.5rem 0;
    }
    .breadcrumb-item a {
      color: #2b5c6f;
      text-decoration: none;
    }
    .btn-cta {
      background: #d98c4a;
      color: white;
      border-radius: 50px;
      padding: 0.8rem 2.5rem;
      font-weight: 600;
      border: none;
      transition: 0.3s;
    }
    .btn-cta:hover {
      background: #c57633;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(217,140,74,0.2);
    }
    .footer-link {
      color: #b6ccd9;
      text-decoration: none;
    }
    .footer-link:hover {
      color: white;
    }