
    /* Smooth Scroll Behavior */
    html {
      scroll-behavior: smooth;
    }

    /* Basic Style Reset & Variables */
    :root {
      --primary-navy: #0f172a;
      --accent-blue: #1e3a8a;
      --highlight-orange: #d97706;
      --bg-light: #f8fafc;
      --text-main: #334155;
      --text-dark: #0f172a;
      --border-color: #cbd5e1;
    }

    .fuji-partner-page {
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      color: var(--text-main);
      font-size: 16px; /* Enforced base minimum font size */
      line-height: 1.6;
      background-color: #ffffff;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .fuji-partner-page h1, 
    .fuji-partner-page h2, 
    .fuji-partner-page h3 {
      color: var(--text-dark);
      font-weight: 700;
      line-height: 1.25;
    }

    /* Hero Section */
    .fuji-hero {
      background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), 
                  url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
      color: #ffffff;
      padding: 60px 40px;
      border-radius: 12px;
      margin-bottom: 50px;
      text-align: center;
    }

    .fuji-hero h1 {
      color: #ffffff;
      font-size: 2.4rem;
      margin-bottom: 20px;
    }

    .fuji-hero p {
      font-size: 1.15rem;
      max-width: 900px;
      margin: 0 auto 30px auto;
      color: #e2e8f0;
    }

    .btn-cta {
      display: inline-block;
      background-color: var(--highlight-orange);
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 14px 32px;
      border-radius: 6px;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .btn-cta:hover {
      background-color: #b45309;
    }

    /* Common Section Styles */
    .fuji-section {
      margin-bottom: 60px;
    }

    .fuji-section h2 {
      font-size: 1.8rem;
      border-bottom: 3px solid var(--highlight-orange);
      display: inline-block;
      padding-bottom: 8px;
      margin-bottom: 30px;
    }

    /* Why Partner Grid */
    .grid-2x2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }

    .card {
      background: var(--bg-light);
      padding: 25px;
      border-radius: 8px;
      border-left: 4px solid var(--accent-blue);
    }

    .card h3 {
      margin-top: 0;
      font-size: 1.2rem;
      color: var(--accent-blue);
    }

    /* Media Block */
    .media-block {
      display: flex;
      flex-direction: row;
      gap: 30px;
      align-items: center;
    }

    .media-block img {
      width: 100%;
      max-width: 450px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .media-content {
      flex: 1;
    }

    /* List Styles */
    .fuji-list {
      list-style: none;
      padding-left: 0;
    }

    .fuji-list li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 15px;
    }

    .fuji-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--highlight-orange);
      font-weight: bold;
      font-size: 1.1rem;
    }

    /* Step Progress */
    .steps-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .step-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 20px;
      border-radius: 8px;
      position: relative;
    }

    .step-number {
      font-size: 1rem;
      font-weight: 700;
      color: var(--highlight-orange);
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    /* Form Styles */
    .form-wrapper {
      background: var(--bg-light);
      padding: 40px;
      border-radius: 12px;
      border: 1px solid var(--border-color);
    }

    .form-group-title {
      font-size: 1.2rem;
      color: var(--accent-blue);
      margin-top: 25px;
      margin-bottom: 15px;
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 5px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      margin-bottom: 15px;
    }

    .form-field label {
      font-weight: 600;
      margin-bottom: 6px;
      font-size: 1rem;
    }

    .form-field input[type="text"],
    .form-field input[type="email"],
    .form-field input[type="tel"],
    .form-field input[type="url"],
    .form-field select,
    .form-field textarea {
      padding: 10px 14px;
      border: 1px solid var(--border-color);
      border-radius: 6px;
      font-size: 1rem;
      background: #ffffff;
    }

    .form-field textarea {
      resize: vertical;
      min-height: 100px;
    }

    .checkbox-group, .radio-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 5px;
    }

    .checkbox-item, .radio-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: normal;
    }

    /* FAQ */
    .faq-item {
      margin-bottom: 25px;
      background: #ffffff;
      padding: 20px;
      border: 1px solid var(--border-color);
      border-radius: 8px;
    }

    .faq-question {
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
      font-size: 1.05rem;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .media-block {
        flex-direction: column;
      }
      .fuji-hero h1 {
        font-size: 1.8rem;
      }
      .form-wrapper {
        padding: 20px;
      }
    }
