/**
 * Scottish Landlord Compliance Check - Styles
 * Scoped under .quiz-wrapper for Lektor site integration
 * Property Angels Brand: Gold #b19260, Navy #142f5b
 */

/* CSS Variables */
.quiz-wrapper {
  --gold: #b19260;
  --gold-light: #c9a96f;
  --gold-dark: #8f7548;
  --navy: #142f5b;
  --navy-dark: #0a1628;
  --navy-light: #1e4175;
  --blue: #b19260;
  --blue-light: #c9a96f;
  --blue-pale: #fdfbf7;
  --cream: #fdfbf7;
  --cream-dark: #f0eadd;
  --white: #ffffff;
  --gray-50: #fdfbf7;
  --gray-100: #f0eadd;
  --gray-200: #e5dfcc;
  --gray-300: #d1c9b4;
  --gray-400: #9c917a;
  --gray-500: #6b6154;
  --gray-600: #4b4339;
  --gray-700: #3a3328;
  --gray-800: #2a251c;
  --success: #38a169;
  --success-light: #c6f6d5;
  --warning: #d69e2e;
  --warning-light: #fefcbf;
  --danger: #e53e3e;
  --danger-light: #fed7d7;
  --border: #e5dfcc;
}

/* Quiz Container */
.quiz-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--gray-50);
}

.quiz-wrapper *,
.quiz-wrapper *::before,
.quiz-wrapper *::after {
  box-sizing: border-box;
}

/* Quiz Header */
.quiz-wrapper .quiz-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.quiz-wrapper .quiz-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(177, 146, 96, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.quiz-wrapper .quiz-title {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  color: var(--white);
  font-size: 1.75rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.quiz-wrapper .quiz-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.quiz-wrapper .header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(56, 161, 105, 0.15);
  border: 1px solid rgba(56, 161, 105, 0.3);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--success-light);
}

.quiz-wrapper .header-badge i {
  color: var(--success);
}

/* Progress Bar */
.quiz-wrapper .progress-container {
  margin-bottom: 1rem;
}

.quiz-wrapper .progress-bar-wrapper {
  background: var(--gray-200);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.quiz-wrapper #quiz-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transition: width 0.4s ease;
  width: 9.09%;
  border-radius: 3px;
}

.quiz-wrapper #progress-text {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Quiz Card */
.quiz-wrapper #quiz-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  flex: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Question Styles */
.quiz-wrapper .question-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.quiz-wrapper .question-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.quiz-wrapper .question-title {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.quiz-wrapper .question-subtitle {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin: 0;
}

.quiz-wrapper .selection-hint {
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Question Options */
.quiz-wrapper .question-options {
  display: grid;
  gap: 0.75rem;
}

.quiz-wrapper .quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--white);
}

.quiz-wrapper .quiz-option:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
}

.quiz-wrapper .quiz-option.selected {
  border-color: var(--blue);
  background: var(--blue-pale);
}

.quiz-wrapper .quiz-option.selected .option-check {
  opacity: 1;
  color: var(--blue);
}

.quiz-wrapper .option-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.quiz-wrapper .option-icon i {
  font-size: 1.1rem;
  color: var(--gray-500);
}

.quiz-wrapper .quiz-option.selected .option-icon {
  background: var(--navy);
}

.quiz-wrapper .quiz-option.selected .option-icon i {
  color: var(--white);
}

.quiz-wrapper .option-content {
  flex: 1;
}

.quiz-wrapper .option-label {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 0.125rem;
}

.quiz-wrapper .option-description {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.quiz-wrapper .option-check {
  font-size: 1.25rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  color: var(--border);
}

/* Multi-select grid layout */
.quiz-wrapper .question-options.multi-select {
  grid-template-columns: repeat(2, 1fr);
}

.quiz-wrapper .question-options.multi-select .quiz-option {
  padding: 0.875rem 1rem;
}

.quiz-wrapper .question-options.multi-select .option-icon {
  width: 36px;
  height: 36px;
}

.quiz-wrapper .question-options.multi-select .option-description {
  display: none;
}

@media (max-width: 600px) {
  .quiz-wrapper .question-options.multi-select {
    grid-template-columns: 1fr;
  }
}

/* Question Animation */
.quiz-wrapper .question-entering {
  animation: quizSlideIn 0.3s ease;
}

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

/* Navigation */
.quiz-wrapper .quiz-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.quiz-wrapper .nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  border-radius: 8px;
  font-family: inherit;
}

.quiz-wrapper #prev-btn {
  background: var(--gray-100);
  color: var(--gray-600);
}

.quiz-wrapper #prev-btn:hover:not(:disabled) {
  background: var(--gray-200);
}

.quiz-wrapper #next-btn {
  background: var(--navy);
  color: var(--white);
}

.quiz-wrapper #next-btn:hover:not(:disabled) {
  background: var(--navy-dark);
}

.quiz-wrapper .nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Lead Capture Form */
.quiz-wrapper .lead-capture {
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
}

.quiz-wrapper .lead-capture-header {
  margin-bottom: 1.5rem;
}

.quiz-wrapper .completion-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.quiz-wrapper .completion-icon i {
  font-size: 1.75rem;
  color: var(--blue-light);
}

.quiz-wrapper .lead-capture-header h2 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.quiz-wrapper .lead-capture-header p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin: 0;
}

/* Form Styles */
.quiz-wrapper .lead-form {
  text-align: left;
}

.quiz-wrapper .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .quiz-wrapper .form-row {
    grid-template-columns: 1fr;
  }
}

.quiz-wrapper .form-group {
  margin-bottom: 1rem;
}

.quiz-wrapper .form-group label {
  display: block;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
  font-size: 0.85rem;
}

.quiz-wrapper .form-group input[type="text"],
.quiz-wrapper .form-group input[type="email"],
.quiz-wrapper .form-group input[type="tel"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
  background: var(--white);
}

.quiz-wrapper .form-group input:focus {
  outline: none;
  border-color: var(--blue);
}

.quiz-wrapper .checkbox-group {
  margin-top: 1rem;
}

.quiz-wrapper .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.quiz-wrapper .checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.quiz-wrapper .submit-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  margin-top: 1rem;
  font-family: inherit;
}

.quiz-wrapper .submit-btn:hover:not(:disabled) {
  background: var(--navy-dark);
}

.quiz-wrapper .submit-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* Trust Badges */
.quiz-wrapper .trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.quiz-wrapper .trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.8rem;
}

.quiz-wrapper .trust-badge i {
  color: var(--success);
}

/* Results Page */
.quiz-wrapper .results-page {
  animation: quizFadeIn 0.5s ease;
}

@keyframes quizFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.quiz-wrapper .results-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.quiz-wrapper .results-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.quiz-wrapper .results-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quiz-wrapper .results-section h2 i {
  color: var(--blue);
}

/* Compliance Score Section */
.quiz-wrapper .score-section {
  text-align: center;
  padding-bottom: 2rem;
}

.quiz-wrapper .score-circle {
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
  position: relative;
}

.quiz-wrapper .score-circle svg {
  transform: rotate(-90deg);
}

.quiz-wrapper .score-bg {
  fill: none;
  stroke: var(--gray-200);
  stroke-width: 8;
}

.quiz-wrapper .score-fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
}

.quiz-wrapper .score-fill.score-high {
  stroke: var(--success);
}

.quiz-wrapper .score-fill.score-medium {
  stroke: var(--warning);
}

.quiz-wrapper .score-fill.score-low {
  stroke: var(--danger);
}

.quiz-wrapper .score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
}

.quiz-wrapper .score-label {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Regulatory Note */
.quiz-wrapper .regulatory-note {
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.quiz-wrapper .regulatory-note-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-size: 0.9rem;
}

.quiz-wrapper .regulatory-note-header i {
  color: var(--blue);
}

.quiz-wrapper .regulatory-note p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Persona Section */
.quiz-wrapper .persona-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.quiz-wrapper .persona-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quiz-wrapper .persona-icon i {
  font-size: 1.5rem;
}

.quiz-wrapper .persona-intro {
  flex: 1;
}

.quiz-wrapper .persona-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.quiz-wrapper .persona-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

.quiz-wrapper .persona-tagline {
  font-style: italic;
  color: var(--gray-500);
  font-size: 0.9rem;
  margin: 0.25rem 0 0;
}

.quiz-wrapper .persona-description {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Compliance Status Cards */
.quiz-wrapper .status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (max-width: 500px) {
  .quiz-wrapper .status-grid {
    grid-template-columns: 1fr;
  }
}

.quiz-wrapper .status-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  background: var(--gray-50);
  border: 1px solid var(--border);
}

.quiz-wrapper .status-card.status-green {
  background: var(--success-light);
  border-color: var(--success);
}

.quiz-wrapper .status-card.status-amber {
  background: var(--warning-light);
  border-color: var(--warning);
}

.quiz-wrapper .status-card.status-red {
  background: var(--danger-light);
  border-color: var(--danger);
}

.quiz-wrapper .status-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quiz-wrapper .status-green .status-icon {
  background: var(--success);
  color: white;
}

.quiz-wrapper .status-amber .status-icon {
  background: var(--warning);
  color: white;
}

.quiz-wrapper .status-red .status-icon {
  background: var(--danger);
  color: white;
}

.quiz-wrapper .status-unknown .status-icon {
  background: var(--gray-400);
  color: white;
}

.quiz-wrapper .status-content {
  flex: 1;
  min-width: 0;
}

.quiz-wrapper .status-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-bottom: 0.125rem;
}

.quiz-wrapper .status-value {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Action Items Section */
.quiz-wrapper .action-items {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 1.25rem;
}

.quiz-wrapper .action-items h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quiz-wrapper .action-items h3 i {
  color: var(--danger);
}

.quiz-wrapper .action-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quiz-wrapper .action-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.quiz-wrapper .action-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.quiz-wrapper .action-number {
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.quiz-wrapper .action-content {
  flex: 1;
}

.quiz-wrapper .action-title {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.quiz-wrapper .action-detail {
  color: var(--gray-500);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Risk Warning */
.quiz-wrapper .risk-warning {
  background: var(--danger-light);
  border: 1px solid var(--danger);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.quiz-wrapper .risk-warning i {
  color: var(--danger);
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.quiz-wrapper .risk-warning p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.5;
}

.quiz-wrapper .risk-warning strong {
  color: var(--danger);
}

/* CTA Section */
.quiz-wrapper .cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  margin: 1.5rem -2rem -2rem;
  padding: 2rem;
  border-radius: 0 0 12px 12px;
  color: var(--white);
}

.quiz-wrapper .cta-section h2 {
  color: var(--white);
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.quiz-wrapper .cta-section > p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 380px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
}

.quiz-wrapper .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.quiz-wrapper .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  border-radius: 8px;
}

.quiz-wrapper .cta-btn.primary {
  background: var(--blue);
  color: var(--white);
}

.quiz-wrapper .cta-btn.primary:hover {
  background: var(--blue-light);
}

.quiz-wrapper .cta-btn.secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.quiz-wrapper .cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--blue-light);
}

.quiz-wrapper .cta-contact {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.quiz-wrapper .cta-contact p {
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.quiz-wrapper .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--white);
  text-decoration: none;
  margin: 0 0.75rem;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.quiz-wrapper .contact-link:hover {
  color: var(--blue-light);
}

/* Share Section */
.quiz-wrapper .share-section {
  text-align: center;
  padding-top: 1rem;
}

.quiz-wrapper .share-section p {
  color: var(--gray-500);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.quiz-wrapper .share-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.quiz-wrapper .share-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.quiz-wrapper .share-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* Responsive */
@media (max-width: 640px) {
  .quiz-wrapper {
    padding: 1rem;
  }

  .quiz-wrapper .quiz-header {
    padding: 1.5rem;
  }

  .quiz-wrapper .quiz-title {
    font-size: 1.5rem;
  }

  .quiz-wrapper #quiz-container {
    padding: 1.5rem;
  }

  .quiz-wrapper .question-title {
    font-size: 1.25rem;
  }

  .quiz-wrapper .quiz-option {
    padding: 0.875rem 1rem;
  }

  .quiz-wrapper .option-icon {
    width: 40px;
    height: 40px;
  }

  .quiz-wrapper .persona-header {
    flex-direction: column;
    text-align: center;
  }

  .quiz-wrapper .persona-name {
    font-size: 1.25rem;
  }

  .quiz-wrapper .cta-section {
    margin: 1.5rem -1.5rem -1.5rem;
    padding: 1.5rem;
  }

  .quiz-wrapper .cta-buttons {
    flex-direction: column;
  }

  .quiz-wrapper .cta-btn {
    justify-content: center;
  }
}

/* Print Styles */
@media print {
  .quiz-wrapper {
    max-width: 100%;
  }

  .quiz-wrapper .quiz-header,
  .quiz-wrapper .progress-container,
  .quiz-wrapper .quiz-navigation,
  .quiz-wrapper .cta-buttons,
  .quiz-wrapper .share-section {
    display: none;
  }

  .quiz-wrapper #quiz-container {
    border: none;
    box-shadow: none;
  }

  .quiz-wrapper .cta-section {
    display: none;
  }
}
