@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=GFS+Didot&family=Noto+Sans+TC:wght@300;400;500;700&family=Playfair+Display:wght@400;600;700&display=swap");
.section-eng-title {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #2a70c5 0%, #07DFD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }
  .section-eng-title.light {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }

.section-gradient-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #2a70c5 0%, #07DFD4 100%);
  border-radius: 2px;
  margin: 0 auto 24px; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #2c3e50;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden; }

* {
  font-family: inherit; }

h1, h2, h3, h4, h5, h6, p, span, div, li, a, button, input, textarea, label {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

#about {
  max-width: 80vw;
  margin: 6vh auto; }

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: none;
  box-shadow: none;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease; }
  .main-header.header-solid {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.06); }
  .main-header.header-scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); }
  .main-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px; }
  .main-header .logo img {
    height: 70px;
    width: auto; }
  .main-header .main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px; }
  .main-header .main-nav .nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px; }
    .main-header .main-nav .nav-link .dropdown-arrow {
      transition: 0.3s ease; }
    .main-header .main-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(45deg, #2a70c5, #70ae4f);
      transition: 0.3s ease; }
    .main-header .main-nav .nav-link:hover {
      color: #2a70c5; }
      .main-header .main-nav .nav-link:hover::after {
        width: 100%; }
  .main-header .main-nav .has-dropdown {
    position: relative; }
    .main-header .main-nav .has-dropdown:hover .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0); }
    .main-header .main-nav .has-dropdown:hover .dropdown-arrow {
      transform: rotate(180deg); }
  .main-header .main-nav .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(8px);
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 1001; }
    .main-header .main-nav .nav-dropdown .dropdown-inner {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      border-radius: 16px;
      box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      min-width: 320px;
      transform-origin: top left; }
    .main-header .main-nav .nav-dropdown .dropdown-all-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      background: linear-gradient(135deg, #2a70c5 0%, #07DFD4 100%);
      border-radius: 10px;
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.3s ease; }
      .main-header .main-nav .nav-dropdown .dropdown-all-link svg {
        transition: transform 0.3s ease; }
      .main-header .main-nav .nav-dropdown .dropdown-all-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(42, 112, 197, 0.3); }
        .main-header .main-nav .nav-dropdown .dropdown-all-link:hover svg {
          transform: translateX(4px); }
    .main-header .main-nav .nav-dropdown .dropdown-categories {
      display: flex;
      gap: 24px; }
    .main-header .main-nav .nav-dropdown .dropdown-category {
      flex: 1;
      min-width: 180px; }
      .main-header .main-nav .nav-dropdown .dropdown-category .category-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 14px;
        background: linear-gradient(135deg, rgba(42, 112, 197, 0.08) 0%, rgba(7, 223, 212, 0.08) 100%);
        border-radius: 10px;
        text-decoration: none;
        margin-bottom: 12px;
        transition: all 0.2s ease; }
        .main-header .main-nav .nav-dropdown .dropdown-category .category-header h4 {
          font-size: 14px;
          font-weight: 700;
          color: #2a70c5;
          margin: 0;
          letter-spacing: 0.02em; }
        .main-header .main-nav .nav-dropdown .dropdown-category .category-header svg {
          stroke: #2a70c5;
          opacity: 0;
          transform: translateX(-4px);
          transition: all 0.2s ease; }
        .main-header .main-nav .nav-dropdown .dropdown-category .category-header:hover {
          background: linear-gradient(135deg, rgba(42, 112, 197, 0.15) 0%, rgba(7, 223, 212, 0.15) 100%); }
          .main-header .main-nav .nav-dropdown .dropdown-category .category-header:hover svg {
            opacity: 1;
            transform: translateX(0); }
      .main-header .main-nav .nav-dropdown .dropdown-category ul {
        display: flex;
        flex-direction: column;
        gap: 4px;
        list-style: none; }
      .main-header .main-nav .nav-dropdown .dropdown-category li a {
        font-size: 14px;
        color: #2c3e50;
        text-decoration: none;
        display: block;
        padding: 10px 14px;
        border-radius: 8px;
        transition: all 0.2s ease;
        position: relative; }
        .main-header .main-nav .nav-dropdown .dropdown-category li a:hover {
          background: rgba(42, 112, 197, 0.06);
          color: #2a70c5;
          padding-left: 20px; }
    .main-header .main-nav .nav-dropdown .dropdown-divider {
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(189, 195, 199, 0.3), transparent); }
    .main-header .main-nav .nav-dropdown.nav-dropdown-simple .dropdown-inner {
      min-width: 180px;
      padding: 16px 20px;
      display: block; }
    .main-header .main-nav .nav-dropdown.nav-dropdown-simple .dropdown-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px; }
      .main-header .main-nav .nav-dropdown.nav-dropdown-simple .dropdown-links li a {
        font-size: 14px;
        color: #2c3e50;
        text-decoration: none;
        display: block;
        padding: 10px 14px;
        border-radius: 8px;
        transition: all 0.2s ease; }
        .main-header .main-nav .nav-dropdown.nav-dropdown-simple .dropdown-links li a:hover {
          background: linear-gradient(135deg, rgba(42, 112, 197, 0.08) 0%, rgba(42, 112, 197, 0.08) 100%);
          color: #2a70c5;
          padding-left: 20px; }
      .main-header .main-nav .nav-dropdown.nav-dropdown-simple .dropdown-links li:first-child a {
        font-weight: 600;
        color: #2a70c5; }
  .main-header .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px; }
    .main-header .mobile-menu-btn span {
      width: 25px;
      height: 2px;
      background: #2c3e50;
      transition: 0.3s ease; }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%); }
  .hero .hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh; }
  .hero .carousel-slides {
    position: absolute;
    inset: 0;
    z-index: 1; }
  .hero .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease; }
    .hero .carousel-slide.active {
      opacity: 1; }
    .hero .carousel-slide .slide-bg {
      width: 100%;
      height: 100%; }
      .hero .carousel-slide .slide-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
  .hero .hero-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 500px;
    transition: color 0.5s ease; }
    .hero .hero-content.text-light .hero-title .title-line {
      color: #ffffff; }
    .hero .hero-content.text-light .hero-title .title-line.subtitle {
      color: rgba(255, 255, 255, 0.8); }
    .hero .hero-content.text-light .hero-desc {
      color: rgba(255, 255, 255, 0.85); }
    .hero .hero-content.text-dark .hero-title .title-line {
      color: #153051; }
    .hero .hero-content.text-dark .hero-title .title-line.subtitle {
      color: #7f8c8d; }
    .hero .hero-content.text-dark .hero-desc {
      color: #7f8c8d; }
  .hero .hero-text .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3; }
    .hero .hero-text .hero-title .title-line {
      display: block;
      color: #153051;
      transition: color 0.5s ease; }
    .hero .hero-text .hero-title .title-line.subtitle {
      font-size: 0.7em;
      font-weight: 400;
      color: #7f8c8d;
      transition: color 0.5s ease; }
  .hero .hero-text .hero-desc {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
    max-width: 480px;
    transition: color 0.5s ease; }
  .hero .carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 80px;
    z-index: 10;
    display: flex;
    gap: 12px; }
    .hero .carousel-dots .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      border: 2px solid rgba(42, 112, 197, 0.3);
      cursor: pointer;
      transition: all 0.3s ease; }
      .hero .carousel-dots .dot:hover, .hero .carousel-dots .dot.active {
        background: #2a70c5;
        border-color: #2a70c5; }
  .hero .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden; }
    .hero .hero-bg .gradient-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.4; }
      .hero .hero-bg .gradient-orb.orb-1 {
        width: 500px;
        height: 500px;
        background: rgba(42, 112, 197, 0.3);
        top: 10%;
        left: -10%; }
      .hero .hero-bg .gradient-orb.orb-2 {
        width: 400px;
        height: 400px;
        background: rgba(42, 112, 197, 0.2);
        top: 50%;
        right: -5%; }
    .hero .hero-bg .wave-lines {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 200px;
      opacity: 0.5; }
      .hero .hero-bg .wave-lines svg {
        width: 100%;
        height: 100%; }
      .hero .hero-bg .wave-lines .wave {
        stroke-dasharray: 20 10; }

@keyframes rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
.section-header {
  text-align: center; }
  .section-header .section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: 2px; }
    .section-header .section-title.cursive {
      font-style: italic; }
  .section-header .section-subtitle {
    font-size: 14px;
    color: #2a70c5;
    font-weight: 500;
    letter-spacing: 3px; }

.about-simple {
  background: #ffffff;
  padding: 100px 24px 80px; }
  .about-simple .about-simple-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; }
  .about-simple .about-simple-logo {
    position: relative;
    margin-bottom: 36px; }
    .about-simple .about-simple-logo .logo-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(42, 112, 197, 0.06) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none; }
    .about-simple .about-simple-logo img {
      position: relative;
      z-index: 1;
      height: 100px;
      width: auto; }
  .about-simple .about-simple-divider {
    margin-bottom: 40px; }
    .about-simple .about-simple-divider span {
      display: block;
      width: 48px;
      height: 2px;
      background: linear-gradient(90deg, #2a70c5, #07DFD4);
      border-radius: 2px; }
  .about-simple .about-simple-text {
    margin-bottom: 40px; }
    .about-simple .about-simple-text p {
      font-size: 15px;
      line-height: 2.2;
      color: #4a5568;
      letter-spacing: 0.3px;
      margin-bottom: 16px; }
      .about-simple .about-simple-text p:last-child {
        margin-bottom: 0; }
      .about-simple .about-simple-text p strong {
        color: #2c3e50;
        font-weight: 600; }
      .about-simple .about-simple-text p .highlight {
        color: #2a70c5;
        font-weight: 700; }
  .about-simple .about-simple-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 500;
    color: #2a70c5;
    text-decoration: none;
    border: 1px solid rgba(42, 112, 197, 0.3);
    border-radius: 30px;
    transition: all 0.4s ease; }
    .about-simple .about-simple-btn svg {
      transition: transform 0.3s ease; }
    .about-simple .about-simple-btn:hover {
      background: linear-gradient(135deg, #2a70c5, #07DFD4);
      color: #ffffff;
      border-color: transparent;
      box-shadow: 0 8px 24px rgba(42, 112, 197, 0.25); }
      .about-simple .about-simple-btn:hover svg {
        transform: translateX(4px); }

.about {
  background: #ffffff; }
  .about .about-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden; }
  .about .about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    color: #fff; }
    .about .about-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 20, 50, 0.45);
      z-index: 1; }
    .about .about-hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: left center; }
  .about .about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; }
  .about .about-label {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px; }
  .about .about-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 4px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
  .about .about-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2a70c5, #2a70c5);
    border-radius: 2px;
    margin-bottom: 30px; }
  .about .about-intro {
    max-width: 700px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 2;
    margin-bottom: 35px; }
  .about .btn-about {
    display: inline-block;
    padding: 12px 40px;
    background: #ffffff;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #2a70c5;
    border-radius: 30px;
    transition: 0.3s ease; }
    .about .btn-about:hover {
      background: linear-gradient(135deg, #2a70c5 0%, #07DFD4 100%);
      color: #ffffff;
      border-color: transparent; }
  .about .container {
    padding-top: 80px;
    padding-bottom: 100px; }
  .about .about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px; }
  .about .about-card {
    position: relative;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    overflow: hidden; }
    .about .about-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(45deg, #2a70c5, #70ae4f);
      opacity: 0;
      transition: 0.3s ease; }
    .about .about-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12); }
      .about .about-card:hover::before {
        opacity: 1; }
      .about .about-card:hover .card-letter {
        color: #2a70c5; }
    .about .about-card .card-letter {
      font-family: "Playfair Display", serif;
      font-size: 5rem;
      font-weight: 700;
      color: #ecf0f1;
      line-height: 1;
      margin-bottom: 16px;
      transition: 0.3s ease; }
    .about .about-card .card-content p {
      font-size: 15px;
      color: #7f8c8d;
      line-height: 1.8; }

.cases {
  padding: 80px 0 100px;
  background: #ffffff;
  overflow: hidden; }
  .cases .cases-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px; }
    .cases .cases-header h2 {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 600;
      color: #2a70c5;
      letter-spacing: 1px; }
  .cases .cases-carousel {
    position: relative; }
  .cases .cases-slides {
    position: relative; }
  .cases .case-slide {
    display: none;
    padding: 60px 0;
    transition: background-color 0.5s ease; }
    .cases .case-slide.active {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 40px; }
    .cases .case-slide[data-bg="white"] {
      background: #ffffff; }
    .cases .case-slide[data-bg="light"] {
      background: #f8f9fa; }
    .cases .case-slide[data-bg="mint"] {
      background: linear-gradient(135deg, #a8f0e6 0%, #c5f5ef 100%); }
  .cases .case-content {
    flex: 1;
    max-width: 500px; }
  .cases .case-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    background: #f0f0f0;
    border-radius: 20px;
    margin-bottom: 20px; }
    .cases .case-tag.pharma {
      background: #e8f5e9;
      color: #2e7d32; }
    .cases .case-tag.govt {
      background: #e3f2fd;
      color: #1565c0; }
  .cases .case-title {
    font-size: 28px;
    font-weight: 700;
    color: #2a70c5;
    margin-bottom: 20px;
    line-height: 1.4; }
  .cases .case-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px; }
  .cases .case-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px; }
    .cases .case-stats .stat-item {
      display: flex;
      flex-direction: column; }
    .cases .case-stats .stat-value {
      font-size: 32px;
      font-weight: 700;
      color: #2a70c5;
      line-height: 1.2; }
    .cases .case-stats .stat-label {
      font-size: 13px;
      color: #888;
      margin-top: 4px; }
  .cases .case-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #2a70c5;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease; }
    .cases .case-btn:hover {
      background: #21589b;
      transform: translateY(-2px); }
  .cases .case-visual {
    flex: 1;
    max-width: 550px; }
  .cases .monitor-frame {
    position: relative;
    background: #1a1a2e;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2); }
    .cases .monitor-frame::after {
      content: '';
      display: block;
      width: 60px;
      height: 80px;
      background: linear-gradient(180deg, #1a1a2e 0%, #2a2a3e 100%);
      margin: 0 auto;
      border-radius: 0 0 8px 8px; }
    .cases .monitor-frame img {
      width: 100%;
      border-radius: 6px;
      display: block; }
  .cases .cases-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px; }
  .cases .cases-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease; }
    .cases .cases-arrow svg {
      width: 20px;
      height: 20px;
      stroke: #999;
      transition: stroke 0.3s ease; }
    .cases .cases-arrow:hover {
      border-color: #2a70c5;
      background: #2a70c5; }
      .cases .cases-arrow:hover svg {
        stroke: #ffffff; }
  .cases .cases-dots {
    display: flex;
    gap: 8px; }
  .cases .case-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease; }
    .cases .case-dot.active {
      width: 40px;
      border-radius: 6px;
      background: #2a70c5; }

.cases-new {
  padding: 100px 0;
  background: linear-gradient(135deg, #2a70c5 0%, #2a70c5 50%, #48c9b0 100%);
  position: relative;
  overflow: hidden; }
  .cases-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 112, 197, 0.5), transparent); }
  .cases-new .cases-new-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px; }
  .cases-new .cases-new-header {
    text-align: center;
    margin-bottom: 60px; }
  .cases-new .cases-label {
    display: inline-block;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px; }
  .cases-new .cases-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3; }
    .cases-new .cases-title .highlight {
      color: #2a70c5; }
  .cases-new .cases-showcase {
    position: relative; }
  .cases-new .case-card {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease; }
    .cases-new .case-card.active {
      display: block;
      opacity: 1;
      transform: translateY(0); }
  .cases-new .case-card-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center; }
  .cases-new .case-card-content {
    position: relative; }
  .cases-new .case-number {
    display: block;
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -40px;
    position: relative;
    z-index: 0; }
  .cases-new .case-tag-new {
    display: inline-block;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    color: #2a70c5;
    background: rgba(42, 112, 197, 0.15);
    border-radius: 25px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1; }
    .cases-new .case-tag-new.pharma {
      color: #8b5cf6;
      background: rgba(139, 92, 246, 0.15); }
    .cases-new .case-tag-new.govt {
      color: #f59e0b;
      background: rgba(245, 158, 11, 0.15); }
  .cases-new .case-card-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3; }
  .cases-new .case-card-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px; }
  .cases-new .case-metrics {
    display: flex;
    gap: 40px; }
  .cases-new .metric {
    display: flex;
    flex-direction: column;
    position: relative; }
  .cases-new .metric-value {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    display: inline-block; }
    .cases-new .metric-value.special {
      font-size: 36px;
      color: #2a70c5; }
  .cases-new .metric-suffix {
    font-size: 24px;
    font-weight: 600;
    color: #2a70c5;
    margin-left: 2px; }
  .cases-new .metric-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px; }
  .cases-new .case-card-visual {
    position: relative; }
  .cases-new .screen-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(42, 112, 197, 0.2), 0 30px 60px rgba(0, 0, 0, 0.4); }
    .cases-new .screen-wrapper::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(42, 112, 197, 0.1), transparent 50%);
      z-index: 1;
      pointer-events: none; }
    .cases-new .screen-wrapper img {
      width: 100%;
      display: block;
      transition: transform 0.5s ease; }
  .cases-new .case-card:hover .screen-wrapper img {
    transform: scale(1.02); }
  .cases-new .cases-nav-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .cases-new .nav-dots {
    display: flex;
    gap: 12px; }
  .cases-new .nav-dot {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease; }
    .cases-new .nav-dot:hover {
      background: rgba(255, 255, 255, 0.4); }
    .cases-new .nav-dot.active {
      background: linear-gradient(90deg, #2a70c5, #2a70c5); }
  .cases-new .nav-arrows {
    display: flex;
    gap: 12px; }
  .cases-new .arrow-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6); }
    .cases-new .arrow-btn:hover {
      border-color: #2a70c5;
      background: rgba(42, 112, 197, 0.1);
      color: #2a70c5; }

@media (max-width: 992px) {
  .cases-new .case-card-inner {
    grid-template-columns: 1fr;
    gap: 40px; }
  .cases-new .case-card-content {
    order: 2;
    text-align: center; }
  .cases-new .case-card-visual {
    order: 1; }
  .cases-new .case-metrics {
    justify-content: center; }
  .cases-new .case-number {
    display: none; } }
@media (max-width: 768px) {
  .cases-new {
    padding: 60px 0; }
    .cases-new .cases-new-inner {
      padding: 0 20px; }
    .cases-new .case-card-content h3 {
      font-size: 22px; }
    .cases-new .metric-value {
      font-size: 36px; }
    .cases-new .metric-suffix {
      font-size: 18px; }
    .cases-new .nav-dots {
      display: none; }
    .cases-new .cases-nav-new {
      justify-content: center; } }
.contact {
  padding: 100px 0;
  background: #ffffff; }
  .contact .contact-wrapper {
    gap: 60px;
    align-items: center; }
  .contact .contact-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12); }
  .contact .contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px; }
    .contact .contact-form .form-row:first-child {
      grid-template-columns: 1fr; }
  .contact .contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px; }
    .contact .contact-form .form-group input, .contact .contact-form .form-group textarea {
      width: 100%;
      padding: 16px 20px;
      border: 1px solid #ecf0f1;
      border-radius: 10px;
      font-size: 14px;
      font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
      transition: 0.3s ease;
      background: #f8f9fa;
      margin-bottom: 20px; }
      .contact .contact-form .form-group input::placeholder, .contact .contact-form .form-group textarea::placeholder {
        color: #bdc3c7; }
      .contact .contact-form .form-group input:focus, .contact .contact-form .form-group textarea:focus {
        outline: none;
        border-color: #2a70c5;
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(42, 112, 197, 0.1); }
    .contact .contact-form .form-group textarea {
      resize: vertical;
      min-height: 120px; }
  .contact .contact-form .btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2a70c5 0%, #2a70c5 50%, #48c9b0 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px; }
    .contact .contact-form .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(42, 112, 197, 0.2); }
  .contact .contact-visual {
    display: flex;
    justify-content: center;
    align-items: center; }
    .contact .contact-visual .isometric-graphic {
      position: relative;
      width: 300px;
      height: 300px;
      transform: rotateX(60deg) rotateZ(-45deg);
      transform-style: preserve-3d; }
      .contact .contact-visual .isometric-graphic .iso-layer {
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 20px;
        transition: 0.5s ease; }
        .contact .contact-visual .isometric-graphic .iso-layer.layer-1 {
          background: linear-gradient(135deg, #9ec0ea, #89b3e6);
          transform: translateZ(0);
          left: 50px;
          top: 50px; }
        .contact .contact-visual .isometric-graphic .iso-layer.layer-2 {
          background: linear-gradient(135deg, #a9cf94, #5f98dd);
          transform: translateZ(30px);
          left: 30px;
          top: 30px; }
        .contact .contact-visual .isometric-graphic .iso-layer.layer-3 {
          background: linear-gradient(135deg, #2a70c5 0%, #2a70c5 50%, #48c9b0 100%);
          transform: translateZ(60px);
          left: 10px;
          top: 10px;
          opacity: 0.8; }

.vision {
  padding: 80px 0;
  background: linear-gradient(135deg, #2a70c5 0%, #2a70c5 50%, #48c9b0 100%);
  text-align: center; }
  .vision .vision-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 12px; }
  .vision .vision-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9); }

.contact-combined {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(135deg, #2a70c5 0%, #2a6cb8 30%, #1a8a9e 70%, #2a70c5 100%);
  overflow: hidden; }
  .contact-combined .contact-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden; }
    .contact-combined .contact-bg-effects .bg-circle {
      position: absolute;
      border-radius: 50%;
      opacity: 0.15; }
      .contact-combined .contact-bg-effects .bg-circle.c1 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, #ffffff 0%, transparent 70%);
        top: -200px;
        right: -100px;
        animation: floatSlow 20s ease-in-out infinite; }
      .contact-combined .contact-bg-effects .bg-circle.c2 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, #ffffff 0%, transparent 70%);
        bottom: -100px;
        left: -100px;
        animation: floatSlow 25s ease-in-out infinite reverse; }
      .contact-combined .contact-bg-effects .bg-circle.c3 {
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, #ffffff 0%, transparent 70%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: pulse 4s ease-in-out infinite; }
@keyframes floatSlow {
  0%, 100% {
    transform: translate(0, 0); }
  50% {
    transform: translate(30px, -30px); } }
  .contact-combined .contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2; }
    .contact-combined .contact-header .contact-slogan {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 28px;
      letter-spacing: 5px;
      line-height: 1.4; }
    .contact-combined .contact-header .slogan-decorations {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px; }
      .contact-combined .contact-header .slogan-decorations .deco-line {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6)); }
        .contact-combined .contact-header .slogan-decorations .deco-line.right {
          background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), transparent); }
      .contact-combined .contact-header .slogan-decorations .deco-diamond {
        width: 8px;
        height: 8px;
        background: #2a70c5;
        transform: rotate(45deg);
        flex-shrink: 0; }
  .contact-combined .contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2; }
  .contact-combined .contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1); }
  .contact-combined .contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px; }
    @media (max-width: 600px) {
      .contact-combined .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px; } }
  .contact-combined .contact-form .form-group.full-width {
    margin-bottom: 30px; }
  .contact-combined .contact-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 10px;
    letter-spacing: 0.3px; }
    .contact-combined .contact-form .form-group label .required {
      color: #e74c3c; }
  .contact-combined .contact-form .form-group input, .contact-combined .contact-form .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #1e293b;
    transition: all 0.3s ease; }
    .contact-combined .contact-form .form-group input::placeholder, .contact-combined .contact-form .form-group textarea::placeholder {
      color: #94a3b8; }
    .contact-combined .contact-form .form-group input:focus, .contact-combined .contact-form .form-group textarea:focus {
      outline: none;
      border-color: #2a70c5;
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(42, 112, 197, 0.1); }
  .contact-combined .contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px; }
  .contact-combined .contact-form .form-submit {
    text-align: center;
    padding-top: 10px; }
  .contact-combined .contact-form .btn-submit-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 48px;
    background: linear-gradient(135deg, #2a70c5 0%, #2a70c5 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(42, 112, 197, 0.3);
    letter-spacing: 1px; }
    .contact-combined .contact-form .btn-submit-new svg {
      transition: transform 0.3s ease; }
    .contact-combined .contact-form .btn-submit-new:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 35px rgba(42, 112, 197, 0.4); }
      .contact-combined .contact-form .btn-submit-new:hover svg {
        transform: translateX(5px); }
  @media (max-width: 768px) {
    .contact-combined {
      padding: 60px 0 80px; }
      .contact-combined .contact-form-card {
        padding: 30px 24px; } }

.news {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%); }
  .news .news-header {
    text-align: center;
    margin-bottom: 60px; }
    .news .news-header .news-title {
      font-size: 40px;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 20px;
      letter-spacing: 4px; }
  .news .news-empty {
    text-align: center;
    padding: 60px 0;
    color: #999; }
  .news .news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px; }
  .news .news-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
    .news .news-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); }
      .news .news-card:hover .news-card-image img {
        transform: scale(1.1); }
      .news .news-card:hover .news-card-overlay {
        opacity: 0.5; }
  .news .news-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit; }
  .news .news-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
    .news .news-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
  .news .news-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a3a5e 0%, #1a2a4e 100%); }
  .news .news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.7) 80%, rgba(0, 0, 0, 0.85) 100%);
    transition: opacity 0.4s ease; }
  .news .news-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2; }
  .news .news-card-category {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    font-size: 11px;
    font-weight: 600;
    color: #333;
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px; }
  .news .news-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
  .news .news-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px; }
  .news .news-card-date {
    font-weight: 500;
    letter-spacing: 0.5px; }
  @media (max-width: 1200px) {
    .news .news-grid {
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 992px) {
    .news .news-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px; } }
  @media (max-width: 576px) {
    .news {
      padding: 60px 0; }
      .news .news-header {
        margin-bottom: 40px; }
        .news .news-header .news-title {
          font-size: 28px; }
      .news .news-grid {
        grid-template-columns: 1fr;
        gap: 20px; }
      .news .news-card {
        aspect-ratio: 7 / 6; } }

.main-footer {
  background: linear-gradient(180deg, #1a2332 0%, #0f1621 100%);
  padding: 60px 0 30px;
  color: #ffffff; }
  .main-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px; }
  .main-footer .footer-brand {
    flex: 1;
    max-width: 400px; }
  .main-footer .footer-logo {
    margin-bottom: 20px; }
    .main-footer .footer-logo img {
      height: 44px;
      filter: brightness(0) invert(1);
      opacity: 0.95; }
  .main-footer .footer-slogan p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0; }
    .main-footer .footer-slogan p:first-child {
      color: #2a70c5;
      font-weight: 500; }
  .main-footer .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px; }
    .main-footer .footer-contact .contact-item {
      display: flex;
      align-items: center;
      gap: 12px; }
      .main-footer .footer-contact .contact-item svg {
        width: 20px;
        height: 20px;
        stroke: #2a70c5;
        flex-shrink: 0; }
      .main-footer .footer-contact .contact-item span, .main-footer .footer-contact .contact-item a {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        transition: color 0.3s ease; }
      .main-footer .footer-contact .contact-item a:hover {
        color: #2a70c5; }
  .main-footer .footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    margin-bottom: 24px; }
  .main-footer .footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center; }
  .main-footer .copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: 0.5px; }

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999; }
  .back-to-top svg {
    color: #2a70c5;
    transition: transform 0.3s ease; }
  .back-to-top:hover {
    background: linear-gradient(135deg, #2a70c5 0%, #2a70c5 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(42, 112, 197, 0.3); }
    .back-to-top:hover svg {
      color: #ffffff;
      transform: translateY(-2px); }
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px; }
    .back-to-top svg {
      width: 18px;
      height: 18px; } }
.governance {
  padding: 100px 0;
  background: linear-gradient(180deg, #e8f4f8 0%, #f5fafa 100%);
  position: relative;
  overflow: hidden; }
  .governance::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 480px;
    height: 480px;
    background: url("/public/images/governance-bg.jpg") center/contain no-repeat;
    opacity: 0.13;
    filter: blur(2px) saturate(0.6);
    pointer-events: none;
    z-index: 0; }
  .governance .container {
    position: relative;
    z-index: 1; }
  .governance .governance-content {
    max-width: 1100px;
    margin: 0 auto; }
  .governance .governance-header {
    text-align: center;
    margin-bottom: 60px; }
  .governance .governance-title {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: 4px; }
  .governance .governance-desc {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto; }
  .governance .governance-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px; }
  .governance .governance-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 30px 45px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden; }
    .governance .governance-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #2a70c5 0%, #07DFD4 100%);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
    .governance .governance-card::after {
      content: '';
      position: absolute;
      bottom: -100%;
      left: 0;
      right: 0;
      height: 100%;
      background: linear-gradient(180deg, transparent 0%, rgba(55, 119, 197, 0.03) 100%);
      transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none; }
    .governance .governance-card .card-icon {
      width: 100px;
      height: 100px;
      margin: 0 auto 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
      .governance .governance-card .card-icon svg {
        width: 60px;
        height: 60px;
        stroke: #2a70c5;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
      .governance .governance-card .card-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
    .governance .governance-card h3 {
      font-size: 24px;
      font-weight: 700;
      color: #333;
      margin-bottom: 16px;
      letter-spacing: 2px;
      transition: color 0.3s ease; }
    .governance .governance-card p {
      font-size: 15px;
      color: #666;
      line-height: 1.8;
      max-width: 280px;
      margin: 0 auto; }
    .governance .governance-card:hover {
      transform: translateY(-8px);
      box-shadow: 0px 20px 40px rgba(55, 119, 197, 0.15); }
      .governance .governance-card:hover::before {
        transform: scaleX(1); }
      .governance .governance-card:hover::after {
        bottom: 0; }
      .governance .governance-card:hover .card-icon {
        transform: scale(1.08); }
      .governance .governance-card:hover h3 {
        color: #2a70c5; }
  .governance .governance-action {
    text-align: center; }
  .governance .btn-learn-more {
    display: inline-block;
    padding: 14px 40px;
    background: #ffffff;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease; }
    .governance .btn-learn-more:hover {
      background: #2a70c5;
      color: #ffffff;
      border-color: #2a70c5; }

.challenges-new {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%); }
  .challenges-new .challenges-header {
    text-align: center;
    margin-bottom: 80px; }
  .challenges-new .challenges-label {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-style: italic;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #2a70c5 0%, #07DFD4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }
  .challenges-new .challenges-title {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 4px;
    margin-bottom: 20px; }
  .challenges-new .challenges-desc {
    font-size: 18px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8; }
  .challenges-new .challenges-list {
    display: flex;
    flex-direction: column;
    gap: 80px; }
  .challenges-new .challenge-row {
    display: flex;
    align-items: center;
    gap: 60px; }
    .challenges-new .challenge-row.reversed {
      flex-direction: row-reverse; }
      .challenges-new .challenge-row.reversed .challenge-content {
        text-align: right; }
        .challenges-new .challenge-row.reversed .challenge-content .content-inner {
          align-items: flex-end; }
        .challenges-new .challenge-row.reversed .challenge-content .challenge-points li {
          padding-left: 0;
          padding-right: 20px; }
          .challenges-new .challenge-row.reversed .challenge-content .challenge-points li::before {
            left: auto;
            right: 0; }
      .challenges-new .challenge-row.reversed .challenge-image::after {
        left: auto;
        right: -20px; }
  .challenges-new .challenge-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3; }
    .challenges-new .challenge-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
    .challenges-new .challenge-image .image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(42, 112, 197, 0.1) 0%, rgba(42, 112, 197, 0.05) 100%);
      opacity: 0;
      transition: opacity 0.4s ease; }
    .challenges-new .challenge-image .image-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #e8f4f8 0%, #d4eef5 100%);
      display: flex;
      align-items: center;
      justify-content: center; }
      .challenges-new .challenge-image .image-placeholder .placeholder-icon svg {
        width: 60px;
        height: 60px;
        stroke: rgba(42, 112, 197, 0.3); }
    .challenges-new .challenge-image::after {
      content: '';
      position: absolute;
      top: 20px;
      left: -20px;
      width: 100%;
      height: 100%;
      border: 2px solid rgba(42, 112, 197, 0.15);
      border-radius: 20px;
      z-index: -1;
      transition: all 0.4s ease; }
  .challenges-new .challenge-row:hover .challenge-image img {
    transform: scale(1.05); }
  .challenges-new .challenge-row:hover .challenge-image .image-overlay {
    opacity: 1; }
  .challenges-new .challenge-row:hover .challenge-image::after {
    top: 15px;
    left: -15px; }
  .challenges-new .challenge-row:hover .challenge-row.reversed .challenge-image::after {
    right: -15px; }
  .challenges-new .challenge-content {
    flex: 1; }
  .challenges-new .content-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
  .challenges-new .challenge-number {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 600;
    color: rgba(42, 112, 197, 0.08);
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 1; }
  .challenges-new .challenge-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(42, 112, 197, 0.1) 0%, rgba(42, 112, 197, 0.1) 100%);
    color: #2a70c5;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2; }
  .challenges-new h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.4; }
  .challenges-new .challenge-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px; }
  .challenges-new .challenge-points {
    list-style: none;
    padding: 0;
    margin: 0; }
    .challenges-new .challenge-points li {
      font-size: 15px;
      color: #444;
      line-height: 1.6;
      padding-left: 20px;
      position: relative;
      margin-bottom: 10px; }
      .challenges-new .challenge-points li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 6px;
        height: 6px;
        background: linear-gradient(135deg, #2a70c5, #2a70c5);
        border-radius: 50%; }

.challenges {
  padding: 100px 0px 0px 0px;
  background: #ffffff;
  display: none; }
  .challenges .challenges-header {
    text-align: center;
    margin-bottom: 60px; }
  .challenges .challenges-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #2a70c5 0%, #07DFD4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }
  .challenges .challenges-title {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px; }
  .challenges .challenges-desc {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto; }
  .challenges .challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; }
  .challenges .challenge-card {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4eef5 100%);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease; }
    .challenges .challenge-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(42, 112, 197, 0.15); }
      .challenges .challenge-card:hover .card-details {
        opacity: 1;
        max-height: 200px;
        margin-top: 12px; }
      .challenges .challenge-card:hover .card-desc {
        opacity: 0;
        max-height: 0;
        margin-bottom: 0; }
      .challenges .challenge-card:hover .card-image img {
        transform: scale(1.05); }
    .challenges .challenge-card .card-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 2; }
    .challenges .challenge-card .challenge-tag {
      display: inline-block;
      width: fit-content;
      padding: 6px 14px;
      background: rgba(42, 112, 197, 0.15);
      color: #2a70c5;
      font-size: 12px;
      font-weight: 600;
      border-radius: 0px 10px 0px 0px;
      margin-bottom: 12px; }
    .challenges .challenge-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 10px;
      line-height: 1.4; }
    .challenges .challenge-card .card-desc {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 12px;
      opacity: 1;
      max-height: 100px;
      overflow: hidden;
      transition: all 0.3s ease; }
    .challenges .challenge-card .card-details {
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease; }
      .challenges .challenge-card .card-details ul {
        list-style: none;
        padding: 0;
        margin: 0; }
        .challenges .challenge-card .card-details ul li {
          font-size: 13px;
          color: #444;
          line-height: 1.5;
          padding-left: 16px;
          position: relative;
          margin-bottom: 6px; }
          .challenges .challenge-card .card-details ul li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 7px;
            width: 5px;
            height: 5px;
            background: #2a70c5;
            border-radius: 50%; }
    .challenges .challenge-card .card-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
      padding-top: 16px;
      font-size: 14px;
      font-weight: 600;
      color: #2c3e50;
      text-decoration: none;
      transition: 0.3s ease; }
      .challenges .challenge-card .card-more svg {
        width: 20px;
        height: 20px;
        padding: 4px;
        background: #ffffff;
        border-radius: 50%;
        transition: 0.3s ease; }
      .challenges .challenge-card .card-more:hover {
        color: #2a70c5; }
        .challenges .challenge-card .card-more:hover svg {
          background: #2a70c5;
          stroke: #ffffff; }
    .challenges .challenge-card .card-image {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 60%;
      height: 50%;
      border-radius: 16px 0px 0px 0px;
      overflow: hidden; }
      .challenges .challenge-card .card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.4s ease; }
    .challenges .challenge-card .card-image-placeholder {
      background: linear-gradient(135deg, rgba(42, 112, 197, 0.1) 0%, rgba(42, 112, 197, 0.15) 100%); }
      .challenges .challenge-card .card-image-placeholder .placeholder-pattern {
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 30% 40%, rgba(42, 112, 197, 0.3) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(42, 112, 197, 0.2) 0%, transparent 50%); }
  .challenges .challenges-image {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 60px;
    overflow: hidden; }
    .challenges .challenges-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
    .challenges .challenges-image .challenges-image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 60%;
      background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
      z-index: 1;
      pointer-events: none; }

.goals-flow {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden; }
  .goals-flow .goals-header {
    text-align: center;
    margin-bottom: 60px; }
  .goals-flow .goals-label {
    display: inline-block;
    font-family: "Playfair Display", serif;
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    color: #2a70c5;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px; }
  .goals-flow .goals-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #2c3e50; }
    .goals-flow .goals-title .highlight {
      background: linear-gradient(135deg, #2a70c5, #07DFD4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text; }
  .goals-flow .goals-track {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    position: relative;
    max-width: 960px;
    margin: 0 auto; }
  .goals-flow .goals-connector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    z-index: 0;
    pointer-events: none; }
    .goals-flow .goals-connector .connector-line {
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      transition: stroke-dashoffset 1.5s ease; }
    .goals-flow .goals-connector .connector-glow {
      opacity: 0.3;
      filter: blur(4px);
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      transition: stroke-dashoffset 1.5s ease; }
    .goals-flow .goals-connector.animated .connector-line,
    .goals-flow .goals-connector.animated .connector-glow {
      stroke-dashoffset: 0; }
  .goals-flow .goals-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px; }
  .goals-flow .node-dot {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    margin-bottom: 24px; }
  .goals-flow .dot-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(42, 112, 197, 0.25);
    animation: dotPulse 2.8s ease-out infinite; }
  .goals-flow .dot-core {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a70c5 0%, #07DFD4 100%);
    box-shadow: 0 6px 24px rgba(42, 112, 197, 0.35);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease; }
    .goals-flow .dot-core::after {
      content: '';
      position: absolute;
      top: 18%;
      left: 22%;
      width: 28%;
      height: 28%;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      filter: blur(2px); }
  .goals-flow .node-card {
    max-width: 240px;
    transition: transform 0.4s ease; }
  .goals-flow .node-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #2a70c5;
    background: rgba(42, 112, 197, 0.07);
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease; }
  .goals-flow .node-title {
    font-size: 17px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.3s ease; }
  .goals-flow .node-desc {
    font-size: 13.5px;
    color: #7f8c8d;
    line-height: 1.8; }
  .goals-flow .goals-node:hover .dot-core {
    transform: scale(1.15);
    box-shadow: 0 10px 36px rgba(42, 112, 197, 0.5); }
  .goals-flow .goals-node:hover .node-tag {
    background: linear-gradient(135deg, #2a70c5, #07DFD4);
    color: #ffffff; }
  .goals-flow .goals-node:hover .node-title {
    color: #2a70c5; }
  .goals-flow .goals-node:hover .node-card {
    transform: translateY(-4px); }

@keyframes dotPulse {
  0% {
    transform: scale(1);
    opacity: 0.5; }
  100% {
    transform: scale(1.8);
    opacity: 0; } }
.goals-new {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  position: relative;
  overflow: hidden; }
  .goals-new::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(42, 112, 197, 0.03) 0%, transparent 70%);
    pointer-events: none; }
  .goals-new .goals-new-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px; }
  .goals-new .goals-slider {
    position: relative; }
  .goals-new .goals-slide {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    min-height: 550px; }
  .goals-new .slide-content {
    position: relative;
    z-index: 2; }
  .goals-new .slide-nav-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px; }
  .goals-new .nav-arrow {
    width: 48px;
    height: 48px;
    border: 2px solid #e0e5eb;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666; }
    .goals-new .nav-arrow:hover {
      border-color: #2a70c5;
      color: #2a70c5;
      transform: scale(1.05); }
    .goals-new .nav-arrow:active {
      transform: scale(0.95); }
  .goals-new .slide-counter {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 2px; }
    .goals-new .slide-counter .current {
      font-size: 28px;
      color: #2a70c5; }
    .goals-new .slide-counter .divider {
      margin: 0 4px;
      color: #ccc; }
    .goals-new .slide-counter .total {
      color: #999; }
  .goals-new .slide-text {
    padding-right: 40px; }
  .goals-new .slide-label {
    display: inline-block;
    font-size: 13px;
    color: #2a70c5;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px; }
    .goals-new .slide-label::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 28px;
      height: 2px;
      background: linear-gradient(90deg, #2a70c5, #2a70c5); }
  .goals-new .slide-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 40px; }
    .goals-new .slide-title .highlight {
      background: linear-gradient(135deg, #2a70c5, #2a70c5);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text; }
  .goals-new .slide-items {
    position: relative;
    min-height: 160px;
    margin-bottom: 40px; }
  .goals-new .slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none; }
    .goals-new .slide-item.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
      position: relative; }
    .goals-new .slide-item .item-tag {
      display: inline-block;
      padding: 6px 16px;
      background: linear-gradient(135deg, rgba(42, 112, 197, 0.1), rgba(42, 112, 197, 0.1));
      color: #2a70c5;
      font-size: 12px;
      font-weight: 600;
      border-radius: 20px;
      margin-bottom: 16px; }
    .goals-new .slide-item h3 {
      font-size: 24px;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 12px; }
    .goals-new .slide-item p {
      font-size: 16px;
      color: #666;
      line-height: 1.7; }
  .goals-new .slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2a70c5, #2563eb);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(42, 112, 197, 0.3); }
    .goals-new .slide-cta svg {
      transition: transform 0.3s ease; }
    .goals-new .slide-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(42, 112, 197, 0.4); }
      .goals-new .slide-cta:hover svg {
        transform: translateX(4px); }
  .goals-new .slide-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .goals-new .visual-frame {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1); }
    .goals-new .visual-frame::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(42, 112, 197, 0.1), rgba(42, 112, 197, 0.05));
      z-index: 1;
      pointer-events: none; }
    .goals-new .visual-frame::after {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
      z-index: 2;
      pointer-events: none; }
  .goals-new .visual-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease; }
    .goals-new .visual-image:first-child {
      opacity: 1; }
    .goals-new .visual-image.active {
      opacity: 1; }
    .goals-new .visual-image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .goals-new .visual-dots {
    display: flex;
    gap: 12px;
    margin-top: 30px; }
  .goals-new .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease; }
    .goals-new .dot:hover {
      background: rgba(42, 112, 197, 0.5); }
    .goals-new .dot.active {
      background: linear-gradient(135deg, #2a70c5, #2a70c5);
      transform: scale(1.2); }

@media (max-width: 992px) {
  .goals-new .goals-slide {
    grid-template-columns: 1fr;
    gap: 50px; }
  .goals-new .slide-content {
    order: 2; }
  .goals-new .slide-visual {
    order: 1; }
  .goals-new .slide-text {
    padding-right: 0;
    text-align: center; }
  .goals-new .slide-label {
    padding-left: 0; }
    .goals-new .slide-label::before {
      display: none; }
  .goals-new .slide-nav-top {
    justify-content: center; }
  .goals-new .visual-frame {
    height: 350px; }
  .goals-new .slide-cta {
    margin: 0 auto; } }
@media (max-width: 768px) {
  .goals-new {
    padding: 60px 0 80px; }
    .goals-new .goals-new-inner {
      padding: 0 20px; }
    .goals-new .slide-title {
      font-size: 28px; }
    .goals-new .slide-item h3 {
      font-size: 20px; }
    .goals-new .visual-frame {
      height: 280px; }

  .goals-flow {
    padding: 60px 0 70px; }
    .goals-flow .goals-header {
      margin-bottom: 40px; }
    .goals-flow .goals-track {
      flex-direction: column;
      align-items: center;
      gap: 36px; }
    .goals-flow .goals-connector {
      display: none; }
    .goals-flow .goals-node {
      padding: 0;
      max-width: 320px; }
    .goals-flow .node-dot {
      width: 44px;
      height: 44px;
      margin-bottom: 16px; }
    .goals-flow .dot-core {
      inset: 8px; }
    .goals-flow .node-title {
      font-size: 16px; }
    .goals-flow .node-desc {
      font-size: 13px; } }
.services-page {
  padding-top: 80px;
  min-height: 100vh;
  background: #f8fafc; }

.services-overview .overview-hero {
  background: linear-gradient(135deg, #011f43 0%, #1a3a5c 100%);
  padding: 80px 0 60px;
  text-align: center; }
  .services-overview .overview-hero .overview-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px; }
  .services-overview .overview-hero .overview-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto; }
.services-overview .overview-category {
  padding: 0;
  margin-bottom: 10vh; }
  .services-overview .overview-category.alt {
    background: #fff; }
.services-overview .category-banner-hero {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-color: #1a2a4a;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  overflow: hidden; }
  .services-overview .category-banner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 112, 197, 0.85) 0%, rgba(1, 31, 67, 0.75) 100%);
    z-index: 1; }
  .services-overview .category-banner-hero .category-banner-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    opacity: 0.5; }
  .services-overview .category-banner-hero .container {
    position: relative;
    z-index: 2; }
  .services-overview .category-banner-hero .category-banner-content {
    max-width: 700px; }
    .services-overview .category-banner-hero .category-banner-content .category-label {
      display: inline-block;
      font-size: 1rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      letter-spacing: 2px;
      margin-bottom: 20px;
      overflow: hidden;
      white-space: nowrap;
      border-right: 2px solid rgba(255, 255, 255, 0.8);
      animation: typing 2s steps(20, end) forwards, blink-caret 0.6s step-end infinite;
      width: 0; }
@keyframes typing {
  from {
    width: 0; }
  to {
    width: 100%; } }
@keyframes blink-caret {
  from, to {
    border-color: transparent; }
  50% {
    border-color: rgba(255, 255, 255, 0.8); } }
    .services-overview .category-banner-hero .category-banner-content .category-banner-title {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: normal;
      letter-spacing: 10px;
      color: #fff;
      line-height: 1.35;
      margin-bottom: 20px;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2); }
    .services-overview .category-banner-hero .category-banner-content .category-banner-desc {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.8;
      max-width: 600px; }
.services-overview .alt .category-banner-hero::before {
  background: linear-gradient(135deg, rgba(7, 223, 212, 0.7) 0%, rgba(42, 112, 197, 0.85) 100%); }
.services-overview .category-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; }
  .services-overview .category-products:has(.product-card.featured) {
    grid-template-columns: 1fr 1fr; }
    .services-overview .category-products:has(.product-card.featured) .product-card.featured {
      grid-row: span 2; }
      .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-visual {
        height: 100%;
        min-height: 400px; }
      .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 40px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
        z-index: 2; }
      .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-title {
        font-size: 1.75rem;
        color: #fff; }
      .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-subtitle {
        color: rgba(255, 255, 255, 0.85); }
      .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-category-tag {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        backdrop-filter: blur(10px); }
      .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-highlights li {
        color: rgba(255, 255, 255, 0.9); }
        .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-highlights li svg {
          stroke: #07DFD4; }
      .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-cta {
        color: #07DFD4; }
.services-overview .product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; }
  .services-overview .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(55, 119, 197, 0.2); }
    .services-overview .product-card:hover .product-visual img {
      transform: scale(1.08); }
    .services-overview .product-card:hover .product-overlay {
      opacity: 0.3; }
    .services-overview .product-card:hover .product-cta svg {
      transform: translateX(6px); }
.services-overview .product-visual {
  position: relative;
  height: 220px;
  overflow: hidden; }
  .services-overview .product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
  .services-overview .product-visual-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f4fc 0%, #f0f7ff 100%); }
    .services-overview .product-visual-placeholder svg {
      stroke: #2a70c5;
      opacity: 0.3; }
.services-overview .product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a70c5 0%, #07DFD4 100%);
  opacity: 0;
  transition: opacity 0.4s ease; }
.services-overview .product-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1; }
.services-overview .product-meta {
  margin-bottom: 16px; }
.services-overview .product-category-tag {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(42, 112, 197, 0.1) 0%, rgba(7, 223, 212, 0.1) 100%);
  color: #2a70c5;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.5px; }
.services-overview .product-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.4; }
.services-overview .product-subtitle {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px; }
.services-overview .product-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex: 1; }
  .services-overview .product-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    padding: 6px 0; }
    .services-overview .product-highlights li svg {
      flex-shrink: 0;
      margin-top: 2px;
      stroke: #07DFD4; }
.services-overview .product-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2a70c5;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto; }
  .services-overview .product-cta svg {
    transition: transform 0.3s ease; }
.services-overview .alt .product-card {
  background: #fff; }

@media (max-width: 992px) {
  .services-overview .category-banner-hero {
    min-height: 320px; }
  .services-overview .category-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px; }
    .services-overview .category-products:has(.product-card.featured) {
      grid-template-columns: 1fr; }
      .services-overview .category-products:has(.product-card.featured) .product-card.featured {
        grid-row: auto; }
        .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-visual {
          min-height: 280px; } }
@media (max-width: 768px) {
  .services-overview .overview-hero {
    padding: 60px 0 40px; }
  .services-overview .overview-category {
    padding: 0; }
  .services-overview .category-banner-hero {
    min-height: 300px;
    margin-bottom: 40px; }
    .services-overview .category-banner-hero .category-banner-title {
      font-size: 1.5rem; }
    .services-overview .category-banner-hero .category-banner-desc {
      font-size: 0.95rem; }
  .services-overview .category-products {
    grid-template-columns: 1fr;
    gap: 20px; }
    .services-overview .category-products:has(.product-card.featured) {
      grid-template-columns: 1fr; }
      .services-overview .category-products:has(.product-card.featured) .product-card.featured {
        grid-row: auto; }
        .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-visual {
          height: 180px;
          min-height: auto; }
        .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-content {
          position: static;
          padding: 24px;
          background: none; }
        .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-title {
          font-size: 1.15rem;
          color: #2c3e50; }
        .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-subtitle {
          color: #7f8c8d; }
        .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-category-tag {
          background: rgba(42, 112, 197, 0.08);
          color: #2a70c5;
          backdrop-filter: none; }
        .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-highlights li {
          color: #7f8c8d; }
          .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-highlights li svg {
            stroke: #2a70c5; }
        .services-overview .category-products:has(.product-card.featured) .product-card.featured .product-cta {
          color: #2a70c5; }
  .services-overview .product-visual {
    height: 180px; }
  .services-overview .product-content {
    padding: 24px; }
  .services-overview .product-title {
    font-size: 1.15rem; } }
.service-hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 0; }
  .service-hero-section .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0; }
    .service-hero-section .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
  .service-hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 31, 67, 0.85) 0%, rgba(1, 31, 67, 0.6) 40%, rgba(1, 31, 67, 0.3) 70%, transparent 100%); }
  .service-hero-section .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0 50px;
    display: flex;
    flex-direction: column;
    gap: 24px; }
  .service-hero-section .hero-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    width: fit-content; }
    .service-hero-section .hero-back:hover {
      color: #ffffff; }
  .service-hero-section .hero-text {
    max-width: 600px; }
  .service-hero-section .hero-category {
    display: inline-block;
    font-size: 13px;
    font-weight: normal;
    border-radius: 10px 0px 10px 0px;
    color: #333;
    background-color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 4px 20px; }
  .service-hero-section .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: 3px;
    word-break: keep-all;
    overflow-wrap: break-word; }
  .service-hero-section .hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 8px; }
  .service-hero-section .hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 500px; }
  .service-hero-section .hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15); }
  .service-hero-section .stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px; }
  .service-hero-section .stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1; }
  .service-hero-section .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px; }

.service-intro-section {
  padding: 48px 0 40px;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  position: relative; }
  .service-intro-section .service-intro-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px; }
  .service-intro-section .intro-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2a70c5;
    letter-spacing: 2px;
    margin-bottom: 20px; }
  .service-intro-section .intro-text {
    font-size: 16px;
    line-height: 2;
    color: #4a5568;
    letter-spacing: 0.4px;
    margin: 0; }

.services-sticky-nav {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 112, 197, 0.08);
  margin-top: 0; }
  .services-sticky-nav .sticky-nav-inner {
    padding: 0; }
  .services-sticky-nav .sticky-nav-toggle {
    display: none; }
  .services-sticky-nav .sticky-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    justify-content: center; }
  .services-sticky-nav .sticky-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 19px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    position: relative; }
    .services-sticky-nav .sticky-nav-link:hover {
      color: #2a70c5;
      background: rgba(42, 112, 197, 0.03); }
    .services-sticky-nav .sticky-nav-link.active {
      color: #2a70c5;
      font-weight: 600;
      background: transparent;
      border-bottom-color: #2a70c5; }

.services-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  position: relative; }
  .services-container.no-sidebar {
    grid-template-columns: 1fr;
    max-width: 1200px; }

.services-sidebar {
  position: relative; }
  .services-sidebar .sidebar-sticky {
    position: sticky;
    top: 100px; }
  .services-sidebar .sidebar-illustration {
    display: none; }
  .services-sidebar .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px; }
  .services-sidebar .sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 1px solid transparent; }
    .services-sidebar .sidebar-link:hover, .services-sidebar .sidebar-link.active {
      background: linear-gradient(135deg, rgba(42, 112, 197, 0.04) 0%, rgba(7, 223, 212, 0.04) 100%);
      border-color: rgba(42, 112, 197, 0.15); }
      .services-sidebar .sidebar-link:hover .link-title, .services-sidebar .sidebar-link.active .link-title {
        color: #2a70c5; }
      .services-sidebar .sidebar-link:hover .link-arrow, .services-sidebar .sidebar-link.active .link-arrow {
        opacity: 1;
        transform: translateX(0); }
    .services-sidebar .sidebar-link .link-title {
      font-size: 14px;
      font-weight: 600;
      color: #2a70c5;
      margin-bottom: 0;
      display: block; }
    .services-sidebar .sidebar-link .link-subitems {
      display: none; }
    .services-sidebar .sidebar-link .link-arrow {
      color: #2a70c5;
      opacity: 0.5;
      transform: translateX(-5px);
      transition: all 0.3s ease;
      flex-shrink: 0; }

.services-content {
  max-width: 100%; }
  .services-content .content-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0; }
    .services-content .content-header .header-back {
      margin-bottom: 24px; }
      .services-content .content-header .header-back a {
        font-size: 14px;
        color: #7f8c8d;
        text-decoration: none;
        transition: color 0.3s ease; }
        .services-content .content-header .header-back a:hover {
          color: #2a70c5; }
    .services-content .content-header .header-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(7, 223, 212, 0.1) 0%, rgba(42, 112, 197, 0.05) 100%);
      border-radius: 20px;
      color: #07DFD4; }
    .services-content .content-header .content-title {
      font-size: 36px;
      font-weight: 700;
      color: #153051;
      margin-bottom: 8px;
      line-height: 1.4; }
    .services-content .content-header .content-subtitle {
      font-size: 16px;
      color: #07DFD4;
      font-weight: 500;
      letter-spacing: 1px;
      margin-bottom: 16px; }
    .services-content .content-header .content-desc {
      font-size: 15px;
      color: #7f8c8d;
      line-height: 1.8;
      max-width: 600px;
      margin: 0 auto; }
  .services-content .stats-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 50px 40px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, rgba(248, 251, 255, 0.8) 0%, rgba(232, 244, 252, 0.6) 100%);
    border-radius: 20px;
    position: relative; }
    .services-content .stats-bar::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 1px;
      background: linear-gradient(135deg, rgba(7, 223, 212, 0.2), rgba(42, 112, 197, 0.1));
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: xor;
      -webkit-mask-composite: xor;
      pointer-events: none; }
    .services-content .stats-bar .stat-item {
      text-align: center;
      position: relative; }
      .services-content .stats-bar .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 40px;
        background: linear-gradient(to bottom, transparent, rgba(189, 195, 199, 0.3), transparent); }
    .services-content .stats-bar .stat-value {
      display: block;
      font-size: 42px;
      font-weight: 700;
      background: linear-gradient(135deg, #07DFD4 0%, #2a70c5 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.2;
      margin-bottom: 8px; }
    .services-content .stats-bar .stat-label {
      display: block;
      font-size: 14px;
      color: #7f8c8d;
      font-weight: 500; }
  .services-content .content-hero-image {
    margin-bottom: 60px; }
    .services-content .content-hero-image .hero-image-wrapper {
      position: relative;
      background: linear-gradient(135deg, #F0F7FF 0%, #E8F4FC 100%);
      border-radius: 20px;
      padding: 40px;
      overflow: hidden; }
    .services-content .content-hero-image .emr-search-bar {
      position: absolute;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 32px;
      background: linear-gradient(135deg, #2a70c5 0%, #07DFD4 100%);
      border-radius: 50px;
      color: #ffffff;
      font-size: 16px;
      font-weight: 500;
      box-shadow: 0 8px 30px rgba(42, 112, 197, 0.3); }
      .services-content .content-hero-image .emr-search-bar svg {
        stroke: #ffffff; }
    .services-content .content-hero-image img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); }
  .services-content .content-section {
    margin-bottom: 20px;
    border-radius: 20px;
    padding: 40px; }
    .services-content .content-section .section-inner {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: center; }
    .services-content .content-section .section-title {
      font-size: 24px;
      font-weight: 700;
      color: #2a70c5;
      line-height: 1.5;
      text-align: center;
      width: 100%; }
    .services-content .content-section .section-subtitle {
      font-size: 15px;
      color: #666;
      text-align: center;
      margin: -4px 0 20px;
      line-height: 1.6; }
    .services-content .content-section .section-content {
      width: 100%; }
    .services-content .content-section .section-list {
      width: 100%; }
      .services-content .content-section .section-list ul {
        list-style: none;
        margin: 0;
        padding: 0; }
        .services-content .content-section .section-list ul li {
          font-size: 15px;
          line-height: 2.2;
          color: #2c3e50;
          position: relative;
          padding-left: 16px; }
          .services-content .content-section .section-list ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #2a70c5; }
      .services-content .content-section .section-list .section-image {
        margin-top: 30px; }
        .services-content .content-section .section-list .section-image img {
          max-width: 100%;
          border-radius: 12px; }
    .services-content .content-section .section-image-only {
      width: 100%; }
      .services-content .content-section .section-image-only img {
        max-width: 100%;
        border-radius: 12px; }
    .services-content .content-section .module-cards {
      display: grid;
      grid-template-columns: repeat(var(--desktop-cols, 4), 1fr);
      gap: 20px;
      width: 100%; }
      .services-content .content-section .module-cards.has-images {
        grid-template-columns: repeat(var(--desktop-cols, 3), 1fr);
        gap: 24px; }
      .services-content .content-section .module-cards .module-card {
        background: linear-gradient(160deg, #f8fbff 0%, #f0f7f6 100%);
        border: 1px solid rgba(189, 195, 199, 0.15);
        border-radius: 16px;
        padding: 32px 24px 28px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden; }
        .services-content .content-section .module-cards .module-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 3px;
          background: linear-gradient(90deg, #2a70c5 0%, #07DFD4 100%);
          opacity: 0;
          transition: opacity 0.3s ease; }
        .services-content .content-section .module-cards .module-card:hover {
          transform: translateY(-6px);
          border-color: rgba(42, 112, 197, 0.15);
          box-shadow: 0 16px 40px rgba(42, 112, 197, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04); }
          .services-content .content-section .module-cards .module-card:hover::before {
            opacity: 1; }
          .services-content .content-section .module-cards .module-card:hover .card-icon svg {
            transform: scale(1.1); }
        .services-content .content-section .module-cards .module-card.with-image {
          padding: 0;
          overflow: hidden;
          text-align: left;
          background: #ffffff; }
          .services-content .content-section .module-cards .module-card.with-image .card-image {
            width: 100%;
            height: 160px;
            overflow: hidden; }
            .services-content .content-section .module-cards .module-card.with-image .card-image img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              transition: transform 0.4s ease; }
          .services-content .content-section .module-cards .module-card.with-image:hover .card-image img {
            transform: scale(1.05); }
          .services-content .content-section .module-cards .module-card.with-image .card-content {
            padding: 20px; }
        .services-content .content-section .module-cards .module-card .card-icon {
          width: 56px;
          height: 56px;
          margin: 0 auto 18px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #2a70c5; }
          .services-content .content-section .module-cards .module-card .card-icon svg {
            width: 100%;
            height: 100%;
            transition: transform 0.3s ease; }
          .services-content .content-section .module-cards .module-card .card-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain; }
        .services-content .content-section .module-cards .module-card .card-name {
          display: block;
          font-size: 19px;
          font-weight: 700;
          color: #1a1a2e;
          margin-bottom: 10px;
          line-height: 1.4; }
        .services-content .content-section .module-cards .module-card .card-desc {
          font-size: 14px;
          color: #444;
          line-height: 1.7; }
      @media (max-width: 992px) {
        .services-content .content-section .module-cards {
          grid-template-columns: repeat(2, 1fr); }
          .services-content .content-section .module-cards.has-images {
            grid-template-columns: repeat(2, 1fr); } }
      @media (max-width: 576px) {
        .services-content .content-section .module-cards {
          grid-template-columns: 1fr; }
          .services-content .content-section .module-cards.has-images {
            grid-template-columns: 1fr; } }
    .services-content .content-section .section-image-text {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center; }
      .services-content .content-section .section-image-text.layout-right .image-text-image {
        order: 2; }
      .services-content .content-section .section-image-text.layout-right .image-text-content {
        order: 1; }
      .services-content .content-section .section-image-text .image-text-image img {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1); }
      .services-content .content-section .section-image-text .image-text-content {
        font-size: 15px;
        line-height: 2;
        color: #2c3e50; }
      @media (max-width: 768px) {
        .services-content .content-section .section-image-text {
          grid-template-columns: 1fr; }
          .services-content .content-section .section-image-text.layout-right .image-text-image, .services-content .content-section .section-image-text.layout-right .image-text-content {
            order: unset; } }
    .services-content .content-section .section-steps .steps-timeline {
      display: flex;
      flex-direction: column;
      position: relative; }
    .services-content .content-section .section-steps .step-node {
      display: flex;
      gap: 32px;
      position: relative; }
      @media (max-width: 768px) {
        .services-content .content-section .section-steps .step-node {
          gap: 20px; } }
    .services-content .content-section .section-steps .step-line-area {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-shrink: 0;
      width: 48px; }
      @media (max-width: 768px) {
        .services-content .content-section .section-steps .step-line-area {
          width: 40px; } }
    .services-content .content-section .section-steps .step-number {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, #2a70c5, #07DFD4);
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
      box-shadow: 0 4px 16px rgba(42, 112, 197, 0.3); }
      @media (max-width: 768px) {
        .services-content .content-section .section-steps .step-number {
          width: 40px;
          height: 40px;
          font-size: 16px; } }
    .services-content .content-section .section-steps .step-connector {
      width: 2px;
      flex: 1;
      background: linear-gradient(180deg, #2a70c5, rgba(7, 223, 212, 0.4));
      min-height: 40px; }
    .services-content .content-section .section-steps .step-content-area {
      flex: 1;
      padding-bottom: 40px; }
      @media (max-width: 768px) {
        .services-content .content-section .section-steps .step-content-area {
          padding-bottom: 28px; } }
    .services-content .content-section .section-steps .step-node.last .step-content-area {
      padding-bottom: 0; }
    .services-content .content-section .section-steps .step-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(42, 112, 197, 0.08);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease; }
      .services-content .content-section .section-steps .step-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(42, 112, 197, 0.12); }
    .services-content .content-section .section-steps .step-card-image {
      width: 100%;
      max-height: 320px;
      overflow: hidden; }
      .services-content .content-section .section-steps .step-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease; }
      .services-content .content-section .section-steps .step-card-image:hover img {
        transform: scale(1.03); }
      @media (max-width: 768px) {
        .services-content .content-section .section-steps .step-card-image {
          max-height: 200px; } }
    .services-content .content-section .section-steps .step-card-body {
      padding: 28px 32px; }
      @media (max-width: 768px) {
        .services-content .content-section .section-steps .step-card-body {
          padding: 20px 20px; } }
    .services-content .content-section .section-steps .step-title {
      font-size: 22px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 8px;
      line-height: 1.4; }
      @media (max-width: 768px) {
        .services-content .content-section .section-steps .step-title {
          font-size: 18px; } }
    .services-content .content-section .section-steps .step-subtitle {
      font-size: 15px;
      font-weight: 500;
      color: #2a70c5;
      margin-bottom: 12px;
      line-height: 1.6; }
      @media (max-width: 768px) {
        .services-content .content-section .section-steps .step-subtitle {
          font-size: 14px; } }
    .services-content .content-section .section-steps .step-desc {
      font-size: 15px;
      line-height: 1.8;
      color: #444;
      margin-bottom: 14px; }
      @media (max-width: 768px) {
        .services-content .content-section .section-steps .step-desc {
          font-size: 14px; } }
    .services-content .content-section .section-steps .step-list {
      list-style: none;
      padding: 0;
      margin: 0; }
      .services-content .content-section .section-steps .step-list li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 8px;
        font-size: 15px;
        line-height: 1.8;
        color: #444; }
        .services-content .content-section .section-steps .step-list li::before {
          content: '';
          position: absolute;
          left: 0;
          top: 10px;
          width: 8px;
          height: 8px;
          background: linear-gradient(135deg, #2a70c5 0%, #07DFD4 100%);
          border-radius: 50%; }
        .services-content .content-section .section-steps .step-list li:last-child {
          margin-bottom: 0; }
        @media (max-width: 768px) {
          .services-content .content-section .section-steps .step-list li {
            font-size: 14px; } }
    .services-content .content-section .section-icon-blocks .icon-blocks-grid {
      display: grid;
      grid-template-columns: repeat(var(--desktop-cols, 3), 1fr);
      gap: 20px; }
      @media (max-width: 768px) {
        .services-content .content-section .section-icon-blocks .icon-blocks-grid {
          grid-template-columns: repeat(var(--mobile-cols, 1), 1fr); } }
    .services-content .content-section .section-icon-blocks .icon-block {
      background: linear-gradient(160deg, #f8fbff 0%, #f0f7f6 100%);
      border: 1px solid rgba(189, 195, 199, 0.12);
      border-radius: 16px;
      padding: 36px 24px 30px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
      overflow: hidden; }
      .services-content .content-section .section-icon-blocks .icon-block::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #2a70c5 0%, #07DFD4 100%);
        opacity: 0;
        transition: opacity 0.3s ease; }
      .services-content .content-section .section-icon-blocks .icon-block:hover {
        transform: translateY(-6px);
        border-color: rgba(42, 112, 197, 0.15);
        box-shadow: 0 16px 40px rgba(42, 112, 197, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04); }
        .services-content .content-section .section-icon-blocks .icon-block:hover::before {
          opacity: 1; }
        .services-content .content-section .section-icon-blocks .icon-block:hover .icon-block-icon svg {
          transform: scale(1.1); }
    .services-content .content-section .section-icon-blocks .icon-block-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2a70c5; }
      .services-content .content-section .section-icon-blocks .icon-block-icon svg {
        width: 100%;
        height: 100%;
        transition: transform 0.3s ease; }
      .services-content .content-section .section-icon-blocks .icon-block-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain; }
    .services-content .content-section .section-icon-blocks .icon-block-title {
      font-size: 19px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 10px;
      line-height: 1.4; }
    .services-content .content-section .section-icon-blocks .icon-block-desc {
      font-size: 14px;
      line-height: 1.7;
      color: #444; }
    .services-content .content-section .section-icon-blocks .icon-block-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px; }
    .services-content .content-section .section-icon-blocks .icon-block-tag {
      display: inline-block;
      padding: 4px 14px;
      font-size: 13px;
      color: #2a70c5;
      background: rgba(42, 112, 197, 0.08);
      border-radius: 20px;
      line-height: 1.5;
      white-space: nowrap; }
    .services-content .content-section .section-image-text-grid .image-text-grid {
      display: grid;
      grid-template-columns: repeat(var(--desktop-cols, 4), 1fr);
      gap: 28px;
      width: 100%; }
      @media (max-width: 768px) {
        .services-content .content-section .section-image-text-grid .image-text-grid {
          grid-template-columns: repeat(var(--mobile-cols, 2), 1fr);
          gap: 20px; } }
      @media (max-width: 480px) {
        .services-content .content-section .section-image-text-grid .image-text-grid {
          gap: 16px; } }
    .services-content .content-section .section-image-text-grid .image-text-grid-item {
      display: flex;
      flex-direction: column;
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: #fff;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); }
      .services-content .content-section .section-image-text-grid .image-text-grid-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 32px rgba(55, 119, 197, 0.15); }
        .services-content .content-section .section-image-text-grid .image-text-grid-item:hover .grid-item-image img {
          transform: scale(1.05); }
      .services-content .content-section .section-image-text-grid .image-text-grid-item .grid-item-image {
        width: 100%;
        aspect-ratio: 3 / 4;
        overflow: hidden; }
        .services-content .content-section .section-image-text-grid .image-text-grid-item .grid-item-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.4s ease; }
      .services-content .content-section .section-image-text-grid .image-text-grid-item .grid-item-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #f1f5f9, #e2e8f0); }
      .services-content .content-section .section-image-text-grid .image-text-grid-item .grid-item-label {
        padding: 14px 16px;
        text-align: center; }
        .services-content .content-section .section-image-text-grid .image-text-grid-item .grid-item-label span {
          font-size: 15px;
          font-weight: 600;
          color: #1e293b;
          line-height: 1.5;
          display: block; }
    .services-content .content-section .section-image-text-grid .image-text-grid.fullimage-mode {
      gap: 0; }
      .services-content .content-section .section-image-text-grid .image-text-grid.fullimage-mode .image-text-grid-item {
        border-radius: 0;
        box-shadow: none;
        position: relative; }
        .services-content .content-section .section-image-text-grid .image-text-grid.fullimage-mode .image-text-grid-item:hover {
          transform: none;
          box-shadow: none; }
          .services-content .content-section .section-image-text-grid .image-text-grid.fullimage-mode .image-text-grid-item:hover .grid-item-image img {
            transform: scale(1.08); }
          .services-content .content-section .section-image-text-grid .image-text-grid.fullimage-mode .image-text-grid-item:hover .grid-item-label {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%); }
        .services-content .content-section .section-image-text-grid .image-text-grid.fullimage-mode .image-text-grid-item .grid-item-image {
          aspect-ratio: 16 / 9;
          min-height: 340px; }
        .services-content .content-section .section-image-text-grid .image-text-grid.fullimage-mode .image-text-grid-item .grid-item-label {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          padding: 40px 20px 20px;
          background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
          text-align: left;
          transition: background 0.4s ease; }
          .services-content .content-section .section-image-text-grid .image-text-grid.fullimage-mode .image-text-grid-item .grid-item-label span {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5); }
    .services-content .content-section .section-features .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px; }
      @media (max-width: 768px) {
        .services-content .content-section .section-features .features-grid {
          grid-template-columns: 1fr;
          gap: 16px; } }
    .services-content .content-section .section-features .feature-card {
      display: flex;
      gap: 20px;
      padding: 28px;
      background: linear-gradient(135deg, rgba(42, 112, 197, 0.03) 0%, rgba(72, 201, 176, 0.03) 100%);
      border: 1px solid rgba(189, 195, 199, 0.2);
      border-radius: 16px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden; }
      .services-content .content-section .section-features .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #2a70c5 0%, #48c9b0 100%);
        opacity: 0;
        transition: opacity 0.3s ease; }
      .services-content .content-section .section-features .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(42, 112, 197, 0.12);
        border-color: rgba(42, 112, 197, 0.2); }
        .services-content .content-section .section-features .feature-card:hover::before {
          opacity: 1; }
        .services-content .content-section .section-features .feature-card:hover .feature-icon {
          background: linear-gradient(135deg, #2a70c5 0%, #48c9b0 100%); }
          .services-content .content-section .section-features .feature-card:hover .feature-icon svg {
            stroke: #fff; }
      @media (max-width: 576px) {
        .services-content .content-section .section-features .feature-card {
          padding: 20px;
          gap: 16px; } }
    .services-content .content-section .section-features .feature-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(42, 112, 197, 0.1);
      border-radius: 12px;
      transition: all 0.3s ease; }
      .services-content .content-section .section-features .feature-icon svg {
        width: 24px;
        height: 24px;
        stroke: #2a70c5;
        transition: stroke 0.3s ease; }
      @media (max-width: 576px) {
        .services-content .content-section .section-features .feature-icon {
          width: 40px;
          height: 40px; }
          .services-content .content-section .section-features .feature-icon svg {
            width: 20px;
            height: 20px; } }
    .services-content .content-section .section-features .feature-content {
      flex: 1; }
    .services-content .content-section .section-features .feature-title {
      font-size: 19px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 10px;
      line-height: 1.4; }
      @media (max-width: 576px) {
        .services-content .content-section .section-features .feature-title {
          font-size: 15px; } }
    .services-content .content-section .section-features .feature-desc {
      font-size: 14px;
      line-height: 1.8;
      color: #444;
      margin: 0; }
      @media (max-width: 576px) {
        .services-content .content-section .section-features .feature-desc {
          font-size: 13px;
          line-height: 1.7; } }
    .services-content .content-section .section-audience .audience-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      background: linear-gradient(135deg, rgba(42, 112, 197, 0.03) 0%, rgba(72, 201, 176, 0.02) 100%);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      overflow: hidden; }
      .services-content .content-section .section-audience .audience-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 1px;
        height: 100%;
        background: linear-gradient(180deg, transparent, rgba(42, 112, 197, 0.15), transparent); }
      @media (max-width: 768px) {
        .services-content .content-section .section-audience .audience-container {
          grid-template-columns: 1fr;
          gap: 32px;
          padding: 28px; }
          .services-content .content-section .section-audience .audience-container::before {
            left: 0;
            top: auto;
            bottom: 50%;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(42, 112, 197, 0.15), transparent); } }
    .services-content .content-section .section-audience .audience-label, .services-content .content-section .section-audience .applications-label {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      font-weight: 700;
      color: #2a70c5;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px; }
      .services-content .content-section .section-audience .audience-label svg, .services-content .content-section .section-audience .applications-label svg {
        width: 22px;
        height: 22px;
        stroke: #2a70c5; }
    .services-content .content-section .section-audience .targets-list {
      display: flex;
      flex-direction: column;
      gap: 16px; }
    .services-content .content-section .section-audience .target-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 20px;
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden; }
      .services-content .content-section .section-audience .target-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #2a70c5 0%, #48c9b0 100%);
        opacity: 0;
        transition: opacity 0.3s ease; }
      .services-content .content-section .section-audience .target-item:hover {
        transform: translateX(6px);
        box-shadow: 0 8px 25px rgba(42, 112, 197, 0.1); }
        .services-content .content-section .section-audience .target-item:hover::before {
          opacity: 1; }
        .services-content .content-section .section-audience .target-item:hover .target-dot {
          transform: scale(1.2);
          background: linear-gradient(135deg, #2a70c5 0%, #48c9b0 100%); }
    .services-content .content-section .section-audience .target-dot {
      flex-shrink: 0;
      width: 10px;
      height: 10px;
      background: #2a70c5;
      border-radius: 50%;
      margin-top: 6px;
      transition: all 0.3s ease; }
    .services-content .content-section .section-audience .target-name {
      font-size: 15px;
      line-height: 1.6;
      color: #1a1a2e;
      font-weight: 500; }
    .services-content .content-section .section-audience .audience-applications .applications-content {
      background: #ffffff;
      border-radius: 16px;
      padding: 24px 28px;
      font-size: 15px;
      line-height: 2;
      color: #7f8c8d;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
      position: relative; }
      .services-content .content-section .section-audience .audience-applications .applications-content::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 0;
        width: 4px;
        height: calc(100% - 40px);
        background: linear-gradient(180deg, #48c9b0 0%, #2a70c5 100%);
        border-radius: 2px; }
    .services-content .content-section .section-scenarios {
      width: 100%; }
      .services-content .content-section .section-scenarios .scenarios-tabs {
        display: flex;
        gap: 8px;
        margin-bottom: 32px;
        border-bottom: 1px solid #e8ecf0;
        padding-bottom: 0;
        flex-wrap: wrap; }
      .services-content .content-section .section-scenarios .scenario-tab {
        background: none;
        border: none;
        padding: 12px 24px;
        font-size: 15px;
        color: #666;
        cursor: pointer;
        position: relative;
        transition: color 0.3s ease;
        font-family: 'Noto Sans TC', sans-serif;
        font-weight: 500;
        border-bottom: 2px solid transparent;
        margin-bottom: -1px; }
        .services-content .content-section .section-scenarios .scenario-tab:hover {
          color: #3777C5; }
        .services-content .content-section .section-scenarios .scenario-tab.active {
          color: #3777C5;
          border-bottom-color: #3777C5; }
      .services-content .content-section .section-scenarios .scenario-panel {
        display: none; }
        .services-content .content-section .section-scenarios .scenario-panel.active {
          display: block; }
      .services-content .content-section .section-scenarios .scenario-content {
        display: flex;
        gap: 40px;
        background: linear-gradient(160deg, #f8fbff 0%, #f0f7f6 100%);
        border-radius: 16px;
        padding: 32px;
        align-items: flex-start; }
      .services-content .content-section .section-scenarios .scenario-image {
        flex: 0 0 42%;
        max-width: 42%;
        border-radius: 12px;
        overflow: hidden; }
        .services-content .content-section .section-scenarios .scenario-image img {
          width: 100%;
          height: auto;
          display: block;
          object-fit: cover; }
      .services-content .content-section .section-scenarios .scenario-details {
        flex: 1;
        min-width: 0; }
      .services-content .content-section .section-scenarios .scenario-heading {
        font-size: 22px;
        font-weight: 700;
        color: #1a1a2e;
        margin-top: 0;
        margin-bottom: 24px;
        line-height: 1.4; }
      .services-content .content-section .section-scenarios .scenario-features {
        display: flex;
        flex-direction: column;
        gap: 20px; }
      .services-content .content-section .section-scenarios .scenario-feature-title {
        font-size: 18px;
        font-weight: 600;
        color: #3777C5;
        margin-bottom: 6px;
        line-height: 1.4; }
      .services-content .content-section .section-scenarios .scenario-feature-desc {
        font-size: 14px;
        color: #444;
        line-height: 1.7;
        margin: 0; }
      @media (max-width: 768px) {
        .services-content .content-section .section-scenarios .scenarios-tabs {
          gap: 4px; }
        .services-content .content-section .section-scenarios .scenario-tab {
          padding: 10px 16px;
          font-size: 14px; }
        .services-content .content-section .section-scenarios .scenario-content {
          flex-direction: column;
          padding: 20px;
          gap: 24px; }
        .services-content .content-section .section-scenarios .scenario-image {
          flex: none;
          max-width: 100%; }
        .services-content .content-section .section-scenarios .scenario-heading {
          font-size: 18px; } }
    .services-content .content-section .section-tags-cloud .tags-cloud-container {
      display: flex;
      flex-wrap: wrap;
      gap: 14px; }
    .services-content .content-section .section-tags-cloud .tags-cloud-label {
      display: inline-flex;
      align-items: center;
      gap: 0;
      padding: 10px 22px;
      background: #fff;
      color: #3a4a5c;
      font-size: 15px;
      font-weight: 500;
      border-radius: 28px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
      transition: box-shadow 0.2s ease, transform 0.2s ease; }
      .services-content .content-section .section-tags-cloud .tags-cloud-label:hover {
        box-shadow: 0 3px 12px rgba(55, 119, 197, 0.15);
        transform: translateY(-1px); }
    .services-content .content-section .section-tags-cloud .tags-cloud-left {
      font-weight: 600;
      color: #2a3f55; }
    .services-content .content-section .section-tags-cloud .tags-cloud-dot {
      margin: 0 8px;
      font-size: 18px;
      color: #b0bec5;
      line-height: 1; }
    .services-content .content-section .section-tags-cloud .tags-cloud-right {
      color: #5a6d7e;
      font-weight: 400; }
    @media (max-width: 768px) {
      .services-content .content-section .section-tags-cloud .tags-cloud-container {
        gap: 10px; }
      .services-content .content-section .section-tags-cloud .tags-cloud-label {
        padding: 8px 16px;
        font-size: 13px; } }
    .services-content .content-section .section-content-cards-tags .cct-list {
      display: flex;
      flex-direction: column;
      gap: 20px; }
    .services-content .content-section .section-content-cards-tags .cct-card {
      background: #fff;
      border-radius: 16px;
      border: 1px solid #e8ecf0;
      padding: 28px 32px;
      transition: box-shadow 0.3s ease, transform 0.3s ease; }
      .services-content .content-section .section-content-cards-tags .cct-card:hover {
        box-shadow: 0 8px 32px rgba(55, 119, 197, 0.08);
        transform: translateY(-2px); }
    .services-content .content-section .section-content-cards-tags .cct-card-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px; }
    .services-content .content-section .section-content-cards-tags .cct-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(55, 119, 197, 0.08) 0%, rgba(7, 223, 212, 0.08) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0; }
    .services-content .content-section .section-content-cards-tags .cct-titles {
      display: flex;
      flex-direction: column;
      gap: 2px; }
    .services-content .content-section .section-content-cards-tags .cct-title {
      font-size: 18px;
      font-weight: 700;
      color: #1a1a2e;
      margin: 0;
      line-height: 1.4; }
    .services-content .content-section .section-content-cards-tags .cct-subtitle {
      font-size: 14px;
      color: #888;
      font-weight: 400; }
    .services-content .content-section .section-content-cards-tags .cct-desc {
      font-size: 15px;
      color: #555;
      line-height: 1.8;
      margin: 0 0 20px 0; }
    .services-content .content-section .section-content-cards-tags .cct-tags-section {
      margin-top: 4px; }
    .services-content .content-section .section-content-cards-tags .cct-tags-title {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #3777C5;
      margin-bottom: 10px; }
    .services-content .content-section .section-content-cards-tags .cct-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px; }
    .services-content .content-section .section-content-cards-tags .cct-tag {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 20px;
      border: 1px solid #d0d8e0;
      font-size: 13px;
      font-weight: 500;
      color: #444;
      background: #fff;
      transition: all 0.2s ease; }
      .services-content .content-section .section-content-cards-tags .cct-tag:hover {
        border-color: #3777C5;
        color: #3777C5;
        background: rgba(55, 119, 197, 0.04); }
    @media (max-width: 768px) {
      .services-content .content-section .section-content-cards-tags .cct-card {
        padding: 20px; }
      .services-content .content-section .section-content-cards-tags .cct-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 12px; }
      .services-content .content-section .section-content-cards-tags .cct-title {
        font-size: 16px; }
      .services-content .content-section .section-content-cards-tags .cct-desc {
        font-size: 14px; }
      .services-content .content-section .section-content-cards-tags .cct-tag {
        font-size: 12px;
        padding: 5px 12px; } }
    .services-content .content-section .section-case-studies .case-studies-list {
      display: flex;
      flex-direction: column;
      gap: 24px; }
    .services-content .content-section .section-case-studies .case-study-card {
      background: #fff;
      border-radius: 16px;
      border: 1px solid #e8ecf0;
      overflow: hidden;
      transition: box-shadow 0.3s ease, transform 0.3s ease; }
      .services-content .content-section .section-case-studies .case-study-card:hover {
        box-shadow: 0 8px 32px rgba(55, 119, 197, 0.1);
        transform: translateY(-2px); }
    .services-content .content-section .section-case-studies .case-study-header {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px 28px;
      background: linear-gradient(135deg, rgba(55, 119, 197, 0.06) 0%, rgba(7, 223, 212, 0.04) 100%);
      border-bottom: 1px solid #e8ecf0; }
    .services-content .content-section .section-case-studies .case-study-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: linear-gradient(135deg, #3777C5, #07DFD4);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      flex-shrink: 0; }
    .services-content .content-section .section-case-studies .case-study-name {
      font-size: 18px;
      font-weight: 700;
      color: #1a1a2e;
      margin: 0;
      line-height: 1.4; }
    .services-content .content-section .section-case-studies .case-study-body {
      padding: 24px 28px;
      display: flex;
      flex-direction: column;
      gap: 20px; }
    .services-content .content-section .section-case-studies .case-study-label {
      display: inline-block;
      font-size: 13px;
      font-weight: 600;
      color: #3777C5;
      background: rgba(55, 119, 197, 0.08);
      padding: 4px 12px;
      border-radius: 6px;
      margin-bottom: 8px; }
    .services-content .content-section .section-case-studies .case-study-text {
      font-size: 15px;
      color: #444;
      line-height: 1.8;
      margin: 0;
      padding-left: 4px; }
    @media (max-width: 768px) {
      .services-content .content-section .section-case-studies .case-study-header {
        padding: 16px 20px; }
      .services-content .content-section .section-case-studies .case-study-name {
        font-size: 16px; }
      .services-content .content-section .section-case-studies .case-study-body {
        padding: 20px;
        gap: 16px; }
      .services-content .content-section .section-case-studies .case-study-text {
        font-size: 14px; } }
    .services-content .content-section .section-advantages .advantages-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px; }
      @media (max-width: 768px) {
        .services-content .content-section .section-advantages .advantages-container {
          grid-template-columns: 1fr;
          gap: 16px; } }
    .services-content .content-section .section-advantages .advantage-card {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 24px 28px;
      background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
      border: 1px solid #fde68a;
      border-radius: 0px 14px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      animation: fadeInUp 0.5s ease forwards;
      opacity: 0;
      align-items: center; }
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
      .services-content .content-section .section-advantages .advantage-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.3s ease; }
      .services-content .content-section .section-advantages .advantage-card:hover {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 0 12px 35px rgba(245, 158, 11, 0.2);
        border-color: #f59e0b; }
        .services-content .content-section .section-advantages .advantage-card:hover::before {
          opacity: 1; }
        .services-content .content-section .section-advantages .advantage-card:hover .advantage-icon {
          transform: rotate(15deg) scale(1.1); }
          .services-content .content-section .section-advantages .advantage-card:hover .advantage-icon svg {
            fill: #fbbf24; }
      @media (max-width: 576px) {
        .services-content .content-section .section-advantages .advantage-card {
          padding: 18px 20px;
          gap: 14px; } }
    .services-content .content-section .section-advantages .advantage-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
      border-radius: 12px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3); }
      .services-content .content-section .section-advantages .advantage-icon svg {
        width: 22px;
        height: 22px;
        stroke: #fff;
        fill: transparent;
        transition: fill 0.3s ease; }
      @media (max-width: 576px) {
        .services-content .content-section .section-advantages .advantage-icon {
          width: 38px;
          height: 38px; }
          .services-content .content-section .section-advantages .advantage-icon svg {
            width: 18px;
            height: 18px; } }
    .services-content .content-section .section-advantages .advantage-text {
      flex: 1;
      font-size: 15px;
      line-height: 1.7;
      color: #78350f;
      font-weight: 500;
      position: relative;
      z-index: 1; }
      @media (max-width: 576px) {
        .services-content .content-section .section-advantages .advantage-text {
          font-size: 14px; } }
  .services-content .related-cases-grid {
    display: flex;
    flex-direction: column;
    gap: 20px; }
  .services-content .case-card {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(125, 134, 176, 0.1);
    transition: all 0.3s ease;
    text-decoration: none; }
    .services-content .case-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 60px rgba(125, 134, 176, 0.15); }
    .services-content .case-card .case-content {
      flex: 1;
      padding: 40px; }
      .services-content .case-card .case-content h3 {
        font-size: 20px;
        font-weight: 700;
        color: #2a70c5;
        margin-bottom: 8px; }
      .services-content .case-card .case-content p {
        font-size: 15px;
        color: #2c3e50;
        margin-bottom: 24px; }
      .services-content .case-card .case-content .btn-more {
        display: inline-block;
        padding: 10px 32px;
        background: linear-gradient(135deg, #0056AA 0%, #07DFD4 100%);
        color: #ffffff;
        font-size: 15px;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease; }
        .services-content .case-card .case-content .btn-more:hover {
          transform: translateX(4px);
          box-shadow: 0 8px 20px rgba(0, 86, 170, 0.3); }
    .services-content .case-card .case-image {
      width: 280px;
      flex-shrink: 0;
      position: relative;
      overflow: hidden; }
      .services-content .case-card .case-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }

.related-cases-section {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  padding-top: 60px !important; }
  .related-cases-section .related-header {
    margin-bottom: 40px; }
  .related-cases-section .related-label {
    display: inline-block;
    font-size: 13px;
    color: #2a70c5;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px; }
  .related-cases-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2a70c5; }

.related-cases-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px; }

.related-case-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative; }
  .related-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(42, 112, 197, 0.15); }
    .related-case-card:hover .case-card-image img {
      transform: scale(1.05); }
    .related-case-card:hover .case-arrow {
      background: #2a70c5;
      color: #ffffff;
      transform: translateX(4px); }
  .related-case-card .case-card-image {
    position: relative;
    height: 200px;
    overflow: hidden; }
    .related-case-card .case-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease; }
    .related-case-card .case-card-image .case-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 30%, rgba(42, 112, 197, 0.6) 100%);
      opacity: 0.7; }
  .related-case-card .case-card-body {
    padding: 28px;
    position: relative; }
  .related-case-card .case-num {
    position: absolute;
    top: -30px;
    right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(42, 112, 197, 0.1);
    line-height: 1; }
  .related-case-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2a70c5;
    margin-bottom: 8px;
    line-height: 1.4; }
  .related-case-card p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .related-case-card .case-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(42, 112, 197, 0.1);
    color: #2a70c5;
    border-radius: 50%;
    transition: all 0.3s ease; }

@media (max-width: 768px) {
  .related-cases-showcase {
    grid-template-columns: 1fr;
    gap: 20px; }

  .related-case-card .case-card-image {
    height: 160px; }
  .related-case-card .case-card-body {
    padding: 20px; }
  .related-case-card .case-num {
    font-size: 36px;
    top: -24px; }
  .related-case-card h3 {
    font-size: 18px; }

  .related-cases-section .section-title {
    font-size: 24px; } }
.news-page {
  padding-top: 80px;
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); }
  .news-page .news-hero {
    padding: 60px 0 40px;
    text-align: center; }
  .news-page .news-hero-title {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #2a70c5 0%, #07DFD4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px; }
  .news-page .news-hero-subtitle {
    font-size: 16px;
    color: #7f8c8d; }
  .news-page .news-categories {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center; }
  .news-page .category-tag {
    padding: 8px 20px;
    border: 2px solid #e8ecf0;
    border-radius: 24px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease; }
    .news-page .category-tag:hover {
      border-color: #2a70c5;
      color: #2a70c5; }
    .news-page .category-tag.active {
      background: linear-gradient(135deg, #2a70c5 0%, #07DFD4 100%);
      border-color: transparent;
      color: #ffffff; }
  .news-page .news-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px; }
    @media (max-width: 992px) {
      .news-page .news-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px; } }
    @media (max-width: 576px) {
      .news-page .news-masonry {
        grid-template-columns: 1fr; } }
  .news-page .news-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column; }
    .news-page .news-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(42, 112, 197, 0.12); }
    .news-page .news-card .news-card-image {
      height: 200px; }
    .news-page .news-card .news-card-title {
      font-size: 17px; }
  .news-page .news-card-link {
    text-decoration: none;
    color: inherit;
    display: block; }
  .news-page .news-card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf0 100%); }
    .news-page .news-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease; }
    .news-card:hover .news-page .news-card-image img {
      transform: scale(1.05); }
  .news-page .news-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc; }
  .news-page .news-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
    letter-spacing: 0.5px; }
  .news-page .news-card-content {
    padding: 20px; }
  .news-page .news-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.5;
    margin-bottom: 10px; }
  .news-page .news-card-excerpt {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .news-page .news-card-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #95a5a6; }
  .news-page .news-empty {
    text-align: center;
    padding: 80px 20px;
    color: #7f8c8d; }

.article-page {
  padding-top: 80px;
  min-height: 100vh;
  background: #ffffff; }
  .article-page .article-hero-cover {
    position: relative;
    height: 500px;
    overflow: hidden; }
    .article-page .article-hero-cover .hero-image {
      position: absolute;
      inset: 0; }
      .article-page .article-hero-cover .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
    .article-page .article-hero-cover .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%); }
    .article-page .article-hero-cover .hero-placeholder {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #2a70c5 0%, #07DFD4 100%); }
    .article-page .article-hero-cover .hero-content {
      position: absolute;
      top: 24px;
      left: 0;
      right: 0;
      z-index: 2; }
  .article-page .article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    transition: all 0.3s; }
    .article-page .article-back:hover {
      background: rgba(0, 0, 0, 0.5);
      color: #ffffff; }
  .article-page .article-header {
    background: #ffffff;
    padding: 48px 0;
    margin-top: -80px;
    position: relative;
    z-index: 2;
    border-radius: 40px 40px 0 0; }
    .article-page .article-header .header-inner {
      max-width: 100%; }
  .article-page .article-category {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(42, 112, 197, 0.1) 0%, rgba(7, 223, 212, 0.1) 100%);
    color: #2a70c5;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.5px; }
  .article-page .article-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 24px;
    color: #1a1a2e;
    letter-spacing: -0.02em; }
  .article-page .article-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: #7f8c8d; }
    .article-page .article-meta span {
      display: flex;
      align-items: center;
      gap: 8px; }
    .article-page .article-meta svg {
      color: #2a70c5; }
  .article-page .article-container {
    display: flex;
    gap: 48px;
    padding: 0 20px 80px;
    max-width: 1200px;
    margin: 0 auto; }
  .article-page .article-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 24px; }
  .article-page .article-toc {
    background: #f8fafc;
    border-radius: 20px;
    padding: 28px; }
  .article-page .toc-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e8ecf0; }
    .article-page .toc-title svg {
      color: #2a70c5; }
  .article-page .toc-nav {
    display: flex;
    flex-direction: column;
    gap: 6px; }
  .article-page .toc-link {
    display: block;
    padding: 12px 16px;
    color: #7f8c8d;
    text-decoration: none;
    font-size: 14px;
    border-radius: 12px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease; }
    .article-page .toc-link:hover {
      background: #ffffff;
      color: #2a70c5; }
    .article-page .toc-link.active {
      background: #ffffff;
      color: #2a70c5;
      border-left-color: #2a70c5;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }
  .article-page .author-card {
    background: linear-gradient(135deg, #2a70c5 0%, #07DFD4 100%);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px; }
  .article-page .author-avatar {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; }
    .article-page .author-avatar svg {
      width: 28px;
      height: 28px;
      color: #ffffff; }
  .article-page .author-info {
    display: flex;
    flex-direction: column;
    gap: 4px; }
  .article-page .author-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff; }
  .article-page .author-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8); }
  .article-page .article-content {
    flex: 1;
    min-width: 0; }
    .article-page .article-content.full-width {
      max-width: 800px;
      margin: 0 auto; }
  .article-page .article-lead {
    font-size: 20px;
    line-height: 1.9;
    color: #2c3e50;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(42, 112, 197, 0.06) 0%, rgba(7, 223, 212, 0.06) 100%);
    border-left: 4px solid #2a70c5;
    border-radius: 0 16px 16px 0;
    margin-bottom: 40px;
    font-weight: 400; }
  .article-page .article-body {
    background: #ffffff;
    padding: 0; }
    .article-page .article-body p {
      font-size: 17px;
      line-height: 2;
      color: #2c3e50;
      margin-bottom: 28px; }
    .article-page .article-body .content-heading {
      font-weight: 700;
      color: #1a1a2e;
      margin: 48px 0 24px;
      padding-bottom: 16px;
      border-bottom: 2px solid #f0f4f8;
      position: relative; }
      .article-page .article-body .content-heading::before {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, #2a70c5, #07DFD4); }
      .article-page .article-body .content-heading:first-child {
        margin-top: 0; }
    .article-page .article-body h2.content-heading {
      font-size: 26px; }
    .article-page .article-body h3.content-heading {
      font-size: 22px; }
    .article-page .article-body .content-quote {
      position: relative;
      padding: 40px 48px;
      background: #f8fafc;
      border: none;
      font-size: 22px;
      font-style: italic;
      color: #1a1a2e;
      margin: 40px 0;
      border-radius: 20px;
      text-align: center;
      line-height: 1.7; }
      .article-page .article-body .content-quote .quote-mark {
        position: absolute;
        top: 16px;
        left: 24px;
        font-size: 72px;
        font-family: Georgia, serif;
        color: #2a70c5;
        opacity: 0.15;
        line-height: 1; }
    .article-page .article-body .content-list {
      list-style: none;
      padding: 0;
      margin: 32px 0;
      background: #f8fafc;
      border-radius: 16px;
      padding: 24px 32px; }
      .article-page .article-body .content-list li {
        padding: 12px 0 12px 32px;
        position: relative;
        font-size: 16px;
        line-height: 1.8;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
        .article-page .article-body .content-list li:last-child {
          border-bottom: none; }
        .article-page .article-body .content-list li::before {
          content: "";
          position: absolute;
          left: 0;
          top: 20px;
          width: 10px;
          height: 10px;
          background: linear-gradient(135deg, #2a70c5, #07DFD4);
          border-radius: 50%; }
    .article-page .article-body .content-figure {
      margin: 40px 0; }
      .article-page .article-body .content-figure img {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
      .article-page .article-body .content-figure figcaption {
        text-align: center;
        font-size: 14px;
        color: #95a5a6;
        margin-top: 16px;
        font-style: italic; }
  .article-page .article-share {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 2px solid #f0f4f8; }
  .article-page .share-label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50; }
  .article-page .share-buttons {
    display: flex;
    gap: 12px; }
  .article-page .share-btn {
    width: 44px;
    height: 44px;
    border: 2px solid #e8ecf0;
    background: #ffffff;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    transition: all 0.3s ease; }
    .article-page .share-btn:hover {
      border-color: #2a70c5;
      color: #ffffff;
      background: linear-gradient(135deg, #2a70c5, #07DFD4); }

.related-news {
  background: #1a1a2e;
  padding: 80px 0; }
  .related-news .related-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px; }
  .related-news .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; }
    @media (max-width: 768px) {
      .related-news .related-grid {
        grid-template-columns: 1fr; } }
  .related-news .related-card {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease; }
    .related-news .related-card:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-4px); }
  .related-news .related-image {
    height: 160px;
    background: linear-gradient(135deg, rgba(42, 112, 197, 0.3), rgba(7, 223, 212, 0.3)); }
    .related-news .related-image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .related-news .related-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 112, 197, 0.2), rgba(7, 223, 212, 0.2)); }
  .related-news .related-content {
    padding: 20px; }
  .related-news .related-category {
    font-size: 11px;
    color: #07DFD4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px; }
  .related-news .related-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 8px;
    line-height: 1.5; }

@media (max-width: 992px) {
  .governance .governance-cards,
  .challenges .challenges-grid,
  .goals .goals-grid {
    grid-template-columns: 1fr; }

  .challenges .challenges-image {
    height: 300px;
    margin-top: 40px; }

  .hero .hero-content {
    grid-template-columns: 1fr;
    text-align: center; }

  .hero .hero-text .hero-desc {
    max-width: 100%;
    margin: 0 auto; }

  .about .about-grid {
    grid-template-columns: 1fr; }

  .projects .projects-grid {
    grid-template-columns: repeat(2, 1fr); }

  .contact .contact-wrapper {
    grid-template-columns: 1fr; }

  .contact .contact-visual {
    display: none; } }
@media (max-width: 768px) {
  .main-header .header-content {
    height: 64px; }
  .main-header .logo img {
    height: 36px; }
  .main-header .main-nav {
    display: none !important;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    z-index: 9999;
    background: #ffffff;
    padding: 24px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; }
    .main-header .main-nav.active {
      display: flex !important;
      flex-direction: column; }
    .main-header .main-nav > ul {
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: stretch;
      list-style: none;
      margin: 0;
      padding: 0;
      width: 100%; }
      .main-header .main-nav > ul > li {
        width: 100%; }
        .main-header .main-nav > ul > li > a {
          display: block;
          padding: 14px 16px;
          font-size: 16px;
          font-weight: 500;
          color: #1a1a2e;
          text-decoration: none;
          border-radius: 10px;
          transition: background 0.2s; }
          .main-header .main-nav > ul > li > a:hover {
            background: rgba(42, 112, 197, 0.06); }
    .main-header .main-nav .has-dropdown .nav-link {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .main-header .main-nav .has-dropdown .nav-link .dropdown-arrow {
        display: block;
        transition: transform 0.3s ease; }
    .main-header .main-nav .has-dropdown .nav-dropdown {
      position: static !important;
      display: none !important;
      opacity: 1 !important;
      visibility: visible !important;
      transform: none !important;
      padding-top: 0; }
      .main-header .main-nav .has-dropdown .nav-dropdown .dropdown-inner {
        background: rgba(42, 112, 197, 0.03);
        box-shadow: none;
        padding: 12px 0;
        flex-direction: column;
        min-width: auto;
        gap: 0;
        border-radius: 12px;
        margin-top: 8px; }
      .main-header .main-nav .has-dropdown .nav-dropdown .dropdown-categories {
        flex-direction: column;
        gap: 0; }
      .main-header .main-nav .has-dropdown .nav-dropdown .dropdown-all-link {
        margin: 0 8px 8px; }
      .main-header .main-nav .has-dropdown .nav-dropdown .dropdown-category {
        padding: 0; }
        .main-header .main-nav .has-dropdown .nav-dropdown .dropdown-category h4 {
          display: none; }
        .main-header .main-nav .has-dropdown .nav-dropdown .dropdown-category .category-desc {
          display: none; }
        .main-header .main-nav .has-dropdown .nav-dropdown .dropdown-category .category-header {
          display: none; }
        .main-header .main-nav .has-dropdown .nav-dropdown .dropdown-category ul {
          display: flex;
          flex-direction: column;
          gap: 2px;
          padding: 0 8px;
          list-style: none; }
        .main-header .main-nav .has-dropdown .nav-dropdown .dropdown-category li a {
          display: block;
          padding: 10px 14px;
          font-size: 14px;
          color: #444;
          text-decoration: none;
          border-radius: 8px; }
          .main-header .main-nav .has-dropdown .nav-dropdown .dropdown-category li a:hover {
            background: rgba(42, 112, 197, 0.08); }
      .main-header .main-nav .has-dropdown .nav-dropdown .dropdown-divider {
        display: none; }
      .main-header .main-nav .has-dropdown .nav-dropdown.nav-dropdown-simple .dropdown-inner {
        padding: 12px 0; }
      .main-header .main-nav .has-dropdown .nav-dropdown.nav-dropdown-simple .dropdown-links {
        display: flex;
        flex-direction: column;
        padding: 0 8px;
        list-style: none; }
        .main-header .main-nav .has-dropdown .nav-dropdown.nav-dropdown-simple .dropdown-links li a {
          display: block;
          padding: 10px 14px;
          font-size: 14px;
          color: #444;
          text-decoration: none;
          border-radius: 8px; }
          .main-header .main-nav .has-dropdown .nav-dropdown.nav-dropdown-simple .dropdown-links li a:hover {
            background: rgba(42, 112, 197, 0.08); }
    .main-header .main-nav .has-dropdown.mobile-open .nav-link .dropdown-arrow {
      transform: rotate(180deg); }
    .main-header .main-nav .has-dropdown.mobile-open .nav-dropdown {
      display: block !important; }
  .main-header .mobile-menu-btn {
    display: flex;
    position: relative;
    z-index: 10000; }
    .main-header .mobile-menu-btn.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px); }
    .main-header .mobile-menu-btn.active span:nth-child(2) {
      opacity: 0; }
    .main-header .mobile-menu-btn.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px); }

  .hero {
    min-height: 80vh; }
    .hero .hero-carousel, .hero .carousel-slides, .hero .carousel-slide {
      height: 80vh;
      min-height: 80vh; }
    .hero .hero-content {
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 90%;
      width: 100%;
      padding: 0 20px;
      text-align: center; }
    .hero .hero-text .hero-title {
      font-size: 28px; }
      .hero .hero-text .hero-title .subtitle {
        font-size: 18px; }
    .hero .hero-text .hero-desc {
      font-size: 14px;
      line-height: 1.8;
      margin: 0 auto; }
    .hero .carousel-dots {
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%); }

  .about .about-hero {
    min-height: 400px; }
  .about .about-hero-bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.95) 100%); }
  .about .about-hero-content {
    padding: 60px 20px;
    align-items: center;
    text-align: center; }
  .about .about-title {
    font-size: 2rem;
    margin-bottom: 20px; }
  .about .about-intro {
    font-size: 14px;
    line-height: 1.8; }
  .about .container {
    padding-top: 40px;
    padding-bottom: 60px; }
  .about .about-grid {
    grid-template-columns: 1fr;
    gap: 16px; }
  .about .about-card {
    padding: 24px 20px; }
    .about .about-card .card-number {
      font-size: 36px; }
    .about .about-card h3 {
      font-size: 18px; }
    .about .about-card p {
      font-size: 13px; }

  .challenges-new {
    padding: 60px 0; }
    .challenges-new .challenges-header {
      margin-bottom: 50px; }
    .challenges-new .challenges-title {
      font-size: 28px;
      letter-spacing: 2px; }
    .challenges-new .challenges-desc {
      font-size: 15px; }
    .challenges-new .challenges-list {
      gap: 50px; }
    .challenges-new .challenge-row {
      flex-direction: column;
      gap: 30px; }
      .challenges-new .challenge-row.reversed {
        flex-direction: column; }
        .challenges-new .challenge-row.reversed .challenge-content {
          text-align: left; }
          .challenges-new .challenge-row.reversed .challenge-content .content-inner {
            align-items: flex-start; }
          .challenges-new .challenge-row.reversed .challenge-content .challenge-points li {
            padding-left: 20px;
            padding-right: 0; }
            .challenges-new .challenge-row.reversed .challenge-content .challenge-points li::before {
              left: 0;
              right: auto; }
        .challenges-new .challenge-row.reversed .challenge-image::after {
          left: -15px;
          right: auto; }
    .challenges-new .challenge-image::after {
      top: 15px;
      left: -15px; }
    .challenges-new .challenge-number {
      font-size: 48px;
      margin-bottom: -15px; }
    .challenges-new h3 {
      font-size: 22px; }
    .challenges-new .challenge-desc {
      font-size: 15px; }

  .governance {
    padding: 60px 0; }
    .governance .section-header h2 {
      font-size: 26px; }
    .governance .governance-cards {
      gap: 16px; }
    .governance .governance-card {
      padding: 28px 20px; }
      .governance .governance-card .card-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px; }
      .governance .governance-card h3 {
        font-size: 18px; }
      .governance .governance-card p {
        font-size: 13px; }

  .cases {
    padding: 60px 0; }
    .cases .cases-header h2 {
      font-size: 1.3rem; }
    .cases .case-slide.active {
      flex-direction: column;
      gap: 40px;
      padding: 40px 20px; }
    .cases .case-content {
      max-width: 100%;
      text-align: center; }
    .cases .case-title {
      font-size: 22px; }
    .cases .case-desc {
      font-size: 14px; }
    .cases .case-stats {
      justify-content: center; }
      .cases .case-stats .stat-value {
        font-size: 26px; }
    .cases .case-visual {
      max-width: 100%; }
    .cases .monitor-frame::after {
      height: 50px; }

  .news {
    padding: 60px 0; }
    .news .news-wrapper {
      display: flex;
      flex-direction: column;
      gap: 30px;
      padding: 0 20px; }
    .news .news-sidebar {
      display: flex;
      align-items: center;
      gap: 16px; }
      .news .news-sidebar .news-sidebar-graphic {
        display: none; }
      .news .news-sidebar .news-title-en {
        font-size: 14px; }
      .news .news-sidebar .news-title {
        font-size: 26px; }
    .news .news-item {
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding: 20px 0; }
      .news .news-item .news-thumb {
        width: 100%;
        height: 180px; }
      .news .news-item .news-content .news-headline {
        font-size: 16px; }
      .news .news-item .news-more {
        align-self: flex-start; }
      .news .news-item .news-date {
        position: absolute;
        top: 20px;
        right: 0; }
    .news .news-item {
      position: relative; }

  .contact {
    padding: 60px 0; }
    .contact .contact-content h2 {
      font-size: 26px; }
    .contact .contact-form .form-row {
      flex-direction: column;
      gap: 16px; }

  .vision {
    padding: 60px 0; }
    .vision .vision-text h2 {
      font-size: 24px; }

  .main-footer {
    padding: 40px 0 24px; }
    .main-footer .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 32px; }
    .main-footer .footer-brand {
      max-width: 100%; }
    .main-footer .footer-contact {
      align-items: center; }
      .main-footer .footer-contact .contact-item {
        justify-content: center; }
    .main-footer .copyright {
      font-size: 12px;
      text-align: center; }

  .service-hero-section {
    min-height: 400px; }
    .service-hero-section .hero-content {
      padding: 40px 20px; }
    .service-hero-section .hero-title {
      font-size: 32px; }
    .service-hero-section .hero-subtitle {
      font-size: 17px; }
    .service-hero-section .hero-desc {
      font-size: 14px; }
    .service-hero-section .hero-stats {
      flex-wrap: wrap;
      gap: 24px; }
    .service-hero-section .stat-value {
      font-size: 28px; }
    .service-hero-section .stat-label {
      font-size: 12px; }

  .service-intro-section {
    padding: 28px 0 24px; }
    .service-intro-section .service-intro-card {
      padding: 0 16px; }
    .service-intro-section .intro-text {
      font-size: 15px;
      line-height: 1.8; }

  .services-sticky-nav {
    top: 60px; }
    .services-sticky-nav .sticky-nav-toggle {
      display: none !important; }
    .services-sticky-nav .sticky-nav-inner {
      display: flex;
      align-items: center;
      gap: 0; }
    .services-sticky-nav .sticky-nav-links {
      display: flex !important;
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      max-height: none !important;
      opacity: 1 !important;
      gap: 4px;
      padding: 4px 0;
      scrollbar-width: none; }
      .services-sticky-nav .sticky-nav-links::-webkit-scrollbar {
        display: none; }
    .services-sticky-nav .sticky-nav-link {
      padding: 8px 14px;
      font-size: 13px;
      white-space: nowrap;
      flex-shrink: 0; }

  .services-page .services-container {
    display: flex;
    flex-direction: column;
    padding: 24px 16px 60px;
    gap: 0; }
  .services-page .services-sidebar {
    width: 100%;
    position: static;
    order: 1;
    margin-bottom: 24px; }
    .services-page .services-sidebar .sidebar-sticky {
      position: static;
      padding: 0; }
    .services-page .services-sidebar .sidebar-illustration {
      display: none; }
    .services-page .services-sidebar .sidebar-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 8px; }
    .services-page .services-sidebar .sidebar-link {
      padding: 10px 14px;
      flex: 1;
      min-width: 140px; }
      .services-page .services-sidebar .sidebar-link .link-title {
        font-size: 13px;
        margin-bottom: 0; }
      .services-page .services-sidebar .sidebar-link .link-subitems {
        display: none; }
      .services-page .services-sidebar .sidebar-link .link-arrow {
        display: none; }
  .services-page .services-content {
    max-width: 100%;
    padding: 0;
    order: 2; }
  .services-page .content-section {
    margin-bottom: 40px;
    padding: 10px;
    padding-bottom: 40px; }
    .services-page .content-section .section-title {
      font-size: 22px; }
  .services-page .icon-blocks-grid {
    gap: 12px; }
  .services-page .icon-block {
    padding: 20px 16px; }
    .services-page .icon-block .icon-block-icon {
      width: 40px;
      height: 40px; }
    .services-page .icon-block .icon-block-title {
      font-size: 14px; }
    .services-page .icon-block .icon-block-desc {
      font-size: 12px; }
  .services-page .module-cards {
    grid-template-columns: repeat(var(--mobile-cols, 2), 1fr);
    gap: 12px; }
    .services-page .module-cards.has-images {
      grid-template-columns: repeat(var(--mobile-cols, 2), 1fr); }
  .services-page .module-card {
    padding: 24px 16px 20px; }
    .services-page .module-card .card-icon {
      width: 44px;
      height: 44px;
      margin-bottom: 14px; }
    .services-page .module-card .card-name {
      font-size: 14px; }
    .services-page .module-card .card-desc {
      font-size: 12px; }
  .services-page .related-cases-grid {
    gap: 16px; }
  .services-page .case-card {
    flex-direction: column; }
    .services-page .case-card .case-content {
      padding: 24px 20px; }
      .services-page .case-card .case-content h3 {
        font-size: 18px; }
    .services-page .case-card .case-image {
      width: 100%;
      height: 160px; }

  .news-page {
    padding-top: 80px; }
    .news-page .news-page-header {
      padding: 32px 0; }
      .news-page .news-page-header h1 {
        font-size: 28px; }
    .news-page .news-filters {
      gap: 8px;
      flex-wrap: wrap; }
      .news-page .news-filters .filter-btn {
        padding: 8px 14px;
        font-size: 13px; }
    .news-page .news-masonry {
      columns: 1 !important; }
    .news-page .news-card {
      margin-bottom: 16px; }
      .news-page .news-card .card-content {
        padding: 20px; }
        .news-page .news-card .card-content h3 {
          font-size: 17px; }

  .article-page .article-hero-cover {
    height: 320px; }
  .article-page .article-header {
    padding: 32px 0;
    margin-top: -40px;
    border-radius: 24px 24px 0 0; }
    .article-page .article-header .article-title {
      font-size: 26px; }
  .article-page .article-container {
    flex-direction: column;
    padding: 0 16px 60px; }
  .article-page .article-sidebar {
    position: static !important;
    width: 100% !important;
    margin-bottom: 24px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px; }
    .article-page .article-sidebar .article-toc {
      flex: 1;
      min-width: 280px; }
    .article-page .article-sidebar .author-card {
      flex: 1;
      min-width: 200px; }
  .article-page .article-lead {
    font-size: 17px;
    padding: 20px 24px; }
  .article-page .article-body h2.content-heading {
    font-size: 22px; }
  .article-page .article-body h3.content-heading {
    font-size: 18px; }
  .article-page .article-body p {
    font-size: 16px; }
  .article-page .article-body .content-quote {
    font-size: 18px;
    padding: 32px; }
  .article-page .article-meta {
    flex-wrap: wrap;
    gap: 16px; }

  .related-news {
    padding: 60px 0; }
    .related-news .related-title {
      font-size: 24px; } }
@media (max-width: 480px) {
  .hero .hero-text .hero-title {
    font-size: 24px; }
    .hero .hero-text .hero-title .subtitle {
      font-size: 16px; }

  .about-grid,
  .governance-cards {
    gap: 12px; }

  .services-page .sidebar-nav {
    flex-direction: column; }
  .services-page .sidebar-link {
    min-width: auto; }
  .services-page .module-cards {
    grid-template-columns: repeat(var(--mobile-cols, 1), 1fr); }

  .news .news-item .news-date {
    top: 16px; }
    .news .news-item .news-date .year {
      font-size: 11px; }
    .news .news-item .news-date .day {
      font-size: 18px; }
  .news .news-item .news-thumb {
    height: 160px; } }
.about-page .about-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }
  .about-page .about-hero .about-hero-bg {
    position: absolute;
    inset: 0; }
    .about-page .about-hero .about-hero-bg .hero-bg-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
    .about-page .about-hero .about-hero-bg .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(1, 31, 67, 0.75) 0%, rgba(10, 58, 110, 0.6) 50%, rgba(26, 90, 154, 0.5) 100%); }
  .about-page .about-hero .about-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 140px 20px 100px; }
    .about-page .about-hero .about-hero-content .hero-badge {
      display: inline-block;
      padding: 12px 28px;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.95);
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 28px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(15px);
      letter-spacing: 3px; }
    .about-page .about-hero .about-hero-content .hero-main-title {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.3;
      margin-bottom: 28px;
      text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
      .about-page .about-hero .about-hero-content .hero-main-title .title-gradient {
        display: block;
        color: #ffffff; }
    .about-page .about-hero .about-hero-content .hero-en-name {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 400;
      letter-spacing: 2px;
      font-style: italic;
      min-height: 30px;
      display: inline-block; }
      .about-page .about-hero .about-hero-content .hero-en-name.typewriter::after {
        content: '|';
        display: inline-block;
        margin-left: 2px;
        color: #2a70c5;
        animation: blink-cursor 0.8s infinite; }
@keyframes blink-cursor {
  0%, 50% {
    opacity: 1; }
  51%, 100% {
    opacity: 0; } }
.about-page .company-intro {
  padding: 100px 0;
  background: #ffffff; }
  .about-page .company-intro .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px; }
  .about-page .company-intro .intro-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px; }
    .about-page .company-intro .intro-header .intro-logo {
      max-width: 280px;
      height: auto;
      margin-bottom: 20px; }
    .about-page .company-intro .intro-header .intro-label {
      font-family: 'Playfair Display', serif;
      font-size: 14px;
      font-weight: 400;
      font-style: italic;
      color: #2a70c5;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 12px; }
    .about-page .company-intro .intro-header h2 {
      font-size: 36px;
      font-weight: 700;
      color: #2c3e50;
      letter-spacing: 6px;
      margin-bottom: 20px; }
    .about-page .company-intro .intro-header .intro-line {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #2a70c5, #2a70c5);
      border-radius: 2px; }
  .about-page .company-intro .intro-content {
    text-align: center;
    margin-bottom: 60px; }
    .about-page .company-intro .intro-content p {
      font-size: 18px;
      line-height: 1.9;
      color: #95a5a6;
      margin-bottom: 24px; }
      .about-page .company-intro .intro-content p:last-child {
        margin-bottom: 0; }
      .about-page .company-intro .intro-content p strong {
        color: #2c3e50;
        font-weight: 600; }
        .about-page .company-intro .intro-content p strong.highlight {
          color: #2a70c5; }
.about-page .partnership-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #1a5a8a 0%, #2a7ab5 40%, #3a9ac8 70%, #4abadc 100%);
  overflow: hidden; }
  .about-page .partnership-section .partnership-bg {
    position: absolute;
    inset: 0; }
    .about-page .partnership-section .partnership-bg::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
      border-radius: 50%; }
    .about-page .partnership-section .partnership-bg::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(42, 112, 197, 0.2) 0%, transparent 70%);
      border-radius: 50%; }
    .about-page .partnership-section .partnership-bg .floating-particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      filter: blur(1px);
      animation: particle-float 8s ease-in-out infinite; }
      .about-page .partnership-section .partnership-bg .floating-particle.p1 {
        width: 10px;
        height: 10px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
        background: rgba(42, 112, 197, 0.6); }
      .about-page .partnership-section .partnership-bg .floating-particle.p2 {
        width: 8px;
        height: 8px;
        top: 60%;
        left: 5%;
        animation-delay: 1.5s; }
      .about-page .partnership-section .partnership-bg .floating-particle.p3 {
        width: 12px;
        height: 12px;
        top: 30%;
        right: 15%;
        animation-delay: 3s;
        background: rgba(42, 112, 197, 0.5); }
      .about-page .partnership-section .partnership-bg .floating-particle.p4 {
        width: 6px;
        height: 6px;
        top: 70%;
        right: 10%;
        animation-delay: 4.5s; }
      .about-page .partnership-section .partnership-bg .floating-particle.p5 {
        width: 9px;
        height: 9px;
        bottom: 20%;
        left: 20%;
        animation-delay: 2s;
        background: rgba(42, 112, 197, 0.6); }
  .about-page .partnership-section .partnership-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px; }
  .about-page .partnership-section .partnership-header {
    text-align: center;
    margin-bottom: 80px; }
    .about-page .partnership-section .partnership-header h2 {
      font-size: 42px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 20px;
      letter-spacing: 4px; }
    .about-page .partnership-section .partnership-header p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.85);
      max-width: 600px;
      margin: 0 auto;
      min-height: 28px; }
    .about-page .partnership-section .partnership-header .typewriter-soft {
      display: inline; }
      .about-page .partnership-section .partnership-header .typewriter-soft::after {
        content: '|';
        display: inline-block;
        margin-left: 2px;
        color: rgba(255, 255, 255, 0.6);
        animation: soft-blink 1s ease-in-out infinite; }
      .about-page .partnership-section .partnership-header .typewriter-soft.typing-done::after {
        animation: soft-fade-out 1s ease forwards; }
@keyframes soft-blink {
  0%, 100% {
    opacity: 0.3; }
  50% {
    opacity: 0.8; } }
@keyframes soft-fade-out {
  0% {
    opacity: 0.6; }
  100% {
    opacity: 0; } }
  .about-page .partnership-section .partnership-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    min-height: 400px; }
  .about-page .partnership-section .partner-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; }
    .about-page .partnership-section .partner-side .partner-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 30px; }
    .about-page .partnership-section .partner-side .partner-node {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 15px;
      transition: transform 0.4s ease, box-shadow 0.4s ease; }
      .about-page .partnership-section .partner-side .partner-node.asus {
        background: linear-gradient(135deg, #2a3a5e, #3a5a8e);
        color: #ffffff;
        border: 3px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(42, 112, 197, 0.2); }
      .about-page .partnership-section .partner-side .partner-node.nhri {
        background: linear-gradient(135deg, #2dd4bf, #5eead4);
        color: #ffffff;
        border: 3px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 15px 50px rgba(45, 212, 191, 0.4), 0 0 30px rgba(94, 234, 212, 0.3); }
      .about-page .partnership-section .partner-side .partner-node:hover {
        transform: scale(1.1); }
    .about-page .partnership-section .partner-side .partner-label {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
      margin-top: 14px; }
    .about-page .partnership-section .partner-side .partner-attrs {
      display: flex;
      flex-direction: column;
      gap: 14px; }
      .about-page .partnership-section .partner-side .partner-attrs.to-right {
        align-items: flex-end; }
        .about-page .partnership-section .partner-side .partner-attrs.to-right .attr-line {
          flex-direction: row; }
        .about-page .partnership-section .partner-side .partner-attrs.to-right .attr-connector {
          background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5)); }
        .about-page .partnership-section .partner-side .partner-attrs.to-right .attr-arrow {
          color: rgba(255, 255, 255, 0.7); }
      .about-page .partnership-section .partner-side .partner-attrs.to-left {
        align-items: flex-start; }
        .about-page .partnership-section .partner-side .partner-attrs.to-left .attr-line {
          flex-direction: row; }
        .about-page .partnership-section .partner-side .partner-attrs.to-left .attr-connector {
          background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2)); }
        .about-page .partnership-section .partner-side .partner-attrs.to-left .attr-arrow {
          color: rgba(255, 255, 255, 0.7); }
      .about-page .partnership-section .partner-side .partner-attrs .attr-line {
        display: flex;
        align-items: center;
        gap: 10px;
        animation: fadeSlideIn 0.6s ease forwards;
        opacity: 0; }
        .about-page .partnership-section .partner-side .partner-attrs .attr-line:nth-child(1) {
          animation-delay: 0.2s; }
        .about-page .partnership-section .partner-side .partner-attrs .attr-line:nth-child(2) {
          animation-delay: 0.4s; }
        .about-page .partnership-section .partner-side .partner-attrs .attr-line:nth-child(3) {
          animation-delay: 0.6s; }
      .about-page .partnership-section .partner-side .partner-attrs .attr-arrow {
        font-size: 20px;
        font-weight: 400;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
        display: inline-block;
        animation: arrowPulse 1.5s ease-in-out infinite; }
      .about-page .partnership-section .partner-side .partner-attrs.to-right .attr-arrow {
        animation: arrowFlowRight 1.5s ease-in-out infinite; }
      .about-page .partnership-section .partner-side .partner-attrs.to-left .attr-arrow {
        animation: arrowFlowLeft 1.5s ease-in-out infinite; }
      .about-page .partnership-section .partner-side .partner-attrs .attr-line:nth-child(1) .attr-arrow {
        animation-delay: 0s; }
      .about-page .partnership-section .partner-side .partner-attrs .attr-line:nth-child(2) .attr-arrow {
        animation-delay: 0.3s; }
      .about-page .partnership-section .partner-side .partner-attrs .attr-line:nth-child(3) .attr-arrow {
        animation-delay: 0.6s; }
      .about-page .partnership-section .partner-side .partner-attrs .attr-line:nth-child(1) .attr-connector::after {
        animation-delay: 0s; }
      .about-page .partnership-section .partner-side .partner-attrs .attr-line:nth-child(2) .attr-connector::after {
        animation-delay: 0.4s; }
      .about-page .partnership-section .partner-side .partner-attrs .attr-line:nth-child(3) .attr-connector::after {
        animation-delay: 0.8s; }
      .about-page .partnership-section .partner-side .partner-attrs .attr-connector {
        width: 50px;
        height: 2px;
        position: relative;
        overflow: hidden; }
        .about-page .partnership-section .partner-side .partner-attrs .attr-connector::after {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(42, 112, 197, 0.9), transparent);
          animation: connectorFlow 2s ease-in-out infinite; }
      .about-page .partnership-section .partner-side .partner-attrs .attr-tag {
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 13px;
        font-weight: 500;
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease; }
        .about-page .partnership-section .partner-side .partner-attrs .attr-tag:hover {
          background: rgba(42, 112, 197, 0.2);
          border-color: rgba(42, 112, 197, 0.4); }
  .about-page .partnership-section .center-hub {
    position: relative;
    margin: 0 60px;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .about-page .partnership-section .center-hub .orbit {
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 50%; }
      .about-page .partnership-section .center-hub .orbit.orbit-outer {
        width: 340px;
        height: 340px;
        margin-left: -170px;
        margin-top: -170px;
        border: 2px dashed rgba(42, 112, 197, 0.35);
        animation: spin 50s linear infinite; }
      .about-page .partnership-section .center-hub .orbit.orbit-inner {
        width: 270px;
        height: 270px;
        margin-left: -135px;
        margin-top: -135px;
        border: 2px solid rgba(42, 112, 197, 0.45);
        animation: spin 35s linear infinite reverse; }
    .about-page .partnership-section .center-hub .hub-sphere {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 80px rgba(255, 255, 255, 0.5), 0 0 120px rgba(42, 112, 197, 0.3);
      position: relative;
      z-index: 10; }
      .about-page .partnership-section .center-hub .hub-sphere img {
        width: 70%;
        height: auto;
        object-fit: contain; }
    .about-page .partnership-section .center-hub .hub-label {
      position: absolute;
      bottom: -50px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      white-space: nowrap;
      z-index: 5;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      letter-spacing: 2px; }
    .about-page .partnership-section .center-hub .pulse-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 200px;
      height: 200px;
      margin-left: -100px;
      margin-top: -100px;
      border-radius: 50%;
      border: 2px solid rgba(42, 112, 197, 0.6);
      animation: pulseExpandCenter 2.5s ease-out infinite; }
      .about-page .partnership-section .center-hub .pulse-ring::before, .about-page .partnership-section .center-hub .pulse-ring::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 50%;
        border: 2px solid rgba(42, 112, 197, 0.4);
        animation: pulseExpandCenter 2.5s ease-out infinite; }
      .about-page .partnership-section .center-hub .pulse-ring::before {
        width: 200px;
        height: 200px;
        margin-left: -100px;
        margin-top: -100px;
        animation-delay: 0.8s; }
      .about-page .partnership-section .center-hub .pulse-ring::after {
        width: 200px;
        height: 200px;
        margin-left: -100px;
        margin-top: -100px;
        animation-delay: 1.6s; }
@keyframes pulseExpandCenter {
  0% {
    transform: scale(1);
    opacity: 0.8; }
  100% {
    transform: scale(2);
    opacity: 0; } }
@keyframes arrowFlowRight {
  0% {
    transform: translateX(0);
    opacity: 0.4;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3); }
  50% {
    transform: translateX(8px);
    opacity: 1;
    text-shadow: 0 0 16px rgba(42, 112, 197, 0.8), 0 0 30px rgba(42, 112, 197, 0.4); }
  100% {
    transform: translateX(0);
    opacity: 0.4;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3); } }
@keyframes connectorFlow {
  0% {
    left: -100%; }
  50% {
    left: 100%; }
  100% {
    left: 100%; } }
@keyframes arrowFlowLeft {
  0% {
    transform: translateX(0);
    opacity: 0.4;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3); }
  50% {
    transform: translateX(-8px);
    opacity: 1;
    text-shadow: 0 0 16px rgba(42, 112, 197, 0.8), 0 0 30px rgba(42, 112, 197, 0.4); }
  100% {
    transform: translateX(0);
    opacity: 0.4;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3); } }
  .about-page .partnership-section .partnership-footer {
    text-align: center;
    margin-top: 80px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px; }
    .about-page .partnership-section .partnership-footer .divider {
      margin: 0 12px;
      color: #2a70c5; }
  .about-page .partnership-section .gradient-defs {
    position: absolute;
    width: 0;
    height: 0; }
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@keyframes arrowPulse {
  0%, 100% {
    opacity: 0.6; }
  50% {
    opacity: 1; } }
@keyframes sphereGlowWhite {
  from {
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.4), 0 20px 60px rgba(0, 0, 0, 0.15); }
  to {
    box-shadow: 0 0 80px rgba(255, 255, 255, 0.5), 0 20px 60px rgba(0, 0, 0, 0.15); } }
@keyframes sphereGlow {
  from {
    box-shadow: 0 0 80px rgba(45, 212, 191, 0.6), 0 20px 60px rgba(0, 0, 0, 0.2); }
  to {
    box-shadow: 0 0 100px rgba(94, 234, 212, 0.8), 0 20px 60px rgba(0, 0, 0, 0.2); } }
@keyframes pulseExpand {
  0% {
    transform: scale(1);
    opacity: 1; }
  100% {
    transform: scale(1.8);
    opacity: 0; } }
.about-page .leadership-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
  position: relative;
  overflow: hidden; }
  .about-page .leadership-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 112, 197, 0.04) 0%, transparent 70%); }
  .about-page .leadership-section .leadership-header {
    text-align: center;
    margin-bottom: 60px; }
    .about-page .leadership-section .leadership-header .leadership-label {
      display: inline-block;
      font-size: 14px;
      font-weight: 500;
      color: #2a70c5;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 12px; }
    .about-page .leadership-section .leadership-header h2 {
      font-size: 36px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 16px; }
    .about-page .leadership-section .leadership-header .leadership-line {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #2a70c5, #07DFD4);
      margin: 0 auto;
      border-radius: 2px; }
  .about-page .leadership-section .leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 800px;
    margin: 0 auto; }
  .about-page .leadership-section .leader-card {
    text-align: center;
    position: relative; }
    .about-page .leadership-section .leader-card .leader-image-wrapper {
      position: relative;
      display: inline-block;
      margin-bottom: 28px; }
      .about-page .leadership-section .leader-card .leader-image-wrapper .leader-image {
        width: 220px;
        height: 280px;
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        z-index: 2;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        margin: 0 auto; }
        .about-page .leadership-section .leader-card .leader-image-wrapper .leader-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: top center;
          transition: transform 0.6s ease; }
      .about-page .leadership-section .leader-card .leader-image-wrapper .leader-glow {
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
        height: 20px;
        background: linear-gradient(90deg, #2a70c5, #07DFD4);
        border-radius: 50%;
        filter: blur(15px);
        opacity: 0.4;
        z-index: 1;
        transition: opacity 0.4s ease; }
    .about-page .leadership-section .leader-card:hover .leader-image img {
      transform: scale(1.05); }
    .about-page .leadership-section .leader-card:hover .leader-glow {
      opacity: 0.7; }
    .about-page .leadership-section .leader-card .leader-info .leader-title {
      display: inline-block;
      font-size: 13px;
      font-weight: 500;
      color: #ffffff;
      background: linear-gradient(135deg, #2a70c5, #07DFD4);
      padding: 4px 16px;
      border-radius: 20px;
      letter-spacing: 1px;
      margin-bottom: 12px; }
    .about-page .leadership-section .leader-card .leader-info .leader-name {
      font-size: 28px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 10px;
      letter-spacing: 2px; }
    .about-page .leadership-section .leader-card .leader-info .leader-divider {
      width: 30px;
      height: 2px;
      background: linear-gradient(90deg, #2a70c5, #07DFD4);
      margin: 0 auto 10px;
      border-radius: 1px; }
    .about-page .leadership-section .leader-card .leader-info .leader-en {
      font-size: 13px;
      color: #999;
      font-weight: 400;
      letter-spacing: 1px;
      text-transform: uppercase; }
.about-page .history-timeline {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }
  .about-page .history-timeline .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px; }
  .about-page .history-timeline .section-header {
    text-align: center;
    margin-bottom: 60px; }
    .about-page .history-timeline .section-header h2 {
      font-size: 36px;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 12px; }
    .about-page .history-timeline .section-header p {
      font-size: 16px;
      color: #95a5a6; }
  .about-page .history-timeline .timeline {
    position: relative; }
    .about-page .history-timeline .timeline::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, #2a70c5, rgba(42, 112, 197, 0.2)); }
    .about-page .history-timeline .timeline .timeline-item {
      position: relative;
      padding-left: 40px;
      padding-bottom: 48px; }
      .about-page .history-timeline .timeline .timeline-item:last-child {
        padding-bottom: 0; }
      .about-page .history-timeline .timeline .timeline-item .timeline-dot {
        position: absolute;
        left: -7px;
        top: 0;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: linear-gradient(135deg, #2a70c5, #2a70c5);
        box-shadow: 0 0 0 4px rgba(42, 112, 197, 0.15); }
      .about-page .history-timeline .timeline .timeline-item .timeline-card {
        position: relative;
        background: #ffffff;
        border: 1px solid rgba(42, 112, 197, 0.1);
        border-radius: 16px;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
        overflow: hidden; }
        .about-page .history-timeline .timeline .timeline-item .timeline-card:hover {
          transform: translateY(-4px);
          box-shadow: 0 12px 40px rgba(42, 112, 197, 0.1); }
          .about-page .history-timeline .timeline .timeline-item .timeline-card:hover .year {
            transform: scale(1.05); }
          .about-page .history-timeline .timeline .timeline-item .timeline-card:hover .timeline-photo img {
            transform: scale(1.05); }
        .about-page .history-timeline .timeline .timeline-item .timeline-card:not(.has-photo) .timeline-text {
          padding: 32px 32px 28px; }
        .about-page .history-timeline .timeline .timeline-item .timeline-card .timeline-photo {
          width: 100%;
          height: 220px;
          overflow: hidden;
          position: relative; }
          .about-page .history-timeline .timeline .timeline-item .timeline-card .timeline-photo::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(transparent, rgba(255, 255, 255, 0.6));
            pointer-events: none; }
          .about-page .history-timeline .timeline .timeline-item .timeline-card .timeline-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            transition: transform 0.5s ease; }
        .about-page .history-timeline .timeline .timeline-item .timeline-card .timeline-text {
          position: relative;
          padding: 28px 32px 28px; }
        .about-page .history-timeline .timeline .timeline-item .timeline-card .year {
          position: absolute;
          top: 16px;
          right: 20px;
          font-family: 'GFS Didot', serif;
          font-size: 48px;
          font-weight: 400;
          font-style: italic;
          color: transparent;
          background: linear-gradient(135deg, rgba(42, 112, 197, 0.2), rgba(42, 112, 197, 0.15));
          -webkit-background-clip: text;
          background-clip: text;
          line-height: 1;
          transition: transform 0.3s ease;
          letter-spacing: 2px; }
          .about-page .history-timeline .timeline .timeline-item .timeline-card .year::before {
            content: '';
            position: absolute;
            bottom: -4px;
            right: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #2a70c5); }
        .about-page .history-timeline .timeline .timeline-item .timeline-card h3 {
          font-size: 20px;
          font-weight: 700;
          color: #2c3e50;
          margin: 0 0 14px;
          padding-right: 100px; }
        .about-page .history-timeline .timeline .timeline-item .timeline-card p {
          font-size: 15px;
          line-height: 1.8;
          color: #95a5a6; }
          .about-page .history-timeline .timeline .timeline-item .timeline-card p strong {
            color: #2c3e50; }
        .about-page .history-timeline .timeline .timeline-item .timeline-card .milestone-list {
          margin-top: 20px;
          padding-top: 16px;
          border-top: 1px solid rgba(42, 112, 197, 0.1); }
          .about-page .history-timeline .timeline .timeline-item .timeline-card .milestone-list h4 {
            font-size: 14px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px; }
          .about-page .history-timeline .timeline .timeline-item .timeline-card .milestone-list ul {
            list-style: none;
            padding: 0; }
            .about-page .history-timeline .timeline .timeline-item .timeline-card .milestone-list ul li {
              font-size: 14px;
              color: #95a5a6;
              padding: 4px 0;
              padding-left: 16px;
              position: relative; }
              .about-page .history-timeline .timeline .timeline-item .timeline-card .milestone-list ul li::before {
                content: '';
                position: absolute;
                left: 0;
                top: 50%;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: #2a70c5;
                transform: translateY(-50%); }
.about-page .pulse-project {
  padding: 100px 0;
  background: #ffffff; }
  .about-page .pulse-project .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px; }
  .about-page .pulse-project .pulse-header {
    text-align: center;
    margin-bottom: 40px; }
    .about-page .pulse-project .pulse-header .pulse-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 50px;
      background: rgba(42, 112, 197, 0.1);
      color: #1d4c86;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 20px; }
      .about-page .pulse-project .pulse-header .pulse-badge svg {
        stroke: #21589b; }
    .about-page .pulse-project .pulse-header h2 {
      font-size: 36px;
      font-weight: 700;
      color: #2c3e50; }
  .about-page .pulse-project .pulse-content {
    position: relative; }
    .about-page .pulse-project .pulse-content .pulse-desc {
      font-size: 18px;
      line-height: 2;
      color: #95a5a6;
      margin-bottom: 60px;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      position: relative; }
      .about-page .pulse-project .pulse-content .pulse-desc::before, .about-page .pulse-project .pulse-content .pulse-desc::after {
        content: '"';
        font-size: 80px;
        font-family: Georgia, serif;
        color: rgba(42, 112, 197, 0.1);
        position: absolute;
        line-height: 1; }
      .about-page .pulse-project .pulse-content .pulse-desc::before {
        top: -20px;
        left: -20px; }
      .about-page .pulse-project .pulse-content .pulse-desc::after {
        content: '"';
        bottom: -40px;
        right: -20px; }
      .about-page .pulse-project .pulse-content .pulse-desc strong {
        color: #2c3e50; }
        .about-page .pulse-project .pulse-content .pulse-desc strong.highlight {
          background: linear-gradient(90deg, #2a70c5, #2a70c5);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          font-weight: 700; }
    .about-page .pulse-project .pulse-content .pulse-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px; }
      .about-page .pulse-project .pulse-content .pulse-cards .pulse-card {
        text-align: center;
        padding: 40px 28px;
        position: relative;
        background: transparent;
        transition: all 0.4s ease; }
        .about-page .pulse-project .pulse-content .pulse-cards .pulse-card::before {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 0;
          height: 3px;
          background: linear-gradient(90deg, #2a70c5, #2a70c5);
          transition: width 0.4s ease;
          border-radius: 2px; }
        .about-page .pulse-project .pulse-content .pulse-cards .pulse-card:hover {
          transform: translateY(-8px); }
          .about-page .pulse-project .pulse-content .pulse-cards .pulse-card:hover::before {
            width: 60px; }
          .about-page .pulse-project .pulse-content .pulse-cards .pulse-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg); }
        .about-page .pulse-project .pulse-content .pulse-cards .pulse-card:nth-child(2)::before {
          background: #2a70c5; }
        .about-page .pulse-project .pulse-content .pulse-cards .pulse-card .card-icon {
          width: 64px;
          height: 64px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 24px;
          transition: transform 0.4s ease; }
          .about-page .pulse-project .pulse-content .pulse-cards .pulse-card .card-icon.primary {
            background: linear-gradient(135deg, #2a70c5, #2a70c5);
            box-shadow: 0 10px 30px rgba(42, 112, 197, 0.3); }
            .about-page .pulse-project .pulse-content .pulse-cards .pulse-card .card-icon.primary svg {
              stroke: #ffffff; }
          .about-page .pulse-project .pulse-content .pulse-cards .pulse-card .card-icon.accent {
            background: #2a70c5;
            box-shadow: 0 10px 30px rgba(42, 112, 197, 0.3); }
            .about-page .pulse-project .pulse-content .pulse-cards .pulse-card .card-icon.accent svg {
              stroke: #ffffff; }
        .about-page .pulse-project .pulse-content .pulse-cards .pulse-card h4 {
          font-size: 20px;
          font-weight: 700;
          color: #2c3e50;
          margin-bottom: 12px; }
        .about-page .pulse-project .pulse-content .pulse-cards .pulse-card p {
          font-size: 15px;
          color: #95a5a6;
          line-height: 1.7; }
    .about-page .pulse-project .pulse-content .pulse-cards-v2 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px; }
      .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2 {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 4/5;
        cursor: pointer; }
        .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2:hover .card-image img {
          transform: scale(1.1); }
        .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2:hover .card-overlay {
          opacity: 0.7; }
        .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2:hover .card-content {
          transform: translateY(0); }
        .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2:hover .card-number {
          opacity: 1;
          transform: translateY(0); }
        .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2 .card-image {
          position: absolute;
          inset: 0; }
          .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2 .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease; }
          .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2 .card-image .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(10, 37, 64, 0.4) 40%, rgba(10, 37, 64, 0.95) 100%);
            transition: opacity 0.4s ease; }
        .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2 .card-content {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          padding: 32px 28px;
          transform: translateY(10px);
          transition: transform 0.4s ease; }
          .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2 .card-content h4 {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px; }
          .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2 .card-content p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6; }
        .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2 .card-number {
          position: absolute;
          top: 20px;
          right: 24px;
          font-family: 'Playfair Display', serif;
          font-size: 56px;
          font-weight: 700;
          font-style: italic;
          color: rgba(255, 255, 255, 0.15);
          line-height: 1;
          opacity: 0.6;
          transform: translateY(-10px);
          transition: all 0.4s ease; }
        .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2:nth-child(1) .card-number {
          color: rgba(42, 112, 197, 0.3); }
        .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2:nth-child(2) .card-number {
          color: rgba(42, 112, 197, 0.3); }
        .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2:nth-child(3) .card-number {
          color: rgba(42, 112, 197, 0.3); }
.about-page .vision-section {
  padding: 100px 0;
  background: #2c3e50; }
  .about-page .vision-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px; }
  .about-page .vision-section .vision-content {
    text-align: center; }
    .about-page .vision-section .vision-content h2 {
      font-size: 36px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 32px; }
    .about-page .vision-section .vision-content p {
      font-size: 18px;
      line-height: 1.9;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 40px; }
      .about-page .vision-section .vision-content p strong {
        color: #ffffff; }
        .about-page .vision-section .vision-content p strong.highlight {
          color: #2a70c5; }
    .about-page .vision-section .vision-content .vision-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 36px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      color: #ffffff;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease; }
      .about-page .vision-section .vision-content .vision-cta:hover {
        background: #ffffff;
        color: #2c3e50;
        border-color: #ffffff; }
        .about-page .vision-section .vision-content .vision-cta:hover svg {
          transform: translateX(4px); }
      .about-page .vision-section .vision-content .vision-cta svg {
        transition: transform 0.3s ease; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@keyframes float {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-30px); } }
@media (max-width: 768px) {
  .about-page .about-hero {
    min-height: 50vh; }
    .about-page .about-hero .about-hero-content {
      padding: 100px 16px 60px; }
      .about-page .about-hero .about-hero-content .hero-en-name {
        font-size: 14px; }
  .about-page .company-intro {
    padding: 60px 0; }
    .about-page .company-intro .intro-content p {
      font-size: 16px; }
    .about-page .company-intro .partnership-diagram {
      padding: 32px 20px; }
      .about-page .company-intro .partnership-diagram .diagram-visual {
        flex-direction: column;
        gap: 32px; }
        .about-page .company-intro .partnership-diagram .diagram-visual .partner .partner-tags {
          flex-direction: row;
          flex-wrap: wrap;
          justify-content: center; }
        .about-page .company-intro .partnership-diagram .diagram-visual .center-logo {
          order: -1; }
          .about-page .company-intro .partnership-diagram .diagram-visual .center-logo .orbital-ring.ring-1 {
            width: 160px;
            height: 160px; }
          .about-page .company-intro .partnership-diagram .diagram-visual .center-logo .orbital-ring.ring-2 {
            width: 190px;
            height: 190px; }
          .about-page .company-intro .partnership-diagram .diagram-visual .center-logo .logo-sphere {
            width: 110px;
            height: 110px; }
  .about-page .leadership-section {
    padding: 60px 0 50px; }
    .about-page .leadership-section .leadership-header h2 {
      font-size: 28px; }
    .about-page .leadership-section .leadership-grid {
      gap: 30px;
      max-width: 600px; }
    .about-page .leadership-section .leader-card .leader-image-wrapper .leader-image {
      width: 180px;
      height: 230px; }
    .about-page .leadership-section .leader-card .leader-info .leader-name {
      font-size: 24px; }
  .about-page .history-timeline {
    padding: 60px 0; }
    .about-page .history-timeline .section-header h2 {
      font-size: 28px; }
    .about-page .history-timeline .timeline .timeline-item {
      padding-left: 28px; }
      .about-page .history-timeline .timeline .timeline-item .timeline-card .timeline-photo {
        height: 160px; }
      .about-page .history-timeline .timeline .timeline-item .timeline-card .timeline-text {
        padding: 20px; }
      .about-page .history-timeline .timeline .timeline-item .timeline-card:not(.has-photo) .timeline-text {
        padding: 20px; }
      .about-page .history-timeline .timeline .timeline-item .timeline-card h3 {
        font-size: 18px;
        padding-right: 80px; }
      .about-page .history-timeline .timeline .timeline-item .timeline-card .year {
        font-size: 36px;
        top: 12px;
        right: 14px; }
  .about-page .pulse-project {
    padding: 60px 0; }
    .about-page .pulse-project .pulse-header h2 {
      font-size: 28px; }
    .about-page .pulse-project .pulse-content {
      padding: 32px 20px; }
      .about-page .pulse-project .pulse-content .pulse-cards {
        grid-template-columns: 1fr;
        gap: 16px; }
      .about-page .pulse-project .pulse-content .pulse-cards-v2 {
        grid-template-columns: 1fr;
        gap: 16px; }
        .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2 {
          aspect-ratio: 3/4; }
          .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2 .card-content {
            padding: 24px 20px; }
            .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2 .card-content h4 {
              font-size: 20px; }
          .about-page .pulse-project .pulse-content .pulse-cards-v2 .pulse-card-v2 .card-number {
            font-size: 40px; }
  .about-page .vision-section {
    padding: 60px 0; }
    .about-page .vision-section .vision-content h2 {
      font-size: 28px; }
    .about-page .vision-section .vision-content p {
      font-size: 16px; } }
.contact-page .contact-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fc 100%);
  overflow: hidden; }
  .contact-page .contact-hero .contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none; }
    .contact-page .contact-hero .contact-hero-bg .hero-shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.1; }
      .contact-page .contact-hero .contact-hero-bg .hero-shape.shape-1 {
        width: 400px;
        height: 400px;
        background: #2a70c5;
        top: -100px;
        right: -100px; }
      .contact-page .contact-hero .contact-hero-bg .hero-shape.shape-2 {
        width: 300px;
        height: 300px;
        background: #48c9b0;
        bottom: -50px;
        left: -50px; }
      .contact-page .contact-hero .contact-hero-bg .hero-shape.shape-3 {
        width: 200px;
        height: 200px;
        background: #2a70c5;
        top: 50%;
        left: 60%;
        opacity: 0.05; }
  .contact-page .contact-hero .contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 2; }
    .contact-page .contact-hero .contact-hero-content .contact-label {
      display: inline-block;
      font-family: "Playfair Display", serif;
      font-size: 14px;
      font-style: italic;
      color: #2a70c5;
      text-transform: uppercase;
      letter-spacing: 4px;
      margin-bottom: 16px; }
    .contact-page .contact-hero .contact-hero-content h1 {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 16px;
      letter-spacing: 4px; }
    .contact-page .contact-hero .contact-hero-content p {
      font-size: 18px;
      color: #7f8c8d;
      max-width: 500px;
      margin: 0 auto; }
.contact-page .contact-main {
  padding: 80px 0 120px;
  background: #ffffff; }
.contact-page .contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px; }
  @media (max-width: 992px) {
    .contact-page .contact-grid {
      gap: 40px; } }
.contact-page .contact-info-side {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  width: 100%; }
  @media (max-width: 768px) {
    .contact-page .contact-info-side {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      padding: 0 20px; } }
.contact-page .contact-form-side {
  width: 100%;
  max-width: 700px; }
.contact-page .contact-info-side .info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  margin-bottom: 8px;
  transition: all 0.3s ease; }
  .contact-page .contact-info-side .info-card:hover .info-icon {
    transform: scale(1.1); }
  .contact-page .contact-info-side .info-card .info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2a70c5 0%, #48c9b0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease; }
    .contact-page .contact-info-side .info-card .info-icon svg {
      color: #ffffff; }
  .contact-page .contact-info-side .info-card .info-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px; }
  .contact-page .contact-info-side .info-card .info-content p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.5; }
.contact-page .contact-info-side .info-decoration {
  margin-top: 40px;
  text-align: center;
  position: relative; }
  .contact-page .contact-info-side .info-decoration .deco-img {
    max-width: 160px;
    animation: floatRotate 8s ease-in-out infinite; }
@keyframes floatRotate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5; }
  25% {
    opacity: 0.7; }
  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 0.6; }
  75% {
    opacity: 0.7; }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.5; } }
.contact-page .contact-form-side .form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(42, 112, 197, 0.06); }
  .contact-page .contact-form-side .form-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px; }
  .contact-page .contact-form-side .form-card .form-subtitle {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 32px; }
.contact-page .contact-form-elegant .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px; }
  @media (max-width: 600px) {
    .contact-page .contact-form-elegant .form-row {
      grid-template-columns: 1fr; } }
.contact-page .contact-form-elegant .form-group {
  margin-bottom: 20px;
  position: relative; }
  .contact-page .contact-form-elegant .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px; }
    .contact-page .contact-form-elegant .form-group label .required {
      color: #2a70c5; }
  .contact-page .contact-form-elegant .form-group input, .contact-page .contact-form-elegant .form-group select, .contact-page .contact-form-elegant .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    color: #2c3e50;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1; }
    .contact-page .contact-form-elegant .form-group input::placeholder, .contact-page .contact-form-elegant .form-group select::placeholder, .contact-page .contact-form-elegant .form-group textarea::placeholder {
      color: #bdc3c7; }
    .contact-page .contact-form-elegant .form-group input:focus, .contact-page .contact-form-elegant .form-group select:focus, .contact-page .contact-form-elegant .form-group textarea:focus {
      outline: none;
      background: #ffffff;
      border-color: #2a70c5;
      box-shadow: 0 0 0 4px rgba(42, 112, 197, 0.1);
      z-index: 2; }
  .contact-page .contact-form-elegant .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237f8c8d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center; }
    @media (max-width: 768px) {
      .contact-page .contact-form-elegant .form-group select {
        appearance: auto;
        background-image: none; } }
  .contact-page .contact-form-elegant .form-group textarea {
    resize: vertical;
    min-height: 120px; }
.contact-page .contact-form-elegant .form-submit {
  margin-top: 32px; }
.contact-page .contact-form-elegant .btn-submit-elegant {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #2a70c5 0%, #48c9b0 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(42, 112, 197, 0.3); }
  .contact-page .contact-form-elegant .btn-submit-elegant svg {
    transition: transform 0.3s ease; }
  .contact-page .contact-form-elegant .btn-submit-elegant:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(42, 112, 197, 0.4); }
    .contact-page .contact-form-elegant .btn-submit-elegant:hover svg {
      transform: translateX(5px) rotate(-10deg); }
@media (max-width: 768px) {
  .contact-page .contact-hero {
    padding: 100px 0 60px; }
    .contact-page .contact-hero .contact-hero-content h1 {
      font-size: 2rem; }
  .contact-page .contact-main {
    padding: 60px 0 80px; }
  .contact-page .contact-form-side .form-card {
    padding: 32px 24px; } }

/*# sourceMappingURL=style.css.map */
