/* 技術特性專屬樣式 */
.tech-layout h2 {
  font-family: 'Oswald', sans-serif;
  color: #f39c12;
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.features-grid .card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.tech-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.tech-items .item {
  background: #f7f9fb;
  border-left: 4px solid #f39c12;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
}

/* 📱 手機版 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;
  }

  /* 技術特性卡片單欄排版 */
  .features-grid {
    grid-template-columns: 1fr;
  }
}
