  <style>
    /* ============================================================
           GETTING STARTED GUIDE STYLESHEET
           Golden Ratio Consulting
    ============================================================ */

    /* 1. CSS VARIABLES & RESET */
    :root {
      --color-primary: #DAA520;
      --color-primary-dark: #B8860B;
      --color-primary-light: #FFD700;
      --transition-base: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* 2. BODY & BACKGROUND */
    body {
      font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      background: linear-gradient(135deg, #0a0a2e 0%, #16213e 100%);
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1920&q=80');
      background-size: cover;
      background-position: center;
      opacity: 0.15;
      z-index: 0;
      pointer-events: none;
    }

    /* 3. MAIN CONTENT CONTAINER */
    .content {
      position: relative;
      z-index: 1;
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem;
    }

    /* 4. HEADER SECTION */
    .header {
      text-align: center;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
    }

    /* 5. LOGO STYLING */
    .logo {
      margin-bottom: 2rem;
    }

    .logo img {
      max-width: 380px;
      width: 100%;
      height: auto;
      filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
      transition: transform 0.3s ease;
    }

    .logo img:hover {
      transform: scale(1.02);
    }

    /* 6. TYPOGRAPHY & BRANDING */
    h1 {
      color: white;
      font-size: 2.5rem;
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
      margin-bottom: 0.5rem;
    }

    h1 span {
      color: #DAA520;
    }

    .subhead {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-top: 0.5rem;
    }

    /* 7. QUICK NAVIGATION */
    .quick-nav {
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(10px);
      border-radius: 60px;
      padding: 0.75rem 1.5rem;
      margin-bottom: 2rem;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .quick-nav a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 0.85rem;
      transition: all 0.3s ease;
    }

    .quick-nav a:hover {
      color: #DAA520;
    }

    /* 8. GUIDE STEP CONTAINER */
    .guide-step {
      display: flex;
      gap: 2rem;
      margin-bottom: 3rem;
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(10px);
      border-radius: 24px;
      padding: 2rem;
      border: 1px solid rgba(218, 165, 32, 0.2);
      transition: all 0.3s ease;
    }

    .guide-step:hover {
      transform: translateY(-4px);
      border-color: rgba(218, 165, 32, 0.5);
    }

    /* 9. STEP NUMBER */
    .step-number {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #DAA520, #B8860B);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 700;
      color: white;
      font-family: 'Montserrat', sans-serif;
    }

    /* 10. STEP CONTENT */
    .step-content {
      flex: 1;
    }

    .step-content h2 {
      color: #DAA520;
      font-size: 1.6rem;
      margin-bottom: 0.5rem;
      font-family: 'Montserrat', sans-serif;
    }

    .step-content p {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    /* 11. SERVICE SELECTION GRID */
    .services-selection {
      margin: 1.5rem 0;
    }

    .section-label {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 600;
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1rem;
      margin: 1rem 0;
    }

    .service-card-selectable {
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(218, 165, 32, 0.3);
      border-radius: 16px;
      padding: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .service-card-selectable:hover {
      background: rgba(218, 165, 32, 0.1);
      transform: translateY(-2px);
    }

    .service-card-selectable.selected {
      border-color: #DAA520;
      background: rgba(218, 165, 32, 0.15);
      box-shadow: 0 0 15px rgba(218, 165, 32, 0.2);
    }

    .service-icon {
      font-size: 1.8rem;
    }

    .service-info {
      flex: 1;
    }

    .service-name {
      color: white;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 0.25rem;
    }

    .service-desc {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.7rem;
    }

    .check-indicator {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 2px solid rgba(218, 165, 32, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .service-card-selectable.selected .check-indicator {
      background: #DAA520;
      border-color: #DAA520;
    }

    .service-card-selectable.selected .check-indicator::after {
      content: '✓';
      color: white;
      font-size: 0.8rem;
    }

    /* 12. SLA SELECTION */
    .sla-selection {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin: 1rem 0;
    }

    .sla-option {
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(218, 165, 32, 0.3);
      border-radius: 16px;
      padding: 1rem;
      cursor: pointer;
      text-align: center;
      transition: all 0.3s ease;
    }

    .sla-option:hover {
      background: rgba(218, 165, 32, 0.1);
      transform: translateY(-2px);
    }

    .sla-option.selected {
      border-color: #DAA520;
      background: rgba(218, 165, 32, 0.15);
    }

    .sla-tier {
      font-size: 1.2rem;
      font-weight: 700;
      color: white;
      margin-bottom: 0.25rem;
    }

    .sla-response {
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .sla-price {
      font-size: 0.8rem;
      color: #DAA520;
      margin-top: 0.5rem;
      font-weight: 600;
    }

    /* 13. CHECKLIST */
    .checklist {
      list-style: none;
      margin: 1rem 0;
    }

    .checklist li {
      padding: 0.5rem 0;
      padding-left: 1.8rem;
      position: relative;
      color: rgba(255, 255, 255, 0.8);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .checklist li:hover {
      color: white;
    }

    .checklist li::before {
      content: '○';
      position: absolute;
      left: 0;
      color: rgba(218, 165, 32, 0.6);
      font-weight: bold;
      transition: all 0.3s ease;
    }

    .checklist li.completed::before {
      content: '✓';
      color: #4caf50;
    }

    .checklist li.completed {
      text-decoration: line-through;
      color: rgba(255, 255, 255, 0.4);
    }

    /* 14. TIP BOX */
    .tip-box {
      background: rgba(218, 165, 32, 0.1);
      border-left: 4px solid #DAA520;
      border-radius: 12px;
      padding: 1rem;
      margin: 1rem 0;
    }

    .tip-box strong {
      color: #DAA520;
    }

    .tip-box p {
      margin-bottom: 0;
    }

    /* 15. SELECTION SUMMARY */
    .selection-summary {
      background: rgba(0, 0, 0, 0.4);
      border-radius: 20px;
      padding: 1.5rem;
      margin-top: 1.5rem;
      border: 1px solid rgba(218, 165, 32, 0.3);
    }

    .selection-summary h3 {
      color: #DAA520;
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .selected-services-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .selected-service-tag {
      background: rgba(218, 165, 32, 0.2);
      border: 1px solid rgba(218, 165, 32, 0.5);
      border-radius: 50px;
      padding: 0.3rem 0.8rem;
      font-size: 0.75rem;
      color: #DAA520;
    }

    .selected-sla {
      color: white;
      margin-top: 0.5rem;
    }

    .submit-btn {
      background: linear-gradient(135deg, #DAA520, #B8860B);
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 1rem;
      transition: all 0.3s ease;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
    }

    /* 16. RESOURCES GRID */
    .resources-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .resource-card {
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 1.5rem;
      border: 1px solid rgba(218, 165, 32, 0.2);
      transition: all 0.3s ease;
    }

    .resource-card:hover {
      transform: translateY(-4px);
      border-color: rgba(218, 165, 32, 0.5);
    }

    .resource-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .resource-card h3 {
      color: white;
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .resource-card p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.85rem;
      line-height: 1.5;
      margin-bottom: 1rem;
    }

    .resource-link {
      color: #DAA520;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .resource-link:hover {
      text-decoration: underline;
    }

    /* 17. QUICK ACTIONS */
    .quick-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin: 2rem 0;
    }

    .action-link {
      background: rgba(218, 165, 32, 0.15);
      border: 1px solid rgba(218, 165, 32, 0.3);
      border-radius: 50px;
      padding: 0.6rem 1.2rem;
      color: white;
      text-decoration: none;
      font-size: 0.85rem;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .action-link:hover {
      background: rgba(218, 165, 32, 0.3);
      transform: translateY(-2px);
    }

    /* 18. FOOTER */
    .footer-note {
      margin-top: 2rem;
      text-align: center;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.3);
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* 19. RESPONSIVE */
    @media only screen and (max-width: 768px) {
      .content {
        padding: 1.5rem;
      }
      h1 {
        font-size: 2rem;
      }
      .logo img {
        max-width: 200px;
      }
      .guide-step {
        flex-direction: column;
        text-align: center;
      }
      .step-number {
        margin: 0 auto;
      }
      .sla-selection {
        grid-template-columns: 1fr;
      }
      .services-grid {
        grid-template-columns: 1fr;
      }
    }

    @media only screen and (max-width: 480px) {
      h1 {
        font-size: 1.6rem;
      }
    }
  </style>