
    /* ===== Reset & Base ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: #1a1a2e;
      line-height: 1.7;
      background: #fff;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: #FF6B00; text-decoration: none; transition: color 0.2s; }
    a:hover { color: #e05e00; }

    /* ===== Layout ===== */
    .dax-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .dax-section {
      padding: 70px 0;
    }
    .dax-section--alt {
      background: #f8f9fa;
    }
    .dax-section__title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #1a1a2e;
    }
    .dax-section__subtitle {
      font-size: 17px;
      color: #666;
      margin-bottom: 40px;
      max-width: 760px;
    }

    /* ===== Hero Banner ===== */
    .dax-hero {
      background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
      color: #fff;
      padding: 80px 0 60px;
      text-align: center;
    }
    .dax-hero h1 {
      font-size: 38px;
      font-weight: 800;
      margin-bottom: 16px;
      line-height: 1.3;
    }
    .dax-hero h1 span { color: #FF6B00; }
    .dax-hero p {
      font-size: 18px;
      opacity: 0.85;
      max-width: 700px;
      margin: 0 auto;
    }

    /* ===== Contact Cards ===== */
    .dax-contact-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .dax-contact-card {
      background: #fff;
      border-radius: 10px;
      padding: 28px 20px;
      text-align: center;
      border: 1px solid #eee;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .dax-contact-card:hover {
      box-shadow: 0 8px 30px rgba(255,107,0,0.1);
      transform: translateY(-3px);
    }
    .dax-contact-card__icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 14px;
      background: linear-gradient(135deg, #FF6B00, #FFC107);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }
    .dax-contact-card h3 {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 6px;
      color: #1a1a2e;
    }
    .dax-contact-card p {
      font-size: 14px;
      color: #666;
      line-height: 1.5;
    }
    .dax-contact-card a {
      font-size: 14px;
      word-break: break-all;
    }

    /* ===== Form Section ===== */
    .dax-form-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }
    .dax-form {
      background: #fff;
      border-radius: 10px;
      padding: 36px;
      border: 1px solid #eee;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    }
    .dax-form .dax-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .dax-form label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #1a1a2e;
      margin-bottom: 6px;
    }
    .dax-form label .req {
      color: #FF6B00;
      margin-left: 2px;
    }
    .dax-form input,
    .dax-form select,
    .dax-form textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 14px;
      font-family: inherit;
      color: #1a1a2e;
      transition: border-color 0.2s;
      background: #fff;
    }
    .dax-form input:focus,
    .dax-form select:focus,
    .dax-form textarea:focus {
      outline: none;
      border-color: #FF6B00;
      box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
    }
    .dax-form textarea {
      resize: vertical;
      min-height: 120px;
    }
    .dax-form-group {
      margin-bottom: 18px;
    }
    .dax-form .dax-form-row .dax-form-group {
      margin-bottom: 18px;
    }
    .dax-submit-btn {
      display: inline-block;
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, #FF6B00, #FFC107);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 17px;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      text-align: center;
    }
    .dax-submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255,107,0,0.3);
    }

    /* ===== Form Side Info ===== */
    .dax-form-info {
      padding-top: 10px;
    }
    .dax-form-info h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .dax-form-info-item {
      display: flex;
      gap: 14px;
      margin-bottom: 20px;
      align-items: flex-start;
    }
    .dax-form-info-item__icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background: #fff8f0;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }
    .dax-form-info-item h4 {
      font-size: 14px;
      font-weight: 700;
      color: #1a1a2e;
    }
    .dax-form-info-item p {
      font-size: 13px;
      color: #666;
    }

    /* ===== FAQ Accordion ===== */
    .dax-faq {
      max-width: 800px;
      margin: 0 auto;
    }
    .dax-faq-item {
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 12px;
      overflow: hidden;
      background: #fff;
    }
    .dax-faq-input {
      display: none;
    }
    .dax-faq-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 22px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      color: #1a1a2e;
      transition: background 0.2s;
    }
    .dax-faq-label:hover {
      background: #fff8f0;
    }
    .dax-faq-label::after {
      content: "+";
      font-size: 22px;
      font-weight: 700;
      color: #FF6B00;
      transition: transform 0.3s;
      flex-shrink: 0;
      margin-left: 16px;
    }
    .dax-faq-input:checked + .dax-faq-label::after {
      content: "−";
    }
    .dax-faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      padding: 0 22px;
    }
    .dax-faq-input:checked ~ .dax-faq-content {
      max-height: 300px;
      padding: 0 22px 18px;
    }
    .dax-faq-content p {
      font-size: 14px;
      color: #666;
      line-height: 1.7;
    }

    /* ===== Trust Badges ===== */
    .dax-trust-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    .dax-trust-item {
      text-align: center;
      padding: 24px 12px;
      background: #fff;
      border-radius: 8px;
      border: 1px solid #f0f0f0;
    }
    .dax-trust-item__num {
      font-size: 28px;
      font-weight: 800;
      color: #FF6B00;
      line-height: 1.1;
    }
    .dax-trust-item__label {
      font-size: 13px;
      color: #666;
      margin-top: 6px;
    }

    /* ===== Image Block ===== */
    .dax-img-block {
      margin: 30px 0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    .dax-img-block img {
      width: 100%;
      display: block;
    }
    .dax-img-caption {
      background: #f8f9fa;
      padding: 10px 16px;
      font-size: 13px;
      color: #888;
      text-align: center;
    }

    /* ===== Factory Visit ===== */
    .dax-visit {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    .dax-visit-info h3 {
      font-size: 20px;
      margin-bottom: 12px;
      font-weight: 700;
    }
    .dax-visit-info p {
      font-size: 14px;
      color: #666;
      margin-bottom: 8px;
    }
    .dax-visit-info p strong {
      color: #1a1a2e;
    }
    .dax-btn {
      display: inline-block;
      padding: 14px 36px;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 700;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
    }
    .dax-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    .dax-btn--primary {
      background: linear-gradient(135deg, #FF6B00, #FFC107);
      color: #fff;
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
      .dax-hero { padding: 50px 0 40px; }
      .dax-hero h1 { font-size: 26px; }
      .dax-hero p { font-size: 15px; }
      .dax-section { padding: 50px 0; }
      .dax-section__title { font-size: 24px; }
      .dax-contact-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .dax-contact-card { padding: 20px 14px; }
      .dax-form-wrapper { grid-template-columns: 1fr; gap: 30px; }
      .dax-form .dax-form-row { grid-template-columns: 1fr; gap: 0; }
      .dax-trust-grid { grid-template-columns: repeat(2, 1fr); }
      .dax-trust-grid .dax-trust-item:last-child {
        grid-column: span 2;
      }
      .dax-visit { grid-template-columns: 1fr; }
      .dax-btn { padding: 12px 28px; font-size: 15px; }
    }
    @media (max-width: 480px) {
      .dax-contact-grid { grid-template-columns: 1fr; }
      .dax-trust-grid { grid-template-columns: 1fr; }
      .dax-trust-grid .dax-trust-item:last-child {
        grid-column: auto;
      }
    }
  