﻿/* --- Global Reset & Variables --- */
:root {
  --primary-color: #ff8c00;
  --text-dark: #333;
  --text-gray: #666;
  --bg-gray: #f9f9f9;
  --white: #fff;
  --border-color: #eee;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

/* Override header style for this page to have a white background */
.aboutus-new-layout #app-header .header-main {
  background-color: #fff !important;
  border-bottom: 1px solid #eee;
}
.aboutus-new-layout #app-header .nav-item a {
  color: #333 !important;
}
.aboutus-new-layout #app-header .nav-item.active a {
  color: var(--primary-color) !important;
}

/* --- Hero Banner --- */
.au2-hero {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.au2-hero-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.au2-hero-content {
  position: relative;
  z-index: 2;
}

.au2-hero-content h1 {
  font-size: 50px;
  font-weight: bold;
  margin: 0 0 10px;
  letter-spacing: 2px;
}

.au2-hero-content h2 {
  font-size: 20px;
  font-weight: 300;
  margin: 0;
  letter-spacing: 5px;
}

/* --- Common Section --- */
.au2-section {
  padding: 70px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.au2-bg-white {
  background-color: var(--white);
}

.au2-bg-gray {
  background-color: #f7f8fa;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.au2-bg-gray > .au2-sec-title,
.au2-bg-gray > .au2-sec-sub,
.au2-bg-gray > .au2-services-grid,
.au2-bg-gray > .au2-cases-table,
.au2-bg-gray > .au2-btn-wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.au2-sec-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #111;
  margin-bottom: 25px;
}

.au2-title-underline {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 40px; /* 增加底部边距以匹配设计图 */
}

.au2-title-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; /* 缩短下划线宽度 */
  height: 3px; /* 稍微调细下划线 */
  background-color: var(--primary-color); /* 改为主题色橙色 */
  border-radius: 2px;
}

.au2-sec-sub {
  text-align: center;
  color: #666;
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* --- Brand Intro --- */
.au2-intro-wrap {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}

.au2-intro-left {
  flex: 1;
}

.au2-intro-left h3 {
  font-size: 20px;
  margin-bottom: 25px;
  line-height: 1.5;
  font-weight: bold;
  color: #333;
}

.highlight {
  color: var(--primary-color);
}

.au2-intro-left p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 14px;
  text-align: justify;
}

.au2-intro-right {
  flex: 0 0 400px;
}

.au2-portrait {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.au2-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

/* Stats */
.au2-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-top: 30px;
  padding: 0 40px;
}

.au2-stat-item .num {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.au2-stat-item .lbl {
  color: #666;
  font-size: 15px;
}

/* --- Brand Vision --- */
.au2-vision-box {
  position: relative;
  background: #fff;
  padding: 40px 50px 40px 60px;
  border-radius: 0;
  box-shadow: 3px 3px 12px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 0 auto;
  border: none;
}

.au2-vision-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 33.33%; /* 上三分之一 */
  background-color: var(--primary-color);
}

.au2-vision-border {
  display: none;
}

.au2-vision-content {
  position: relative;
  z-index: 2;
}

.au2-vision-content h4 {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 500;
  color: #111;
  text-align: left;
}

.au2-vision-content p {
  color: #666;
  line-height: 1.9;
  font-size: 14px;
  margin: 0;
  text-align: left;
}

.au2-vision-content .highlight-text {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.9;
}

.au2-vision-content .gray-text {
  color: #aaa;
  font-size: 13px;
}

.au2-vision-watermark {
  position: absolute;
  bottom: 20px;
  right: 35px;
  display: flex;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}

.au2-vision-watermark .watermark-arrow {
  font-size: 18px;
  color: #e5e7eb;
  margin-right: 6px;
  font-family: Arial, sans-serif;
  letter-spacing: -2px;
  transform: translateY(2px);
}

.au2-vision-watermark .watermark-number {
  font-size: 55px;
  font-weight: bold;
  color: #e5e7eb;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
}

/* --- Core Services --- */
.au2-new-services {
  border-top: none;
  background-color: #f7f8fa !important;
  padding-top: 70px;
  text-align: center; /* 确保服务内容区域的标题和副标题居中 */
}

.au2-new-services .au2-sec-title,
.au2-new-services .au2-sec-sub {
  text-align: center;
}

.au2-services-grid.new-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.au2-srv-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid #eee;
  text-align: left;
}

.au2-srv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border-color: #ffe0b2;
}

.srv-icon-tag {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  transition: border-color 0.3s ease;
}

.au2-srv-card:hover .srv-icon-tag {
  border-color: var(--primary-color);
}

.srv-icon-tag svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  fill: var(--primary-color);
}

.au2-srv-card h4 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #333;
}

.au2-srv-card p {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 60px;
  position: relative;
  z-index: 1;
}

.au2-srv-card .srv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.au2-srv-card .srv-list li {
  color: #666;
  font-size: 13px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 0;
}

.au2-srv-card .srv-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.au2-srv-card .srv-list li .checkmark {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--primary-color);
  fill: var(--primary-color);
}

/* --- Core Advantages --- */
.au2-new-adv {
  background-color: #fff;
  padding: 70px 0;
  max-width: 100%;
}

.au2-adv-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: #fafafa;
  border: 1px solid #ff8c00;
  padding: 45px 50px;
  border-radius: 4px;
  position: relative;
}

.au2-adv-wrapper-new {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.au2-adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 50px;
}

.au2-adv-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.au2-adv-item-new {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.adv-circle {
  width: 28px;
  height: 28px;
  background: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.adv-icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.15);
}

.adv-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  fill: var(--primary-color);
}

.adv-content h4 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.adv-content p {
  color: #666;
  line-height: 1.6;
  font-size: 13px;
  margin: 0;
}

/* --- Service Targets (Platform Logos) --- */
.au2-service-targets {
  padding: 70px 20px 100px;
  background: #fff;
}

.service-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
  margin: 40px auto 0;
  max-width: 900px;
}

.service-banner h3 {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 20px 0;
}

.service-banner p {
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 30px 0;
}

.platform-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.platform-tag:hover {
  background: rgba(255, 140, 0, 0.2);
  border-color: var(--primary-color);
}

.platform-logos-scattered {
  position: relative;
  max-width: 900px;
  margin: 0 auto 0;
  height: 280px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.platform-logo-item {
  position: absolute;
  width: 90px;
  height: 90px;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.platform-logo-item:hover {
  transform: translateY(-8px) scale(1.05);
}

/* --- Target Platforms --- */
.au2-new-targets {
  position: relative;
  width: 100%;
  padding: 80px 0 160px; /* space for floating logos */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e2023;
  overflow: visible;
}

.targets-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.15;
}

.au2-targets-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.au2-targets-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
}

.au2-targets-content p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 35px;
  line-height: 1.6;
}

.targets-logos-new {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pl-tag-new {
  background: rgba(255,255,255,0.08);
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 14px;
  color: #ddd;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}

.pl-tag-new:hover {
  background: rgba(255,140,0,0.2);
  border-color: var(--primary-color);
  color: #fff;
}

/* Floating Logos */
.au2-floating-logos {
  position: relative;
  max-width: 1000px;
  margin: -100px auto 60px;
  height: 250px;
  z-index: 5;
}
.au2-float-logo-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.f-logo {
  position: absolute;
  width: 80px; height: 80px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: transform 0.3s;
}
.f-logo:hover {
  transform: translateY(-5px);
}
.f-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* --- Lawfirms --- */
.au2-lawfirms {
  padding: 80px 20px;
  background: #fff;
}

.lawfirm-swiper-container {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
}

.lawfirm-swiper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.lawfirm-swiper .swiper-slide {
  height: auto;
}

.lawfirm-logo-item {
  background: #fff;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.lawfirm-logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 140, 0, 0.15);
  border-color: rgba(255, 140, 0, 0.3);
}

.lawfirm-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

/* 自定义Swiper箭头 */
.lawfirm-swiper-prev,
.lawfirm-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lawfirm-swiper-prev:hover,
.lawfirm-swiper-next:hover {
  opacity: 0.6;
}

/* 隐藏Swiper默认箭头 */
.lawfirm-swiper-prev::after,
.lawfirm-swiper-next::after {
  display: none;
}

.lawfirm-swiper-prev svg,
.lawfirm-swiper-next svg {
  width: 30px;
  height: 30px;
  display: block;
}

.lawfirm-swiper-prev { 
  left: 10px;
}

.lawfirm-swiper-next { 
  right: 10px;
}

.lawfirm-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  background: #fafafa;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: left;
}

.lawfirm-names {
  color: var(--primary-color);
  font-weight: 500;
}

/* --- Success Cases Table --- */
.new-table-style {
  padding: 0;
  box-shadow: none;
  background: #fff;
}

.new-table-style table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.new-table-style th {
  background: #111;
  color: #fff;
  padding: 16px 20px;
  text-align: center;
  font-weight: normal;
  font-size: 14px;
}

.new-table-style td {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  color: #333;
  text-align: center;
  font-size: 14px;
}

.new-table-style tbody tr:hover {
  background-color: #fafafa;
}

.status-orange {
  color: var(--primary-color) !important;
  font-weight: bold;
}

.au2-btn-solid-orange {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 35px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.3s;
  border: none;
}

.au2-btn-solid-orange:hover {
  opacity: 0.9;
  color: var(--white);
}

/* --- Corporate Vision Banner --- */
.au2-corp-vision {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
}
.cv-overlay {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}
.cv-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.cv-title-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
.cv-icon {
  width: 24px; 
  height: 24px;
  flex-shrink: 0;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-icon svg {
  width: 100%;
  height: 100%;
}
.cv-title-box h2 {
  font-size: 24px;
  line-height: 1.6;
  margin: 0;
  font-weight: normal;
  text-align: left;
}
.cv-bottom-tags {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  display: inline-block;
  border: 1px solid var(--primary-color);
  padding: 8px 30px;
  border-radius: 40px;
  font-size: 14px;
  color: var(--primary-color);
}
.cv-divider {
  margin: 0 15px;
  color: #666;
}

/* --- Contact Us --- */
.au2-bg-dark-contact {
  background: #111;
  max-width: 100%;
  padding: 80px 0;
}

.new-contact-style {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  background: transparent;
  box-shadow: none;
  padding: 0 20px;
}

.au2-contact-left {
  flex: 1;
  padding: 0;
  background: transparent;
  color: #fff;
}

.au2-contact-left h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
}

.au2-contact-left .desc {
  color: #aaa;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.8;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.contact-info-list li {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.c-icon-orange {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.c-icon-orange svg {
  width: 100%;
  height: 100%;
}

.c-text-box {
  display: flex;
  flex-direction: column;
}

.c-label {
  color: #888;
  font-size: 12px;
  margin-bottom: 4px;
}

.c-value {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

.contact-vision-text {
  color: #666;
  font-size: 12px;
  line-height: 1.6;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.au2-contact-right {
  flex: 0 0 450px;
  background: #fff;
  padding: 35px 40px;
  border-radius: 4px;
}

.au2-form-new .form-title {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: bold;
  text-align: center;
  color: #333;
}

.au2-form-new .form-row {
  margin-bottom: 18px;
}

.au2-form-new label {
  display: block;
  margin-bottom: 6px;
  color: #666;
  font-size: 13px;
}

.au2-form-new input,
.au2-form-new select,
.au2-form-new textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 13px;
  box-sizing: border-box;
  background: #fafafa;
  transition: border-color 0.3s;
}

.au2-form-new input:focus,
.au2-form-new select:focus,
.au2-form-new textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #fff;
}

.au2-form-new textarea {
  height: 90px;
  resize: vertical;
}

.submit-btn-orange {
  width: 100%;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.3s;
  font-weight: bold;
  margin-top: 5px;
}

.submit-btn-orange:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .au2-intro-wrap,
  .new-contact-style {
    flex-direction: column;
  }
  .au2-intro-right,
  .au2-contact-right {
    flex: auto;
    width: 100%;
  }
  .au2-services-grid.new-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .au2-adv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .au2-hero {
    height: 240px;
  }
  html, 
  body,
  body.aboutus-new-layout {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .about-us-page2 {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .about-us-page2 > div,
  .au2-hero,
  .au2-new-adv,
  .au2-lawfirms,
  .au2-corp-vision,
  .au2-bg-dark-contact {
    max-width: 100%;
    box-sizing: border-box;
  }
  .au2-section {
    width: 100%;
    padding: 40px 16px;
    box-sizing: border-box;
  }
  #contact,
  #contact .new-contact-style,
  #contact .au2-contact-left,
  #contact .au2-contact-right,
  #contact .au2-form-new,
  #contact #aboutus-consult-form,
  #contact .platform-grid-inline,
  #contact .business-type-inline {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  #contact .au2-contact-right {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }
  #contact .au2-contact-right * {
    max-width: 100%;
    box-sizing: border-box;
  }
  #contact .platform-grid-inline > *,
  #contact .business-type-inline > * {
    min-width: 0;
  }
  .new-contact-style {
    width: 100%;
    max-width: 100%;
    gap: 24px;
    padding: 0;
    box-sizing: border-box;
  }
  .au2-contact-left,
  .au2-contact-right {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .au2-contact-right {
    padding: 24px 16px;
  }
  .au2-form-new,
  #aboutus-consult-form,
  .form-section-inline {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .contact-info-list li {
    width: 100%;
    align-items: flex-start;
    gap: 12px;
  }
  .c-text-box {
    flex: 1;
    min-width: 0;
  }
  .c-label,
  .c-value {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }
  .c-text-box,
  .c-value,
  .contact-vision-text,
  .au2-contact-left .desc {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .business-type-inline {
    flex-direction: column;
  }
  .business-type-card-inline {
    min-width: 0;
  }
  .platform-card-inline,
  .business-type-card-inline {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .submit-btn-orange {
    display: block;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
  }
  .au2-intro-wrap {
    gap: 24px;
    margin-bottom: 30px;
  }
  .au2-intro-left,
  .lawfirm-text,
  .service-banner p,
  .cv-title-box h2 {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .au2-intro-left h3,
  .au2-intro-left p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .au2-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 0;
    padding: 0;
    margin-top: 24px;
  }
  .au2-stat-item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 8px;
    box-sizing: border-box;
    text-align: center;
  }
  .au2-stat-item .num {
    font-size: 22px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .au2-stat-item .lbl {
    font-size: 13px;
    line-height: 1.5;
  }
  .au2-adv-wrapper-new {
    padding: 0 16px;
  }
  .au2-adv-grid-new {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .au2-adv-item-new {
    gap: 14px;
    align-items: flex-start;
    padding: 18px 16px;
    border: 1px solid #f1f1f1;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    background: #fff;
  }
  .adv-icon-circle {
    width: 52px;
    height: 52px;
  }
  .adv-icon {
    width: 28px;
    height: 28px;
  }
  .adv-content h4 {
    font-size: 17px;
    line-height: 1.4;
  }
  .adv-content p {
    font-size: 14px;
    line-height: 1.75;
    word-break: break-word;
  }
  .au2-cases-table,
  .new-table-style {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  .new-table-style table {
    min-width: 720px;
  }
  .au2-corp-vision {
    padding: 48px 16px;
    overflow: hidden;
    background-attachment: scroll;
  }
  .au2-services-grid.new-grid {
    grid-template-columns: 1fr;
  }
  .au2-hero-content h1 { font-size: 30px; }
  .au2-hero-content h2 {
    font-size: 16px;
    letter-spacing: 2px;
  }
  .new-table-style th, .new-table-style td {
    padding: 10px;
    font-size: 12px;
  }
}

/* --- Consultation Section --- */
.au2-consultation {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 80px 20px;
}

.consultation-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.consultation-left {
  flex: 1;
  color: #fff;
}

.consultation-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}

.consultation-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 40px;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.contact-icon {
  font-size: 32px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 0, 0.1);
  border-radius: 50%;
}

.contact-content {
  flex: 1;
}

.contact-label {
  font-size: 12px;
  color: #999;
  margin-bottom: 5px;
}

.contact-value {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
}

.consultation-note {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}

.consultation-right {
  flex: 1;
  max-width: 500px;
}

.consultation-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.consultation-form h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-textarea {
  resize: vertical;
  font-family: inherit;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.form-submit-btn:hover {
  opacity: 0.9;
}

@media (max-width: 992px) {
  .consultation-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .consultation-right {
    max-width: 100%;
  }
}

/* --- Inline Form Styles for About Us Contact Form --- */
.form-section-inline {
  margin-bottom: 20px;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.platform-grid-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.platform-card-inline {
  cursor: pointer;
}

.card-select-inline {
  padding: 10px;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card-select-inline:hover {
  border-color: var(--primary-color);
  background: #fff3e0;
}

.card-select-inline.selected {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #fff;
}

.card-select-inline span {
  font-size: 13px;
  font-weight: 500;
}

.business-type-inline {
  display: flex;
  gap: 10px;
}

.business-type-card-inline {
  flex: 1;
  cursor: pointer;
}

.btn-select-inline {
  padding: 12px;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-select-inline:hover {
  border-color: var(--primary-color);
  background: #fff3e0;
}

.btn-select-inline.selected {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #fff;
}

.btn-select-inline span {
  font-size: 13px;
  font-weight: 500;
}

.text-input-inline {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.text-input-inline:focus {
  outline: none;
  border-color: var(--primary-color);
}

.mobile-select-inline {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 768px) {
  .form-section-inline {
    overflow: hidden;
  }
  .mobile-select-inline {
    display: block;
    width: calc(100% - 2px);
    max-width: calc(100% - 2px);
    margin: 0 auto;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #333;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
  }
  .platform-grid-inline {
    display: none;
  }
  .business-type-inline {
    display: none;
  }
  .card-select-inline,
  .btn-select-inline {
    width: 100%;
    max-width: 100%;
    padding: 10px 8px;
    overflow: hidden;
  }
  .card-select-inline span,
  .btn-select-inline span {
    font-size: 12px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .business-type-card-inline {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 8px;
  }
  .business-type-card-inline:last-child {
    margin-bottom: 0;
  }
  .btn-select-inline {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 10px 6px;
    line-height: 1.4;
    white-space: normal;
    overflow: hidden;
  }
  .btn-select-inline span {
    display: block;
    width: 100%;
  }
  
  .lawsuit-response-grid-inline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .submit-btn-inline {
    width: 100%;
    margin-top: 10px;
  }
}

