.about {
  background: var(--gray-50);
}

.deco1 {
  width: 280px;
  height: auto;
  position: absolute;
  right: 10%;
  top: -40%;
}

.deco2 {
  width: 250px;
  height: auto;
  position: absolute;
  top: -100%;
  left: 7%;
}

.company-logo {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 1rem auto; /* 置中並與下方文字留一點間距 */
}

.about-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-content p {
  margin-bottom: 2rem; /* 與下方內容保持距離 */
}

.about-lower-content {
  display: flex;
  align-items: flex-start; /* 垂直頂對齊，可視需求改為center */
  justify-content: space-between; /* li在左，圖片在右 */
  gap: 2rem; /* li與圖片間距 */
  margin-top: 20px;
}

.about-lower-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1; /* 使ul佔據可用空間 */
}

.about-lower-content li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1rem 1rem 1rem 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-lower-content li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
}

.prize {
  max-width: 300px; /* 視需求調整圖片大小 */
  height: auto;
  align-self: center; /* 圖片垂直對齊中間 */
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.help-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: var(--white);
  text-decoration: none;
  color: var(--gray-800);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.help-card .lucide {
  color: var(--primary);
  margin-bottom: 1rem;
}

.news {
  background: var(--gray-50);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.news-card .lucide {
  color: var(--primary);
  margin-bottom: 1rem;
}

footer {
  background: var(--gray-800);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact .lucide {
  width: 16px;
  height: 16px;
}

.read-more {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white) !important;
  background: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  margin: auto 0 0 auto;
  width: fit-content;
}

@media (max-width: 640px) {
  .help-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    flex-direction: column;
    align-items: center;
  }

  .about-lower-content {
    flex-direction: column;
  }

  .deco1,
  .deco2 {
    display: none;
  }
}
