 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;
        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;
      display: inline-block;
    }

    .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;
      min-width: 0;
    }

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

    .dropdown-content a:hover {
      background: #f3f3f3;
    }

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


    .team {
      margin-top: 72px;
      width: 100%;
      height: 200px;
      background: rgba(106,111,179,0.45) no-repeat center/cover;
      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;
      max-width: 760px;
      padding: 0 20px;
    }

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

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

    .team-text p {
      font-size: 15px;
      line-height: 1.6;
      opacity: 0.95;
    }


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

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-top: 36px;
      margin-bottom: 15px;
    }

    .section-title {
      font-size: 20px;
      font-weight: 700;
    }


    .section-divider {
      height: 1px;
      background: #ddd;
      margin-bottom: 0px;
    }

    .pub-row {
      display: flex;
      padding: 16px 0;
      border-bottom: 1px solid #eee;
      font-size: 14px;
    }



    .pub-code {
      font-weight: 700;
      font-size: 13px;
    }

    .pub-venue {
      font-size: 12px;
      color: #555;
    }



    .pub-center {
      flex: 1;
      padding: 0 10px;
    }

    .pub-title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .pub-meta {
      font-size: 12px;
      color: #666;
      margin-bottom: 3px;
    }

    .pub-authors {
      font-size: 12px;
      color: #777;
    }

    .publication-year {
      width: 100px;
      text-align: right;
      font-size: 12px;
      color: #777;
      flex-shrink: 0;
    }


    .news-row {
      display: flex;
      padding: 14px 0;
      border-bottom: 1px solid #f1f1f1;
      font-size: 14px;
    }

    .news-center {
      flex: 1;
      padding: 0 10px;
    }

    .news-title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .news-content {
          font-size: 12px;
          color: #555;
          margin-top: 3px;
        }
    .news-authors {
      font-size: 12px;
      color: #777;
      margin-top: 3px;
    }


    .news-date {
      width: 110px;
      text-align: right;
      font-size: 12px;
      color: #777;
      flex-shrink: 0;
    }


    .representative-row {
      display: flex;
      padding: 16px 0;
      border-bottom: 1px solid #eee;
      font-size: 14px;
    }


    .representative-center {
      flex: 1;
      padding: 0 10px;
    }

    .representative-title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .representative-meta {
      font-size: 12px;
      color: #666;
      margin-bottom: 3px;
    }

    .representative-authors {
      font-size: 12px;
      color: #777;
    }

    .representative-year {
      width: 60px;
      text-align: right;
      font-size: 13px;
      color: #555;
      flex-shrink: 0;
    }



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


    .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: 20px 0;
    }


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

    @media (max-width: 768px) {
      .nav-menu {
        gap: 24px;
        font-size: 16px;
      }
      .team {
        height: 320px;
      }
      .team-text h1 {
        font-size: 30px;
      }
      .team-text h2 {
        font-size: 18px;
      }
      .pub-row, .representative-row {
        flex-direction: column;
      }
      .publication-year
      {
        width: 100%;
        text-align: left;
        margin-bottom: 4px;
      }
      .representative-right {
        width: 100%;
        text-align: left;
        margin-bottom: 4px;
      }
      .pub-center, .representative-center {
        padding: 0;
      }
      .news-row {
        flex-direction: column;
      }
      .news-date {
        text-align: left;
        margin-top: 4px;
      }
    }
