/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* 导航栏 */
.navbar {
  background: linear-gradient(135deg, #2d5a3d 0%, #1a3d2e 100%);
  padding: 1rem 0;
  position: fixed;
  top: 46px;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .navbar {
    top: 0;
  }
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-logo i {
  color: #64b5a6;
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #64b5a6;
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.login-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.user-avatar img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* 主横幅区域 */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../images/1.jpg ") center/cover;
  min-height: 100vh;
  padding: 120px 2rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 90, 61, 0.3) 0%,
    rgba(26, 61, 46, 0.3) 100%
  );
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.hero-main-title {
  font-size: 5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.hero-sub-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

/* 新疆信息卡片 */
.xinjiang-info {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.xinjiang-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.xinjiang-info p {
  color: #666;
  line-height: 1.7;
}

.booking-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.booking-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.booking-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  font-size: 0.9rem;
}

.search-btn {
  background: linear-gradient(135deg, #2d5a3d 0%, #1a3d2e 100%);
  color: white;
  border: none;
  padding: 0.875rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.search-btn:hover {
  transform: translateY(-2px);
}

/* 关于我们区域 */
.about-section {
  padding: 4rem 2rem;
  background: #f8faf9;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}

.about-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.rating-section {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rating-score {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.rating-stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

.rating-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -0.5rem;
  margin-bottom: 0.5rem;
}

.rating-avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
}

.rating-avatars img:first-child {
  margin-left: 0;
}

.rating-plus {
  background: #2d5a3d;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-left: -8px;
}

.rating-text {
  font-size: 0.9rem;
  color: #666;
}

.discover-content {
  position: relative;
}

.discover-content h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #333;
}

.discover-images {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 1rem;
}

.discover-img-1 {
  width: 200px;
  height: 150px;
  border-radius: 16px;
  object-fit: cover;
}

.discover-img-2 {
  width: 150px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  margin-top: 2rem;
}

.discover-content p {
  color: #666;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-top: 8rem;
}

.cta-btn {
  background: linear-gradient(135deg, #2d5a3d 0%, #1a3d2e 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

/* 为什么选择我们 */
.why-section {
  padding: 4rem 2rem;
  background: white;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.why-header h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: #333;
}

.nav-arrows {
  display: flex;
  gap: 0.5rem;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e1e5e9;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: #2d5a3d;
  color: white;
  border-color: #2d5a3d;
}

.nav-arrow.next {
  background: #2d5a3d;
  color: white;
  border-color: #2d5a3d;
}

.why-description {
  color: #666;
  max-width: 800px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-content {
  padding: 1.5rem;
  background: white;
}

.feature-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.feature-content p {
  color: #666;
}

/* 更多发现区域 */
.discover-more-section {
  padding: 4rem 2rem;
  background: #f8faf9;
}

.discover-more-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.discover-more-content h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #333;
}

.discover-more-content p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  background: #2d5a3d;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #2d5a3d;
  border: 1px solid #2d5a3d;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary:hover {
  color: white;
}

.btn-secondary:hover {
  color: #2d5a3d;
  background: rgba(45, 90, 61, 0.1);
}

.service-info {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-badge {
  background: #2d5a3d;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.service-label {
  font-size: 0.8rem;
  color: #666;
}

.service-value {
  font-weight: 500;
  color: #333;
}

.discover-more-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
}

/* 服务区域 */
.services-section {
  padding: 4rem 2rem;
  background: white;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}

.service-highlight {
  position: relative;
}

.service-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
}

.service-overlay h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-avatars {
  display: flex;
  gap: -0.5rem;
}

.service-avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
}

.service-avatars img:first-child {
  margin-left: 0;
}

.service-heart {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.service-heart i {
  color: #666;
  font-size: 1.2rem;
}

.service-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.service-content > p {
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.service-testimonial h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.service-images {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-images img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.service-testimonial p {
  color: #666;
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.testimonial-author {
  color: #333;
  font-weight: 500;
}

/* 热门目的地 */
.destinations-section {
  padding: 4rem 2rem;
  background: #f8faf9;
}

.destinations-container {
  max-width: 1200px;
  margin: 0 auto;
}

.destinations-container h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #333;
}

.destinations-container p {
  color: #666;
  max-width: 800px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.destination-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.destination-content {
  padding: 1.5rem;
}

.destination-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.destination-content p {
  color: #666;
  margin: 0;
}

/* 底部区域 */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 2rem;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.footer-container a {
  color: #64b5a6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-container a:hover {
  color: white;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .hero-main-title {
    font-size: 3.5rem;
  }

  .hero-sub-title {
    font-size: 1.5rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .discover-more-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-main-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .hero-sub-title {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }

  .hero-section {
    padding: 100px 1rem 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .why-header {
    flex-direction: column;
    gap: 1rem;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .action-buttons {
    flex-direction: column;
  }

  .service-details {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* 悬浮效果 */
.stat-card,
.booking-card,
.feature-card,
.destination-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover,
.booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* 按钮悬浮效果增强 */
button {
  position: relative;
  overflow: hidden;
}

button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

button:hover::before {
  left: 100%;
}

/* 加载状态 */
.loading {
  position: relative;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #2d5a3d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* 页面头部样式 */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=1080&fit=crop")
      center/cover;
  min-height: 50vh;
  padding: 120px 2rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 90, 61, 0.3) 0%,
    rgba(26, 61, 46, 0.3) 100%
  );
  z-index: 1;
}

.page-header-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.page-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

/* 内容容器 */
.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* 关于我们页面样式 */
.about-content-section {
  background: #f8faf9;
}

.company-intro {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d5a3d;
  margin-bottom: 2rem;
  text-align: center;
}

.intro-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.business-license {
  margin-top: 2rem;
  text-align: center;
}

.license-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e1e5e9;
}

.our-advantages {
  margin-bottom: 3rem;
}

.our-advantages h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.advantage-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: #2d5a3d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.advantage-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.advantage-card p {
  color: #666;
  font-size: 0.9rem;
}

.service-scope {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-scope h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.scope-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
}

.scope-item i {
  color: #2d5a3d;
  font-size: 1.1rem;
}

.scope-item span {
  color: #333;
  font-weight: 500;
}

.cta-section {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-section h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* 联系我们页面样式 */
.contact-content-section {
  background: #f8faf9;
}

.contact-info {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d5a3d;
  margin-bottom: 2rem;
  text-align: center;
}

.office-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8faf9;
  border-radius: 8px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: #2d5a3d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.contact-text {
  color: #333;
}

.contact-text a {
  color: #2d5a3d;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

/* 隐私政策页面样式 */
.privacy-content-section {
  background: #f8faf9;
}

.privacy-content {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d5a3d;
  margin-bottom: 2rem;
  text-align: center;
}

.policy-intro p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #2d5a3d;
}

.policy-section p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-list {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.policy-list li {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.policy-contact {
  background: #f8faf9;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.policy-contact h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.policy-contact p {
  color: #666;
  margin-bottom: 1rem;
}

.policy-contact .contact-info p {
  margin-bottom: 0.5rem;
}

.policy-contact a {
  color: #2d5a3d;
  text-decoration: none;
}

.policy-contact a:hover {
  text-decoration: underline;
}

.policy-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e1e5e9;
}

.policy-footer small {
  color: #999;
}

/* 响应式设计 - 页面样式 */
@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .page-subtitle {
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  .content-container {
    padding: 2rem 1rem;
  }

  .company-intro,
  .contact-info,
  .privacy-content,
  .service-scope,
  .cta-section {
    padding: 2rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .scope-list {
    grid-template-columns: 1fr;
  }

  .contact-details {
    gap: 0.5rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* 自定义滚动条 */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #2d5a3d;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1a3d2e;
}
