
    /* --- Main Layout Variables --- */
    :root {
      --bg-main: #f4f2ec;
      --navy: #192341;
      --navy-hover: #2a3863;
      --text-dark: #111111;
      --text-gray: #555555;
      
      /* Form Specific Colors */
      --form-yellow: #faef85;
      --form-border: #de476c; /* The pinkish/magenta border */
      
      --font-sans: 'Inter', sans-serif;
      --font-serif: 'Playfair Display', serif;
    }

    body {
      background-color: var(--bg-main);
      color: var(--text-dark);
      font-family: var(--font-sans);
    }

    /* --- Page Container --- */
    .contact-main {
      padding-top: 140px; /* Clears fixed header */
      padding-bottom: 80px;
    }

    .contact-wrapper {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    /* --- Hero Dashed Box --- */
    .hero-dashed-box {
      border: 3px dashed #333;
      padding: 60px 50px;
      margin-bottom: 20px;
      border-radius: 4px;
    }

    .hero-display-title {
      font-family: var(--font-serif);
      font-size: 3.5rem;
      line-height: 1.15;
      font-weight: 400;
      color: #000;
      margin-bottom: 30px;
    }

    .hero-display-title .italic-serif {
      font-style: italic;
    }

    .hero-desc {
      font-family: var(--font-sans);
      font-size: 1.25rem;
      line-height: 1.5;
      color: #111;
      margin-bottom: 20px;
    }

    .hero-muted-desc {
      font-family: var(--font-sans);
      font-size: 1.1rem;
      color: #777;
      font-weight: 700;
    }

    /* --- Form Sections --- */
    .form-section-header {
      margin-bottom: 20px;
    }

    .form-section-title {
      font-family: var(--font-serif);
      font-size: 2.8rem;
      font-weight: 400;
      color: #000;
      margin-bottom: 10px;
    }

    .form-section-subtitle {
      font-family: var(--font-serif); /* Uses serif for subtitles in the design */
      font-size: 1.25rem;
      color: #222;
      font-weight: 400;
    }

    .form-box {
      background-color: var(--form-yellow);
      border: 1px solid var(--form-border);
      padding: 40px;
      display: grid;
      grid-template-columns: 1fr 1fr; /* 2 Column Layout */
      gap: 20px;
    }

    /* Form Fields */
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group.full-width {
      grid-column: 1 / -1;
    }

    .form-label {
      font-family: var(--font-sans);
      font-size: 0.85rem;
      font-weight: 600;
      color: #000;
    }

    .form-input, .form-select {
      border: none;
      padding: 14px 15px;
      font-family: var(--font-sans);
      font-size: 0.95rem;
      background-color: #fff;
      color: #333;
      width: 100%;
      border-radius: 2px;
      outline: none;
    }

    .form-input::placeholder {
      color: #aaa;
    }

    /* File Drop Zone */
    .file-drop-zone {
      border: 1.5px dashed #555;
      background-color: transparent;
      padding: 30px;
      text-align: center;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .file-drop-zone svg {
      width: 32px;
      height: 32px;
      color: #000;
    }

    .file-drop-zone .title {
      font-family: var(--font-sans);
      font-size: 0.95rem;
      color: #000;
    }

    .file-drop-zone .subtitle {
      font-family: var(--font-sans);
      font-size: 0.75rem;
      color: #666;
    }

    /* Submit Button */
    .btn-submit {
      background-color: var(--navy);
      color: #fff;
      font-family: 'JetBrains Mono', monospace;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 18px;
      border: none;
      cursor: pointer;
      width: 100%;
      transition: background-color 0.2s ease;
    }

    .btn-submit:hover {
      background-color: var(--navy-hover);
    }

    /* --- "Still Not Sure?" Section --- */
    .still-not-sure-box {
      background-color: var(--form-yellow);
      padding: 50px 60px;
      margin-top: 20px;
    }

    .sns-title {
      font-family: var(--font-serif);
      font-size: 2.2rem;
      font-weight: 400;
      margin-bottom: 25px;
    }

    .sns-email-label {
      font-family: var(--font-sans);
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 5px;
      display: block;
    }

    .sns-email-link {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      color: #b92b27;
      text-decoration: underline;
      display: inline-block;
      margin-bottom: 30px;
    }

    .sns-desc {
      font-family: var(--font-sans);
      font-size: 0.95rem;
      font-weight: 500;
      line-height: 1.6;
    }

    /* --- Responsive Adjustments --- */
    @media (max-width: 768px) {
      .contact-main { padding-top: 110px; padding-bottom: 60px; }
      
      .hero-dashed-box { padding: 40px 20px; }
      .hero-display-title { font-size: 2.4rem; }
      
      .form-section-title { font-size: 2.4rem; }
      .form-section-subtitle { font-size: 1.1rem; }
      
      .form-box { 
        padding: 25px 20px; 
        grid-template-columns: 1fr; /* Stack all inputs on mobile */
      }
      
      .still-not-sure-box { padding: 35px 25px; }
      .sns-email-link { font-size: 1.25rem; }
    }
 