/* 關於我們專屬樣式 v2 */
.about-layout h2 {
  font-family: 'Oswald', sans-serif;
  color: #f39c12;
  margin-bottom: 16px;
}

.about-section {
  margin-bottom: 30px;
}

.about-section h3 {
  color: #333;
  margin-bottom: 10px;
}

.about-section p {
  line-height: 1.8;
  font-size: 16px;
  color: #444;
}

.info-cards {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.info-cards .card {
  flex: 1 1 30%;
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: 15px;
}

/* 📱 手機版 Header RWD */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;   /* 橫排改直排 */
    align-items: center;      /* 置中對齊 */
    text-align: center;
  }

  .brand h1 {
    font-size: 20px;          /* 公司名稱縮小 */
    margin-bottom: 10px;      /* 與導覽列拉開距離 */
  }

  nav {
    margin-top: 8px;
  }

  nav a {
    display: block;           /* 導覽列獨立一行 */
    margin: 5px 0;
  }

  /* 卡片改為單欄或雙欄 */
  .info-cards {
    flex-direction: column;
  }

  .info-cards .card {
    flex: 1 1 100%;
  }
}
