body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      color: #222;
    }


    .nav-bar {
      width: 100%;
      height: 72px;
      background: #ffffff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 30px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.08);
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-logo {
      width: 42px;
      height: 42px;
      background: url("/static/img/logo.png") no-repeat center/contain;
    }

    .nav-title {
      font-size: 26px;
      font-weight: 600;
      color: #333;
       margin-top: 6px;
    }

    .nav-menu {
      display: flex;
      gap: 50px;
      font-size: 18px;
      align-items: center;
      white-space: nowrap;
      margin-right: 60px;
    }

    .nav-menu a,
    .dropdown-main {
      color: #333;
      text-decoration: none;
      height: 25px;
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .nav-menu a:hover,
    .dropdown-main:hover {
      color: #000;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: #ffffff;
      display: none;
      padding: 6px 0;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
      z-index: 999;
      width: max-content;
    }

    .dropdown-content a {
      padding: 8px 16px;
      display: block;
      text-decoration: none;
      color: #333;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }



    .team {
      margin-top: 72px;
      width: 100%;
      height: 200px;
      background: rgba(106,111,179,0.45);
      position: relative;
    }

    .team-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
    }

    .team-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
    }

    .team-text h1 {
      font-size: 40px;
      margin: 0;
      font-weight: 700;
    }

    .team-text h2 {
      font-size: 20px;
      font-weight: 400;
      margin-bottom: 0;
      opacity: 0.9;
    }



    .main-wrapper {
      max-width: 1120px;
      margin: 50px auto 80px;
      padding: 0 24px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-top: 24px;
    }

    .research-card {
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      padding: 24px;
      transition: 0.25s ease;
      background: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .research-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }

    .research-card h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
    }

    .research-card p {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
    }


    .professor-footer {
      width: 100vw;
      background: rgba(106, 111, 179, 0.47);
      padding: 48px 0;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      margin-top: 60px;
    }

    .footer-inner {
      max-width: 1130px;
      margin: 0 auto;
      padding: 0 20px;
      color: #333;
    }

    .footer-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .footer-info {
      font-size: 12px;
      line-height: 1.7;
      color: #333;
      margin-bottom: 24px;
    }

    .footer-divider {
      width: 100%;
      border-top: 1px solid #444;
      margin: 18px 0;
    }

    .footer-copy {
      font-size: 10px;
      color: #666;
    }
