/* 全局样式 */
body {
  font-family: "SimSun", "STSong", serif;
  background-color: #f8f6f2;
  color: #4a4a4a;
}

/* 导航栏样式 */
.navbar {
  background-color: #44332a;
  padding: 15px 0;
}

.navbar-brand {
  font-size: 24px;
  font-weight: bold;
  color: #f8f6f2;
}

.navbar-nav .nav-link {
  color: #f8f6f2;
  margin: 0 10px;
  transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #d4bea3;
}

/* 首页轮播图和英雄区域 */
.hero-section {
  background-color: #5f4b3c;
  color: #f8f6f2;
  padding: 80px 0;
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.carousel-item img {
  height: 500px;
  object-fit: cover;
}

/* 按钮样式 */
.btn-primary {
  background-color: #d4bea3;
  border: none;
  color: #44332a;
  padding: 10px 25px;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #c0aa90;
  color: #44332a;
}

/* 服务模块 */
.services-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: #44332a;
}

.service-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #44332a;
}

/* 优势模块 */
.advantages-section {
  background-color: #44332a;
  color: #f8f6f2;
  padding: 80px 0;
}

.advantage-item {
  text-align: center;
  margin-bottom: 30px;
}

.advantage-item i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #d4bea3;
}

.advantage-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* 页脚 */
footer {
  background-color: #332620;
  color: #f8f6f2;
  padding: 50px 0 20px;
}

footer a {
  color: #d4bea3;
  text-decoration: none;
}

footer a:hover {
  color: #f8f6f2;
  text-decoration: underline;
}

/* 页面标题区域 */
.page-header {
  background-color: #5f4b3c;
  color: #f8f6f2;
  padding: 40px 0;
}

.page-title {
  font-size: 36px;
  font-weight: bold;
}

.content-section {
  padding: 60px 0;
}

/* 关于我们页面 */
.about-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* 联系我们页面 */
.contact-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info h3 {
  color: #44332a;
  margin-bottom: 20px;
  font-size: 24px;
}

.contact-info p {
  margin-bottom: 10px;
  line-height: 1.8;
}

.contact-info i {
  color: #d4bea3;
  width: 30px;
  text-align: center;
  margin-right: 10px;
}

.map-container {
  height: 400px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

/* 隐私政策页面 */
.privacy-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-content h3 {
  color: #44332a;
  margin: 30px 0 15px;
  font-size: 22px;
}

.privacy-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.privacy-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.privacy-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}
