
      
    


      /* RESET & BASE STYLES */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        --color-brand-dark: #8b1a1a; /* Dark Red */
        --color-brand-gold: #d2691e; /* Warm Orange/Gold */
        --color-text-main: #2c2c2c;
        --color-text-mid: #6b6560;
        --color-text-muted: #666666;
        --color-bg-light: #fffaf5; /* Very subtle warm white */
        --color-bg-white: #ffffff;
      }

      body {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: 'Lato', sans-serif;
        color: var(--color-text-main);
        background: #faf8f5;
        line-height: 1.6;
      }

      /* Typography */
      h1,
      h2,
      h3,
      h4 {
        font-family: 'Playfair Display', serif;
        color: var(--color-brand-dark);
      }

      h1 {
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
        border-bottom: none;
      }

      .subtitle {
        text-align: center;
        font-family: 'Lato', sans-serif;
        font-size: 1.2rem;
        color: var(--color-brand-gold);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 3rem;
        font-weight: 700;
      }

      h2 {
        font-size: 1.8rem;
        margin-top: 3rem;
        margin-bottom: 1rem;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(139, 26, 26, 0.2);
      }

      /* Section Headers with Icons */
      .section-header-container {
        margin-top: 4rem;
        margin-bottom: 2.5rem;
        padding: 2.5rem 2rem;
        background: #fffbf7;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(139, 26, 26, 0.08);
        border: 1px solid rgba(210, 105, 30, 0.2);
      }

      .section-header-top {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 0;
      }

      .section-icon {
        width: 80px;
        height: 80px;
        object-fit: contain;
        flex-shrink: 0;
        border-radius: 50%;
        background: transparent;
        filter: drop-shadow(0 2px 8px rgba(139, 26, 26, 0.15));
      }

      .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--color-brand-dark);
        margin: 0;
        padding: 0;
        border: none;
        line-height: 1.3;
      }

      .section-subtitle {
        font-family: 'Lato', sans-serif;
        font-size: 1rem;
        font-weight: 400;
        font-style: normal;
        color: var(--color-brand-gold);
        text-transform: none;
        letter-spacing: 0.5px;
        margin: 0.5rem 0 0 0;
      }

      .section-description {
        margin: 1rem 0 0 0;
        padding: 0;
        border-top: none;
        color: var(--color-text-muted);
        font-family: 'Lato', sans-serif;
        font-size: 1rem;
        font-weight: 400;
        font-style: normal;
        line-height: 1.6;
      }

      p {
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
      }

      /* Intro Section */
      .intro-container {
        text-align: left;
        max-width: 750px;
        margin: 0 auto 4rem auto;
        padding: 2.5rem;
        background: #ffffff;
        border: 2px solid rgba(210, 105, 30, 0.25);
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(139, 26, 26, 0.08);
      }

      .intro-container strong {
        color: var(--color-brand-dark);
      }

      /* Form Elements */
      .question-block {
        margin-bottom: 2.5rem;
        padding: 1.5rem 1.75rem;
        border-radius: 10px;
        background: #ffffff;
        border: 1px solid rgba(210, 105, 30, 0.2);
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(139, 26, 26, 0.04);
      }

      .question-block:hover {
        background: #fffbf7;
        border-color: rgba(210, 105, 30, 0.4);
        box-shadow: 0 4px 15px rgba(139, 26, 26, 0.08);
        transform: translateY(-2px);
      }

      .question-text {
        font-family: 'Lato', sans-serif;
        font-size: 1.05rem;
        color: var(--color-text-main);
        margin-bottom: 1rem;
        font-weight: 600;
        line-height: 1.5;
      }

      .q-num {
        color: var(--color-brand-gold);
        margin-right: 6px;
        font-family: 'Lato', sans-serif;
        font-weight: 600;
        font-size: 0.95rem;
      }

      .options-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .option-item {
        margin-bottom: 1.2rem;
        position: relative;
      }

      .option-label {
        display: flex;
        align-items: flex-start;
        cursor: pointer;
        padding: 12px 14px;
        border-radius: 6px;
        transition: all 0.2s;
        font-size: 0.98rem;
        color: #555;
        line-height: 1.7;
      }

      .option-label:hover {
        background-color: rgba(210, 105, 30, 0.03);
      }

      /* Custom Radio Button Styling */
      input[type='radio'] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid #c5b5a8;
        border-radius: 50%;
        margin-right: 14px;
        margin-top: 3px;
        flex-shrink: 0;
        position: relative;
        cursor: pointer;
        background-color: white;
        outline: none;
      }

      input[type='radio']:before,
      input[type='radio']:after {
        display: none !important;
        content: none !important;
      }

      input[type='radio']:checked {
        background-color: var(--color-brand-dark);
        border-color: var(--color-brand-dark);
        box-shadow: inset 0 0 0 3px white;
      }

      input[type='radio']:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.1);
      }

      /* Button Styling */
      button.submit-btn {
        display: block;
        width: 100%;
        max-width: 400px;
        margin: 4rem auto;
        background: var(--color-brand-dark);
        color: white;
        border: none;
        padding: 1.3rem;
        font-family: 'Lato', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(139, 26, 26, 0.25);
      }

      button.submit-btn:hover {
        background: #6d1414;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(139, 26, 26, 0.35);
      }

      /* Results Section */
      #results-container {
        display: none; /* Hidden by default */
        margin-top: 4rem;
        padding: 3rem 2rem;
        background: #fffbf7;
        border-radius: 16px;
        border: 2px solid rgba(210, 105, 30, 0.2);
        box-shadow: 0 8px 30px rgba(139, 26, 26, 0.1);
        animation: fadeIn 1s ease;
      }

      .result-header {
        text-align: center;
        margin-bottom: 2.5rem;
      }

      .result-header h2 {
        color: var(--color-brand-dark);
        font-size: 2.2rem;
        margin-bottom: 1rem;
        border: none;
      }

      .result-header > p {
        color: var(--color-text-muted);
        font-style: italic;
        font-size: 1.1rem;
      }

      .score-breakdown {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding: 2rem;
        background: #fffbf7;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(139, 26, 26, 0.08);
        border: 1px solid rgba(210, 105, 30, 0.2);
      }

      .score-card {
        text-align: center;
        padding: 1.5rem;
        min-width: 140px;
        border: 1px solid rgba(210, 105, 30, 0.25);
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(139, 26, 26, 0.06);
        transition: all 0.3s ease;
      }

      /* Color-coded score cards - subtle high-end colors */
      .score-card.depleted {
        background: linear-gradient(135deg, #f5e8e4 0%, #ffffff 100%);
        border-left: 4px solid #c17a6f;
      }

      .score-card.stable {
        background: linear-gradient(135deg, #f5f0e8 0%, #ffffff 100%);
        border-left: 4px solid #d4a574;
      }

      .score-card.thriving {
        background: linear-gradient(135deg, #e8f0e8 0%, #ffffff 100%);
        border-left: 4px solid #7a9e7e;
      }

      .score-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(139, 26, 26, 0.12);
      }

      .score-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--color-text-muted);
        margin-bottom: 0.5rem;
      }

      .score-value {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--color-brand-dark);
      }

      .result-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 3rem;
        background: #ffffff;
        border: 2px solid rgba(210, 105, 30, 0.3);
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(139, 26, 26, 0.12);
        line-height: 1.8;
      }

      .result-content p {
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
        color: var(--color-text-main);
      }

      .result-content strong {
        color: var(--color-brand-dark);
        font-weight: 600;
      }

      .result-title-main {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        color: var(--color-brand-dark);
        margin-bottom: 1.5rem;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .result-section-header {
        color: var(--color-brand-gold);
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 700;
        margin-top: 2rem;
        margin-bottom: 0.75rem;
        display: block;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid rgba(210, 105, 30, 0.2);
      }

      .invitation {
        margin-top: 3rem;
        padding: 2.5rem;
        border-top: 2px solid rgba(210, 105, 30, 0.25);
        background: #fffbf7;
        border-radius: 10px;
        font-style: italic;
        text-align: center;
        font-family: 'Playfair Display', serif;
        font-size: 1.15rem;
        color: var(--color-brand-dark);
        line-height: 1.8;
      }

      .cta-button {
        display: inline-block;
        margin-top: 1.5rem;
        background: var(--color-brand-dark);
        color: white;
        border: none;
        padding: 1.1rem 2.8rem;
        font-family: 'Lato', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(139, 26, 26, 0.25);
        text-decoration: none;
      }

      .cta-button:hover {
        background: #6d1414;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(139, 26, 26, 0.35);
      }

      .result-intro-box {
        background: #fffbf7;
        padding: 2rem;
        border-radius: 8px;
        margin-bottom: 3rem;
        border: 1px solid rgba(210, 105, 30, 0.2);
        text-align: left;
      }
      .result-intro-box h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        color: var(--color-brand-dark);
        margin-top: 0;
        margin-bottom: 1rem;
        text-align: center;
        border-bottom: none;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Mobile responsiveness */
      @media (max-width: 600px) {
        h1 {
          font-size: 2rem;
        }
        .question-text {
          font-size: 1.1rem;
        }
        body {
          padding: 20px 15px;
        }
      }
    


      body { font-family: Lato }
     


      {} *{} {}
     


      #IE-warning {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: white;
      }
      .IE-warning-message {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
      }
    



 .gp-component-id-tw9e1E10z { width: 100%;overflow-wrap: break-word; } @media (max-width: 639px) { .gp-component-id-tw9e1E10z { width: 100%;overflow-wrap: break-word; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-tw9e1E10z { width: 100%;overflow-wrap: break-word; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-tw9e1E10z { width: 100%;overflow-wrap: break-word; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-tw9e1E10z { width: 100%;overflow-wrap: break-word; } } @media (min-width: 1200px) { .gp-component-id-tw9e1E10z { width: 100%;overflow-wrap: break-word; } }

 .gp-component-id-qds8N7jlOb { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto; } @media (max-width: 639px) { .gp-component-id-qds8N7jlOb { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-qds8N7jlOb { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-qds8N7jlOb { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-qds8N7jlOb { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-qds8N7jlOb { z-index: 15;position: relative;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px; } }

 .gp-component-id-UDGI5ExGjE { min-height: 50px;position: relative;z-index: auto; } @media (max-width: 639px) { .gp-component-id-UDGI5ExGjE { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-UDGI5ExGjE { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-UDGI5ExGjE { min-height: 50px;position: relative;z-index: auto; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-UDGI5ExGjE { min-height: 50px;position: relative;z-index: auto; } } @media (min-width: 1200px) { .gp-component-id-UDGI5ExGjE { min-height: 50px;position: relative;z-index: auto; } }

