/**
 * 官网首页样式
 * @description 全部区块 100% 屏幕宽度，图片固定 px 宽高，无自适应
 */

/* ==================== 页面容器 ==================== */
.page-scale-wrapper {
  position: relative;
  width: 100%;
  overflow-x: clip;
}

.page {
  position: relative;
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
}

/* 版心容器 — 除 banner 外所有区块统一限宽 */
.ws-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== Header 导航栏 ==================== */
.ws-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 70px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ws-nav-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
}

.ws-logo img {
  width: 224px;
  height: 33px;
  display: block;
}

.header-actions {
  gap: 16px;
}

.ws-nav-btn {
  background-color: rgba(233, 58, 10, 1);
  padding: 7px 16px;
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  font-family: inherit;
}

.ws-nav-btn-text {
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  line-height: 15px;
}

/* 语言切换 */
.ws-lang-switch-wrapper {
  position: relative;
}

.ws-lang-switch {
  width: 100px;
  height: 30px;
  padding: 0 28px 0 8px;
  border: 1px solid rgba(214, 214, 214, 1);
  border-radius: 4px;
  background-color: #fff;
  font-size: 12px;
  color: rgba(89, 87, 87, 1);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23595757' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.ws-header--shrink {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

/* ==================== Hero Banner 横幅 ==================== */
.ws-hero {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

/* Hero 背景图层 — ≤1920px 与 img 同宽同高，>1920px 使用品牌色背景 */
.ws-hero::before {
  content: '';
  position: absolute;
  z-index: 0;
  background-color: #E93A0A;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 100%;
  transform: translateX(-50%);
}

@media (min-width: 1921px) {
  .ws-hero::before {
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
  }
}

.ws-hero-inner {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

/* Hero 背景图 — 绝对定位铺满，初始隐藏等加载完成后淡入 */
.ws-hero-bg-img {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ws-hero-bg-img.ws-loaded {
  opacity: 1;
}

/* Hero 文案图片 — 设计稿像素定位，JS 等比缩放（与背景图同步），初始隐藏等缩放完成后淡入 */
.ws-hero-text-img {
  position: absolute;
  left: 720px;
  top: 50%;
  width: auto;
  display: block;
  transform-origin: top left;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ws-hero-text-img.ws-loaded {
  opacity: 1;
}

/* ==================== About 关于我们 ==================== */
.ws-about {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.ws-about-content {
  width: 464px;
  overflow: hidden;
}

.ws-about-eyebrow {
  color: #E93A0A;
  font-size: 17px;
  white-space: nowrap;
  line-height: 15px;
}

.ws-about-text-group {
  margin-top: 20px;
}

.ws-about-heading {
  width: 100%;
}

.ws-about-title {
  color: #E93A0A;
  font-size: 31px;
  line-height: 40px;
  font-weight: bold;
}

.ws-about-desc {
  width: 100%;
}

.ws-about-desc1,
.ws-about-desc2 {
  color: #000;
  font-size: 15px;
  line-height: 22px;
}

.ws-about-desc2 {
  display: block;
  margin-top: 20px;
}

.ws-about-btn {
  width: 150px;
  height: 38px;
  background-color: #FFFFFF;
  border: 1px solid #E93A0A;
  border-radius: 4px;
  margin-top: 24px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ws-about-btn-text {
  color: #E93A0A;
  font-size: 14px;
  white-space: nowrap;
  line-height: 13px;
}

/* 按钮箭头图标 */
.btn-arrow-icon {
  width: 18px;
  height: 18px;
  margin-left: 20px;
}

/* About 图片 — 固定尺寸 */
.ws-about-image {
  width: 676px;
  height: 420px;
}

.ws-about-image-bg {
  width: 676px;
  height: 420px;
  background-size: 676px 420px;
  background-position: 0 0;
  background-repeat: no-repeat;
}

/* ==================== Stats 统计数据 ==================== */
.ws-stats {
  width: 100%;
  background-color: rgba(242, 242, 242, 1);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ws-stats-inner {
  width: 100%;
  max-width: 1200px;
  height: 160px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  box-sizing: border-box;
}

/* Stats 图标 — 固定尺寸 */
.ws-stat-icon {
  width: 80px;
  height: 90px;
  background-size: 80px 90px;
  background-repeat: no-repeat;
  background-position: center;
}

.ws-stat-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ws-stat-text-group {
  display: flex;
  flex-direction: column;
}

.ws-stat-value {
  color: rgba(233, 58, 10, 1);
  font-size: 40px;
  font-weight: bold;
  white-space: nowrap;
  line-height: 40px;
}

.ws-stat-label {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  line-height: 18px;
  margin-top: 6px;
}

/* 竖线分隔 */
.ws-stats-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(214, 214, 214, 1);
}

.ws-stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

/* ==================== 视频区域 ==================== */
#video {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ws-section-title {
  color: rgba(0, 0, 0, 1);
  font-size: 30px;
  line-height: 25px;
  margin-bottom: 32px;
}

/* 视频容器 — 固定尺寸 */
.ws-video-container {
  position: relative;
  width: 1200px;
  height: 675px;
  overflow: hidden;
}

/* 内嵌视频播放器 */
.ws-inline-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background-color: #000;
}

/* 视频缩略图列表 */
.ws-video-thumbs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-top: 20px;
  height: 152px;
}

/* 单个视频缩略图 — 未高亮态 */
.ws-video-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  width: 200px;
}

.ws-video-thumb-cover {
  width: 170px;
  height: 98px;
  overflow: hidden;
  background-color: #000;
  transition: width 0.2s ease, height 0.2s ease;
  border: 1px solid #e0e0e0;
}

.ws-video-thumb-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ws-video-thumb-label {
  margin-top: 8px;
  color: #9e9e9e;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  white-space: nowrap;
  transition: color 0.2s ease;
  font-weight: bold;
  margin-bottom: 10px;
}

/* 视频缩略图 — 高亮态 */
.ws-video-thumb--active .ws-video-thumb-cover {
  width: 200px;
  height: 116px;
}

.ws-video-thumb--active .ws-video-thumb-label {
  color: #E93A0A;
}

/* ==================== 分隔线 ==================== */
.ws-section-divider {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 1px;
  background-color: rgba(214, 214, 214, 1);
  margin-top: 60px;
}

/* ==================== 产品分类 ==================== */
#categories {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ws-cat-row {
  width: 100%;
  min-height: 138px;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

/* 竖线分隔符 */
.ws-cat-divider {
  width: 1px;
  height: 110px;
  background-color: #e0e0e0;
  flex-shrink: 0;
  margin: 0 21px;
}

/* 分类外层容器 */
.ws-cat-item {
  width: 136px;
  margin-bottom: 60px;
  align-items: center;
}

/* 分类图标 — 固定尺寸 */
.ws-cat-img {
  width: 128px;
  height: 110px;
  background-size: 128px 110px;
  background-repeat: no-repeat;
  background-position: center;
}

/* 分类文案标签 */
.ws-cat-label {
  margin-top: 8px;
  font-size: 14px;
  color: #000;
  text-align: center;
  line-height: 20px;
  max-width: 128px;
  word-break: break-word;
}

/* ==================== 联系我们 ==================== */
.ws-contact {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(246, 246, 246, 1);
  padding: 50px 0 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.ws-contact-inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  gap: 80px;
}

.ws-contact-form {
  width: 494px;
}

.ws-contact-form-header {
  margin-bottom: 2px;
}

.ws-contact-heading {
  color: rgba(0, 0, 0, 1);
  font-size: 30px;
  line-height: 25px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.ws-contact-intro {
  width: 450px;
  margin-top: 10px;
}

.ws-contact-intro-text {
  color: rgba(0, 0, 0, 0.6);
  font-size: 15px;
  line-height: 19px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.ws-contact-modal-content .ws-contact-intro {
  width: 100%;
}

/* 表单字段包裹层 */
.ws-contact-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.ws-contact-form-row {
  width: 494px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  margin-top: 8px;
}

.ws-contact-form-row .ws-contact-field {
  width: calc(50% - 4px);
  margin-top: 0;
}

/* 表单输入框 */
.ws-contact-input {
  width: 100%;
  min-height: 36px;
  height: auto;
  background-color: #fff;
  border: 1px solid #D6D6D6;
  border-radius: 4px;
  padding: 8px 12px;
}

.ws-contact-input-full {
  width: 100%;
  min-height: 36px;
  height: auto;
  background-color: #fff;
  border: 1px solid #D6D6D6;
  border-radius: 4px;
  padding: 8px 12px;
}

.ws-contact-textarea {
  width: 100%;
  min-height: 100px;
  height: auto;
  background-color: #fff;
  border: 1px solid #D6D6D6;
  border-radius: 4px;
  padding: 10px 12px;
}

.ws-contact-input input,
.ws-contact-input-full input,
.ws-contact-textarea textarea {
  width: 100%;
  height: auto;
  min-height: 18px;
  border: 0;
  background-color: transparent;
  outline: none;
  font-size: 14px;
  color: #000;
  resize: none;
}

.ws-contact-textarea textarea {
  display: block;
  line-height: 1.5;
}

.ws-contact-input input::-webkit-input-placeholder,
.ws-contact-input-full input::-webkit-input-placeholder,
.ws-contact-textarea textarea::-webkit-input-placeholder {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
}

.ws-contact-input input::placeholder,
.ws-contact-input-full input::placeholder,
.ws-contact-textarea textarea::placeholder {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
}

/* RTL（阿拉伯语）：浏览器对 type="tel" 强制 LTR，需手动右对齐，使光标与 placeholder 从右侧开始；数字书写顺序保持从左到右 */
html[dir="rtl"] .ws-contact-input input[type="tel"] {
  direction: ltr;
  text-align: right;
}

/* RTL（阿拉伯语）：邮箱地址属于 LTR 文本，需强制从左到右书写；光标与 placeholder 仍从右侧开始 */
html[dir="rtl"] .ws-contact-input input[type="email"] {
  direction: ltr;
  text-align: right;
}

/* RTL（阿拉伯语）：普通文本输入框与留言框右对齐，保持默认双向文本方向 */
html[dir="rtl"] .ws-contact-input input[type="text"],
html[dir="rtl"] .ws-contact-input-full input[type="text"],
html[dir="rtl"] .ws-contact-textarea textarea {
  text-align: right;
}

/* RTL（阿拉伯语）：公司名称通常为拉丁文，强制 LTR 书写但右对齐 */
html[dir="rtl"] .ws-contact-input-full input[type="text"][data-i18n-placeholder="contact.company"] {
  direction: ltr;
  text-align: right;
}

/* 字段级错误提示（位于输入框外部） */
.ws-contact-error {
  display: none;
  color: #E93A0A;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 4px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* 输入框错误态 */
.ws-contact-field--error .ws-contact-input,
.ws-contact-field--error .ws-contact-input-full,
.ws-contact-field--error .ws-contact-textarea {
  border-color: #E93A0A;
}

/* 隐私协议错误态 */
.ws-contact-privacy.ws-contact-privacy--error .ws-contact-privacy-label {
  color: #E93A0A;
}


.ws-contact-error-format {
  display: none;
}

.ws-contact-submit {
  width: 202px;
  height: 40px;
  background-color: rgba(233, 58, 10, 1);
  margin-top: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  font-family: inherit;
}

.ws-contact-submit-text {
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
  line-height: 15px;
}

/* 分隔线 */
.ws-contact-divider {
  width: 1px;
  height: 450px;
  background-color: rgba(214, 214, 214, 1);
}

/* 联系信息 */
.ws-contact-info {
  width: 510px;
}

.ws-contact-info-title {
  color: rgba(0, 0, 0, 1);
  font-size: 30px;
  line-height: 25px;
  margin-bottom: 60px;
}

.ws-contact-row {
  margin-bottom: 40px;
  flex-wrap: nowrap;
}

/* 联系图标 — 固定尺寸 */
.ws-contact-icon {
  width: 40px;
  height: 40px;
}

.ws-contact-text {
  color: rgba(0, 0, 0, 0.6);
  font-size: 17px;
  line-height: 22px;
}

.ws-contact-address {
  width: auto;
  font-size: 17px;
}

/* 隐私协议勾选 */
.ws-contact-privacy {
  position: relative;
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}

.ws-contact-privacy-checkbox {
  width: 16px;
  height: 16px;
  margin: 0;
  margin-top: 1px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #E93A0A;
}

.ws-contact-privacy-label {
  min-width: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 13px;
  line-height: 18px;
  cursor: pointer;
}

.ws-contact-privacy-link {
  color: #E93A0A;
  text-decoration: underline;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  font-size: 13px;
  line-height: 18px;
}

.ws-contact-privacy-link:hover {
  color: #c7300a;
}

/* 隐私协议 tooltip 气泡 */
.ws-contact-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background-color: rgba(45, 45, 45, 0.8);
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
}

html[dir="rtl"] .ws-contact-tooltip {
  left: auto;
  right: 0;
}

.ws-contact-privacy--error .ws-contact-tooltip {
  display: block;
}

.ws-contact-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 16px;
  border: 5px solid transparent;
  border-top-color: rgba(45, 45, 45, 0.8);
}

html[dir="rtl"] .ws-contact-tooltip::after {
  left: auto;
  right: 16px;
}

/* ==================== Footer ==================== */
.ws-footer {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(34, 34, 34, 1);
  padding: 40px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.ws-footer-inner {
  width: 1200px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 100px;
}

.ws-footer-left {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin: 0;
  align-items: flex-start;
}

.ws-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding-top: 6px;
}

/* Footer logo — 固定尺寸 */
.ws-footer-logo img {
  width: 224px;
  height: 33px;
  display: block;
}

.ws-footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 14px;
  margin-top: 8px;
}

/* ==================== 底部备案信息 ==================== */
.ws-footer-filing {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 18px;
  color: #9e9e9e;
}

.ws-footer-filing-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.ws-footer-filing-separator {
  width: 1px;
  height: 12px;
  background-color: #9e9e9e;
}

.ws-footer-filing-link {
  color: #9e9e9e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ws-footer-filing-link:hover {
  color: #ffffff;
}



/* ==================== 返回顶部 ==================== */
.ws-backtop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(233, 58, 10, 1);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}

.ws-backtop--visible {
  opacity: 1;
  visibility: visible;
}

/* ==================== 联系表单弹窗 ==================== */
.ws-contact-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ws-contact-modal--open {
  opacity: 1;
  visibility: visible;
}

.ws-contact-modal-content {
  position: relative;
  width: 618px;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  background-color: #fff;
  padding: 32px 40px;
  border-radius: 10px;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.3s ease;
}

.ws-contact-modal--open .ws-contact-modal-content {
  transform: translateY(0) scale(1);
}

.ws-contact-modal-content .ws-contact-form {
  width: 100%;
}

.ws-contact-modal-content .ws-contact-form-row,
.ws-contact-modal-content .ws-contact-field {
  width: 100%;
}

.ws-contact-modal-content .ws-contact-form-row .ws-contact-field {
  width: calc(50% - 4px);
}

/* 弹窗双按钮 */
.ws-contact-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.ws-contact-cancel {
  width: 120px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #E93A0A;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.ws-contact-cancel-text {
  color: #E93A0A;
  font-size: 13px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
  padding: 0 8px;
  text-align: center;
}

.ws-contact-modal-actions .ws-contact-submit {
  margin-top: 0;
}

.ws-contact-modal-close {
  position: absolute;
  right: 16px;
  top: 8px;
  width: 36px;
  height: 36px;
  border: 0;
  background-color: transparent;
  color: rgba(0, 0, 0, 0.45);
  font-size: 32px;
  line-height: 36px;
  cursor: pointer;
  outline: none;
}

html[dir="rtl"] .ws-contact-modal-close {
  right: auto;
  left: 16px;
}

.ws-contact-modal-close:hover {
  color: rgba(0, 0, 0, 0.85);
}

/* ==================== ≥ 1200px：导航栏吸顶全屏宽 ==================== */
@media (min-width: 1200px) {
  .ws-nav {
    width: 100vw;
    margin-left: calc((100vw - 100%) / -2);
  }
}

/* ==================== 隐私政策弹窗 ==================== */
.ws-privacy-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.ws-privacy-modal-overlay.ws-privacy-modal-open {
  display: flex;
}

.ws-privacy-modal {
  width: 70vw;
  height: 80vh;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.ws-privacy-modal-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.ws-privacy-modal-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin: 0;
  text-align: center;
}

.ws-privacy-modal-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 22px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
}

.ws-privacy-modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.ws-privacy-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 32px 40px 40px;
}

.ws-privacy-modal-body .ws-privacy-section {
  margin-bottom: 24px;
}

.ws-privacy-modal-body .ws-privacy-section-title {
  font-size: 16px;
  font-weight: bold;
  color: #222;
  margin: 20px 0 10px;
  text-align: left;
}

.ws-privacy-modal-body .ws-privacy-section-subtitle {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin: 14px 0 8px;
  text-align: left;
}

.ws-privacy-modal-body .ws-privacy-section-content {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin: 6px 0;
  text-align: left;
}

.ws-privacy-modal-body .ws-privacy-title {
  display: none;
}

.ws-privacy-modal-body .ws-privacy-notice {
  font-size: 13px;
  color: #888;
  margin-bottom: 4px;
  text-align: left;
}

.ws-privacy-modal-body .ws-privacy-effective-date {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 16px;
  text-align: left;
}

@media (max-width: 768px) {
  .ws-privacy-modal {
    width: 95vw;
    height: 85vh;
  }
  .ws-privacy-modal-body {
    padding: 20px 16px 24px;
  }
}
