@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Playfair+Display:wght@400;600;700&display=swap");
* {
  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; }

.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: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease; }
  .main-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px; }
  .main-header .logo img {
    height: 50px;
    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: 100; }
    .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: 28px 36px;
      display: flex;
      gap: 40px;
      min-width: 480px;
      transform-origin: top left; }
    .main-header .main-nav .nav-dropdown .dropdown-category h4 {
      font-size: 15px;
      font-weight: 700;
      color: #153051;
      margin-bottom: 6px;
      letter-spacing: 0.02em; }
    .main-header .main-nav .nav-dropdown .dropdown-category .category-desc {
      font-size: 12px;
      color: #7f8c8d;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(189, 195, 199, 0.3); }
    .main-header .main-nav .nav-dropdown .dropdown-category ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
      list-style: none; }
    .main-header .main-nav .nav-dropdown .dropdown-category li a {
      font-size: 14px;
      color: #2c3e50;
      text-decoration: none;
      display: block;
      padding: 8px 12px;
      border-radius: 8px;
      transition: all 0.2s ease;
      position: relative; }
      .main-header .main-nav .nav-dropdown .dropdown-category 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: 18px; }
    .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 {
  background: #ffffff; }
  .about .about-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden; }
  .about .about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1; }
    .about .about-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0.9) 60%, rgba(255, 255, 255, 0.95) 100%); }
    .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: flex-end;
    text-align: right; }
  .about .about-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #2a70c5;
    margin-bottom: 30px;
    letter-spacing: 2px; }
  .about .about-intro {
    max-width: 650px;
    font-size: 15px;
    color: #2c3e50;
    line-height: 2;
    margin-bottom: 30px; }
  .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); }

.news {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%); }
  .news .news-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px; }
  .news .news-sidebar {
    position: relative;
    background-image: url("/../public/images/news-bg.png");
    background-position: 20%;
    background-size: cover;
    padding: 10%;
    border-radius: 6px; }
    .news .news-sidebar .news-sidebar-graphic {
      position: relative;
      margin-bottom: 30px; }
      .news .news-sidebar .news-sidebar-graphic img {
        width: 100%;
        height: auto;
        opacity: 0.6; }
    .news .news-sidebar .news-title-en {
      display: block;
      font-size: 16px;
      color: #7f8c8d;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 12px; }
    .news .news-sidebar .news-title {
      font-size: 32px;
      font-weight: 700;
      color: #153051; }
  .news .news-main {
    display: flex;
    flex-direction: column; }
  .news .news-list {
    display: flex;
    flex-direction: column;
    gap: 24px; }
  .news .news-item {
    display: grid;
    grid-template-columns: 280px 1fr auto 80px;
    gap: 30px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease; }
    .news .news-item:last-child {
      border-bottom: none; }
    .news .news-item:hover .news-thumb img {
      transform: scale(1.05); }
    .news .news-item:hover .news-more {
      background: linear-gradient(135deg, #2a70c5 0%, #07DFD4 100%);
      color: #ffffff;
      border-color: transparent; }
  .news .news-thumb {
    width: 280px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); }
    .news .news-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease; }
  .news .news-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dce4ed 0%, #c5d0dc 100%); }
  .news .news-content .news-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #2a70c5;
    margin-bottom: 8px; }
  .news .news-content .news-headline {
    font-size: 17px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.5;
    margin-bottom: 8px; }
  .news .news-content .news-excerpt {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6; }
  .news .news-more {
    padding: 10px 28px;
    background: transparent;
    border: 1.5px solid #2a70c5;
    color: #2a70c5;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap; }
  .news .news-date {
    text-align: right; }
    .news .news-date .year {
      display: block;
      font-size: 13px;
      color: #7f8c8d;
      margin-bottom: 2px; }
    .news .news-date .day {
      display: block;
      font-size: 22px;
      font-weight: 700;
      color: #2a70c5;
      line-height: 1.2; }
  .news .news-empty {
    padding: 60px 40px;
    text-align: center;
    color: #7f8c8d;
    font-size: 16px; }

.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%); }
  .governance .governance-content {
    max-width: 1100px;
    margin: 0 auto; }
  .governance .governance-header {
    text-align: center;
    margin-bottom: 60px; }
  .governance .governance-title {
    font-size: 44px;
    font-weight: 700;
    color: #2a70c5;
    margin-bottom: 24px;
    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: 40px 30px 35px;
    text-align: left;
    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;
    cursor: pointer; }
    .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: left;
      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: 64px;
      height: 64px;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(55, 119, 197, 0.1) 0%, rgba(7, 223, 212, 0.1) 100%);
      border-radius: 16px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
      .governance .governance-card .card-icon svg {
        width: 32px;
        height: 32px;
        stroke: #2a70c5;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
    .governance .governance-card .card-arrow {
      position: absolute;
      top: 30px;
      right: 30px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f5f5f5;
      border-radius: 50%;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
      .governance .governance-card .card-arrow svg {
        width: 18px;
        height: 18px;
        stroke: #999;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
    .governance .governance-card h3 {
      font-size: 22px;
      font-weight: 700;
      color: #333;
      margin-bottom: 12px;
      transition: color 0.3s ease; }
    .governance .governance-card p {
      font-size: 14px;
      color: #666;
      line-height: 1.7; }
    .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 {
        background: linear-gradient(135deg, #2a70c5 0%, #07DFD4 100%);
        transform: scale(1.1); }
        .governance .governance-card:hover .card-icon svg {
          stroke: #ffffff; }
      .governance .governance-card:hover .card-arrow {
        background: linear-gradient(135deg, #2a70c5 0%, #07DFD4 100%);
        transform: rotate(45deg); }
        .governance .governance-card:hover .card-arrow svg {
          stroke: #ffffff; }
      .governance .governance-card:hover h3 {
        color: #2a70c5; }
    .governance .governance-card:nth-child(1) .card-icon {
      background: linear-gradient(135deg, rgba(55, 119, 197, 0.15) 0%, rgba(55, 119, 197, 0.05) 100%); }
    .governance .governance-card:nth-child(1):hover .card-icon {
      background: linear-gradient(135deg, #2a70c5 0%, #4985cf 100%); }
    .governance .governance-card:nth-child(2) .card-icon {
      background: linear-gradient(135deg, rgba(7, 223, 212, 0.15) 0%, rgba(7, 223, 212, 0.05) 100%); }
      .governance .governance-card:nth-child(2) .card-icon svg {
        stroke: #2a70c5; }
    .governance .governance-card:nth-child(2):hover .card-icon {
      background: linear-gradient(135deg, #07DFD4 0%, #6eeef0 100%); }
      .governance .governance-card:nth-child(2):hover .card-icon svg {
        stroke: #ffffff; }
    .governance .governance-card:nth-child(3) .card-icon {
      background: linear-gradient(135deg, rgba(138, 100, 210, 0.15) 0%, rgba(138, 100, 210, 0.05) 100%); }
      .governance .governance-card:nth-child(3) .card-icon svg {
        stroke: #8a64d2; }
    .governance .governance-card:nth-child(3):hover .card-icon {
      background: linear-gradient(135deg, #8a64d2 0%, #b794f6 100%); }
      .governance .governance-card:nth-child(3):hover .card-icon svg {
        stroke: #ffffff; }
  .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 {
  padding: 100px 0px 0px 0px;
  background: #ffffff; }
  .challenges .challenges-header {
    text-align: center;
    margin-bottom: 60px; }
  .challenges .challenges-label {
    display: inline-block;
    font-size: 14px;
    color: #2a70c5;
    font-weight: 500;
    margin-bottom: 16px; }
  .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-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; } }
.services-page {
  padding-top: 80px;
  min-height: 100vh;
  background: #f8fafc; }

.service-hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 3vh; }
  .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.2;
    margin-bottom: 16px;
    letter-spacing: 3px; }
  .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; }

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  position: relative; }

.services-sidebar {
  position: relative; }
  .services-sidebar .sidebar-sticky {
    position: sticky;
    top: 100px; }
  .services-sidebar .sidebar-illustration {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(232, 244, 252, 0.6) 0%, rgba(232, 244, 252, 0) 100%);
    border-radius: 20px; }
    .services-sidebar .sidebar-illustration img {
      width: 100%;
      height: auto; }
  .services-sidebar .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .services-sidebar .sidebar-link {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 12px;
    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: 18px;
      font-weight: 700;
      color: #2a70c5;
      margin-bottom: 8px;
      display: block; }
    .services-sidebar .sidebar-link .link-subitems {
      list-style: none;
      margin: 0;
      padding: 0; }
      .services-sidebar .sidebar-link .link-subitems li {
        font-size: 14px;
        color: #7f8c8d;
        line-height: 2; }
    .services-sidebar .sidebar-link .link-arrow {
      color: #2a70c5;
      opacity: 0.5;
      transform: translateX(-5px);
      transition: all 0.3s ease;
      flex-shrink: 0;
      margin-top: 4px; }

.services-content {
  max-width: 900px; }
  .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: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03); }
    .services-content .content-section .section-inner {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: start; }
    .services-content .content-section .section-title {
      font-size: 22px;
      font-weight: 700;
      color: #2a70c5;
      line-height: 1.5; }
    .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 img {
      max-width: 100%;
      border-radius: 12px; }
    .services-content .content-section .module-cards {
      display: flex;
      gap: 16px; }
      .services-content .content-section .module-cards.has-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px; }
      .services-content .content-section .module-cards .module-card {
        background: #ffffff;
        border: 1px solid rgba(189, 195, 199, 0.3);
        border-radius: 10px;
        padding: 16px;
        text-align: center;
        transition: all 0.3s ease; }
        .services-content .content-section .module-cards .module-card:hover {
          border-color: #2a70c5;
          box-shadow: 0 8px 25px rgba(42, 112, 197, 0.1); }
        .services-content .content-section .module-cards .module-card.with-image {
          padding: 0;
          overflow: hidden;
          text-align: left; }
          .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.3s 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: 16px; }
        .services-content .content-section .module-cards .module-card .card-name {
          display: block;
          font-size: 18px;
          font-weight: 600;
          color: #2a70c5;
          margin-bottom: 6px; }
        .services-content .content-section .module-cards .module-card .card-desc {
          font-size: 13px;
          color: #7f8c8d;
          line-height: 1.6; }
      @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-container {
      display: flex;
      flex-direction: column;
      gap: 0; }
    .services-content .content-section .section-steps .step-item {
      display: flex;
      align-items: flex-start;
      gap: 24px;
      position: relative;
      padding-bottom: 32px; }
      .services-content .content-section .section-steps .step-item:last-child {
        padding-bottom: 0; }
    .services-content .content-section .section-steps .step-number {
      width: 56px;
      height: 56px;
      flex-shrink: 0;
      background: linear-gradient(135deg, #2a70c5 0%, #07DFD4 100%);
      color: #ffffff;
      font-size: 20px;
      font-weight: 700;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
      box-shadow: 0 8px 24px rgba(42, 112, 197, 0.3); }
    .services-content .content-section .section-steps .step-content {
      flex: 1;
      padding-top: 8px; }
    .services-content .content-section .section-steps .step-title {
      font-size: 18px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 6px; }
    .services-content .content-section .section-steps .step-subtitle {
      font-size: 15px;
      font-weight: 500;
      color: #2a70c5;
      margin-bottom: 12px; }
    .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: 20px;
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.7;
        color: #7f8c8d; }
        .services-content .content-section .section-steps .step-list li::before {
          content: '';
          position: absolute;
          left: 0;
          top: 8px;
          width: 6px;
          height: 6px;
          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; }
    .services-content .content-section .section-steps .step-desc {
      font-size: 14px;
      line-height: 1.8;
      color: #7f8c8d;
      margin-top: 12px; }
    .services-content .content-section .section-steps .step-connector {
      position: absolute;
      left: 27px;
      top: 56px;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, #07DFD4 0%, rgba(7, 223, 212, 0.1) 100%); }
    .services-content .content-section .section-icon-blocks .icon-blocks-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px; }
      @media (max-width: 768px) {
        .services-content .content-section .section-icon-blocks .icon-blocks-grid {
          grid-template-columns: 1fr; } }
    .services-content .content-section .section-icon-blocks .icon-block {
      background: #ffffff;
      border: 1px solid rgba(189, 195, 199, 0.2);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s ease; }
      .services-content .content-section .section-icon-blocks .icon-block:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(42, 112, 197, 0.1);
        border-color: rgba(42, 112, 197, 0.2); }
    .services-content .content-section .section-icon-blocks .icon-block-icon {
      font-size: 48px;
      margin-bottom: 16px;
      line-height: 1;
      max-width: 40px;
      margin: auto; }
    .services-content .content-section .section-icon-blocks .icon-block-title {
      font-size: 16px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 10px; }
    .services-content .content-section .section-icon-blocks .icon-block-desc {
      font-size: 14px;
      line-height: 1.7;
      color: #7f8c8d; }
  .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 {
    columns: 3;
    column-gap: 24px; }
    @media (max-width: 992px) {
      .news-page .news-masonry {
        columns: 2; } }
  .news-page .news-card {
    break-inside: avoid;
    margin-bottom: 24px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease; }
    .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-large .news-card-image {
      height: 280px; }
    .news-page .news-card.news-card-large .news-card-title {
      font-size: 22px; }
    .news-page .news-card.news-card-medium .news-card-image {
      height: 180px; }
    .news-page .news-card.news-card-small .news-card-image {
      height: 120px; }
    .news-page .news-card.news-card-small .news-card-content {
      padding: 16px; }
    .news-page .news-card.news-card-small .news-card-title {
      font-size: 15px; }
  .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: 800px; }
  .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;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto; }
    .main-header .main-nav.active {
      display: block; }
    .main-header .main-nav ul {
      flex-direction: column;
      gap: 8px;
      align-items: stretch; }
    .main-header .main-nav li a {
      display: block;
      padding: 14px 16px;
      font-size: 16px;
      border-radius: 10px;
      transition: background 0.2s; }
      .main-header .main-nav li a:hover {
        background: rgba(42, 112, 197, 0.06); }
    .main-header .main-nav .has-dropdown .nav-link {
      justify-content: space-between; }
      .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;
      display: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      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-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 ul {
          gap: 2px;
          padding: 0 8px; }
        .main-header .main-nav .has-dropdown .nav-dropdown .dropdown-category li a {
          padding: 10px 14px;
          font-size: 14px;
          color: #7f8c8d; }
          .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 {
        padding: 0 8px; }
      .main-header .main-nav .has-dropdown .nav-dropdown.nav-dropdown-simple .dropdown-links li a {
        padding: 10px 14px;
        font-size: 14px; }
    .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; }
  .main-header .mobile-menu-btn {
    display: flex; }
    .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 {
      padding: 100px 20px 60px; }
    .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; }
    .hero .carousel-dots {
      bottom: 30px; }

  .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; }

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

  .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-bottom: 40px; }
    .services-page .content-section .section-title {
      font-size: 22px; }
  .services-page .steps-container {
    gap: 20px; }
  .services-page .step-item {
    flex-direction: column;
    gap: 12px; }
    .services-page .step-item .step-number {
      width: 40px;
      height: 40px;
      font-size: 16px; }
    .services-page .step-item .step-content .step-title {
      font-size: 16px; }
    .services-page .step-item .step-content .step-subtitle {
      font-size: 13px; }
    .services-page .step-item .step-connector {
      display: none; }
  .services-page .icon-blocks-grid {
    grid-template-columns: repeat(2, 1fr);
    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(2, 1fr);
    gap: 12px; }
    .services-page .module-cards.has-images {
      grid-template-columns: 1fr; }
  .services-page .module-card {
    padding: 16px; }
    .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 .icon-blocks-grid {
    grid-template-columns: 1fr; }
  .services-page .module-cards {
    grid-template-columns: 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; } }

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