* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "微软雅黑", sans-serif;
  background-color: #fdf5e9;
  color: #884631;
  line-height: 1.8;
  padding: 40px 20px;
}

.section {
  background-color: rgba(255, 246, 232, 0.65);
  border-radius: 16px;
  padding: 35px;
  margin-bottom: 40px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.section:hover {
  transform: translateY(-2px);
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-header h1 {
  color: #f4a460;
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.page-header p {
  color: #6d4c41;
  font-size: 1rem;
}

.adopt-motto {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.motto-card {
  background-color: rgba(255, 246, 232, 0.75);
  border-radius: 16px;
  padding: 30px 40px;
  max-width: 800px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.motto-card h3 {
  color: #f4a460;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.motto-card p {
  color: #6d4c41;
  text-align: justify;
}

.list-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.pet-card {
  width: 280px;
  background-color: #fffdf4;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.pet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.pet-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.pet-card h3 {
  color: #f4a460;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.pet-tags ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.pet-tags li {
  background-color: #ffe4c4;
  color: #d35400;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.detail-btn {
  display: inline-block;
  background-color: #f4a460;
  color: #fff;
  padding: 9px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.detail-btn:hover {
  background-color: #e08e4b;
  transform: scale(1.05);
}

.adopt-notice {
  background-color: rgba(255, 246, 232, 0.75);
  border-radius: 16px;
  padding: 30px 40px;
  margin-bottom: 50px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.adopt-notice h3 {
  text-align: center;
  color: #f4a460;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.adopt-notice ul {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 10px;
  color: #6d4c41;
}

.adopt-notice li {
  margin-bottom: 10px;
}

/* ===================== 联系方式 ===================== */
.contact-info {
  text-align: center;
  margin-bottom: 50px;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info a {
  color: #f4a460;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

.back-btn-container {
  text-align: center;
  margin-top: 20px;
}

.back-btn {
  display: inline-block;
  background-color: #f4a460;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-btn:hover {
  background-color: #e08e4b;
  transform: scale(1.05);
}
