
  /* Base Container: Full width adaptation */
  .fuji-faq-container {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    max-width: 1440px; 
    margin: 0 auto;
    padding: 0 20px;
    color: #333;
    line-height: 1.6;
    box-sizing: border-box;
  }

  /* Header Box: Green border moved to top for better bottom transition */
  .fuji-faq-header-box {
    background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
    border-top: 4px solid #28a745; /* Line moved to top */
    border-radius: 8px;
    padding: 50px 4%; 
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  }

  /* Sub-headline: Widened for PC screens */
  .fuji-faq-summary {
    font-size: 17px;
    color: #555;
    max-width: 1150px; /* Widened to fit PC adaptation */
    margin: 0 auto 40px;
    text-align: center;
  }

  /* Keywords Grid: Professional 4-column layout */
  .fuji-keyword-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
  }

  .fuji-keyword-card {
    background: #fff;
    padding: 22px 15px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .fuji-keyword-card:hover {
    border-color: #28a745;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }

  .fuji-keyword-card strong {
    display: block;
    color: #28a745;
    font-size: 15px;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
  }

  .fuji-keyword-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
  }

  /* Support Navigation */
  .fuji-support-links {
    margin-top: 25px;
    font-size: 14px;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }

  .fuji-support-links a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 700;
    margin: 0 15px;
    transition: color 0.3s;
  }

  .fuji-support-links a:hover {
    color: #28a745;
    text-decoration: underline;
  }

  /* Responsive Adjustments */
  @media (max-width: 1024px) {
    .fuji-keyword-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .fuji-faq-header-box {
      padding: 35px 15px;
    }

    .fuji-faq-summary {
      font-size: 15px;
      text-align: left; /* Better readability on mobile */
    }

    .fuji-keyword-grid {
      grid-template-columns: 1fr 1fr; /* 2x2 Mobile Grid */
      gap: 12px;
    }

    .fuji-keyword-card {
      padding: 15px 8px;
    }

    .fuji-support-links a {
      display: block;
      margin: 10px 0;
    }
  }
