.elementor-6609 .elementor-element.elementor-element-a7360a5{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a53db0d */<!DOCTYPE html>
<html lang="zh-Hant">
<head>
  <meta charset="UTF-8"/>
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <style>
    /* 全局 Reset */
    *, *::before, *::after { box-sizing: border-box; margin:0; padding:0; }
    body { font-family:'Noto Sans HK',sans-serif; color:#1A1A4E; }

    /* 聯絡我們 */
    .contact-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1170px;
      margin: 64px auto;
      padding: 0 135px;
      background: #EFFAF2;
      border-radius: 22px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    .contact-content { max-width: 554px; }
    .contact-content h2 {
      font-size: 48px;
      color: #39B54A;
      margin-bottom: 16px;
    }
    .contact-content h3 {
      font-size: 36px;
      margin-bottom: 8px;
    }
    .contact-content p {
      font-size: 24px;
      margin-bottom: 32px;
    }
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      background: #262262;
      color: #fff;
      border-radius: 8px;
      padding: 0 32px;
      height: 56px;
      font-size: 18px;
      text-decoration: none;
    }
    .btn-whatsapp img {
      width: 24px;
      height: 24px;
      margin-right: 12px;
    }
    .contact-image img {
      max-width: 100%;
      border-radius: 12px;
    }

    /* 獎項徽章 */
    .awards-section {
      max-width: 1200px;
      margin: 64px auto;
      padding: 0 15px;
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
    }
    .awards-section img {
      height: 60px;
      object-fit: contain;
    }

    /* 響應式 */
    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column-reverse;
        padding: 32px 15px;
        text-align: center;
      }
      .contact-content { margin-top: 24px; }
      .awards-section { gap: 16px; }
    }
  </style>
</head>
<body>

  <!-- 聯絡我們 Section -->
  <section class="contact-section">
    <div class="contact-content">
      <h2>聯絡我們</h2>
      <h3>對我們的課程感興趣或疑問？</h3>
      <p>立即與我們聯絡，我們非常樂意為您解答</p>
      <a href="https://wa.me/YOUR_NUMBER" class="btn-whatsapp" target="_blank" rel="noopener">
        <img src="YOUR_WHATSAPP_ICON_URL" alt="WhatsApp 圖示">
        請與我們聯繫
      </a>
    </div>
    <div class="contact-image">
      <img src="YOUR_CONTACT_IMAGE_URL" alt="聯絡我們 圖示">
    </div>
  </section>

  <!-- 獎項徽章 Section -->
  <section class="awards-section">
    <img src="AWARD_BADGE_1_URL" alt="獎項徽章1">
    <img src="AWARD_BADGE_2_URL" alt="獎項徽章2">
    <img src="AWARD_BADGE_3_URL" alt="獎項徽章3">
    <img src="AWARD_BADGE_4_URL" alt="獎項徽章4">
    <!-- 如有更多，依序新增 -->
  </section>

</body>
</html>/* End custom CSS */