* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

:root {
  /* Institutional Registry Color System */
  --bg-primary: #fafafa;        /* off-white/paper tone */
  --bg-secondary: #ffffff;      /* clean white */
  --bg-tertiary: #f3f4f6;       /* light concrete gray */
  --bg-registry: #e5e7eb;       /* registry background */
  --text-primary: #374151;      /* dark olive */
  --text-secondary: #4b5563;    /* muted ink blue */
  --text-muted: #6b7280;        /* concrete gray */
  --text-registry: #1f2937;     /* deep ink blue */
  --accent: #92400e;            /* subtle clay/rust */
  --accent-hover: #78350f;      /* deeper clay */
  --accent-light: #fed7aa;      /* light clay accent */
  --border-light: #d1d5db;      /* light registry border */
  --border-medium: #9ca3af;     /* medium registry border */
  --border-registry: #6b7280;   /* registry border */
  --rating-color: #374151;      /* registry text color */
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  /* Registry-style typography */
  letter-spacing: 0.01em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.header {
  background-color: var(--bg-secondary);
  padding: 24px 0;
  border-bottom: 1px solid var(--border-registry);
  position: sticky;
  top: 0;
  z-index: 100;
  /* Registry-style header: flat, no shadows */
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 28px;
  width: auto;
}

.logo-fallback {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding: 8px 16px;
  /* Registry-style navigation: minimal, flat */
}

.nav a:hover {
  color: var(--text-registry);
  text-decoration: none;
  /* Remove promotional hover effects */
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

.burger-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 1px;
  opacity: 0.9;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  backdrop-filter: blur(8px);
  z-index: 100;
  padding-top: 80px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  border-right: 2px solid var(--border-medium);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 36px;
  color: var(--text-primary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
  transition: color 0.2s, transform 0.2s;
  padding: 0;
  line-height: 1;
}

.mobile-nav-close:hover {
  color: var(--accent);
  opacity: 0.8;
  transform: scale(1.05);
}

.mobile-nav-close span {
  display: block;
  font-weight: 300;
}

.mobile-nav .nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  padding: 0 32px;
}

.mobile-nav .nav a {
  display: block;
  font-size: 18px;
  padding: 20px 32px;
  width: 100%;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mobile-nav .nav a:hover,
.mobile-nav .nav a.active {
  color: var(--accent);
  background-color: var(--bg-tertiary);
  text-decoration: none;
  padding-left: 48px;
}

.intro-section {
  padding: 120px 0 100px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-medium);
  /* Registry-style: clean, no gradients */
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.intro-meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 16px 32px;
  background: var(--bg-registry);
  border-radius: 0;
  border: 1px solid var(--border-registry);
  font-size: 14px;
  color: var(--text-registry);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 500;
  /* Registry-style: flat, formal, no shadows */
}

.meta-separator {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: normal;
  /* Registry-style: neutral separator */
}

.intro-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 40px;
  color: var(--text-registry);
  letter-spacing: -0.01em;
  text-align: center;
  position: relative;
  /* Registry-style: formal, no decorative elements */
}

.intro-content h1::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--border-registry);
  /* Registry-style: simple ruled line instead of gradient */
}

.intro-divider {
  height: 1px;
  background: var(--border-registry);
  margin: 40px auto;
  width: 100px;
  position: relative;
  /* Registry-style: simple ruled line */
}

.intro-text {
  margin: 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.intro-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}

.intro-credentials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 48px 0 32px;
  padding: 24px 40px;
  background: var(--bg-registry);
  border-radius: 0;
  border: 1px solid var(--border-registry);
  /* Registry-style: flat, no shadows, formal */
  font-size: 15px;
  color: var(--text-registry);
}

.credential-separator {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
}

.credential-item {
  font-weight: 500;
  color: var(--text-registry);
  display: flex;
  align-items: center;
  gap: 8px;
}

.credential-item::before {
  content: '✓';
  color: var(--text-muted);
  font-size: 16px;
  font-weight: normal;
  /* Registry-style: checkmark instead of scales icon */
}

.intro-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 24px;
  font-weight: 400;
  opacity: 0.8;
}

.comparison-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-medium);
  /* Registry-style: clean background */
}

.comparison-header {
  margin-bottom: 64px;
  text-align: center;
}

.comparison-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.comparison-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 400;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.comparison-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 40px;
  padding: 40px 32px;
  border: 1px solid var(--border-medium);
  border-radius: 0;
  margin-bottom: 24px;
  background: var(--bg-secondary);
  align-items: start;
  /* Registry-style: flat panels, no shadows, no hover effects */
}

.comparison-item:last-child {
  border-bottom: none;
}

.comparison-rank {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 4px;
}

.rank-number {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-registry);
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  /* Registry-style: formal numbering */
}

.rank-number::before {
  content: '';
  /* Remove decorative # symbol for registry style */
}

.rank-rating {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-registry);
  line-height: 1;
  background: var(--bg-registry);
  padding: 4px 8px;
  border-radius: 0;
  border: 1px solid var(--border-light);
  /* Registry-style: neutral rating display */
}

.comparison-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-logo {
  margin-bottom: 12px;
}

.comparison-logo img {
  max-width: 160px;
  max-height: 50px;
  object-fit: contain;
  filter: brightness(0.95);
}

.comparison-logo-fallback {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.comparison-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-stats {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-stars {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 400;
  /* Registry-style: muted rating indicator */
}

.comparison-bonus {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bonus-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

.bonus-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.comparison-terms {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 4px;
}

.comparison-action {
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

.action-button {
  background-color: transparent;
  color: var(--text-registry);
  border: 1px solid var(--border-registry);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 0.01em;
  border-radius: 0;
  text-transform: none;
  /* Registry-style: outlined, secondary, no shadows */
}

.action-button:hover {
  background-color: var(--bg-registry);
  border-color: var(--border-medium);
  /* Registry-style: subtle hover, no transforms */
}

.comparison-note {
  text-align: center;
  padding: 32px;
  background-color: var(--bg-registry);
  border: 1px solid var(--border-registry);
  border-radius: 0;
  max-width: 800px;
  margin: 0 auto;
  /* Registry-style: flat, formal, no shadows */
}

.comparison-note p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.knowledge-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
  /* Registry-style: structured background */
}

.knowledge-header {
  margin-bottom: 56px;
  text-align: center;
}

.knowledge-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.knowledge-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.knowledge-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: 0;
  /* Registry-style: flat panels, no shadows, no hover effects */
}

.knowledge-block h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-registry);
  line-height: 1.3;
  margin-bottom: 8px;
  position: relative;
  padding-left: 32px;
  /* Registry-style: formal headings */
}

.knowledge-block h3::before {
  content: '■';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  /* Registry-style: square marker instead of scales */
}

.knowledge-block p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.knowledge-highlight {
  background-color: var(--bg-registry);
  padding: 32px;
  border: 1px solid var(--border-registry);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Registry-style: flat, formal highlight box */
}

.highlight-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--text-registry);
  font-weight: 500;
  position: relative;
  padding-left: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-medium);
  /* Registry-style: formal label */
}

.highlight-label::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: normal;
  /* Registry-style: dot marker instead of clipboard */
}

.knowledge-highlight p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.trust-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-medium);
  /* Registry-style: clean section */
}

.trust-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.trust-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.trust-lead strong {
  color: var(--text-primary);
  font-weight: 600;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 32px;
  background-color: var(--bg-registry);
  border-radius: 0;
  border: 1px solid var(--border-registry);
  /* Registry-style: neutral background, no promotional effects */
}

.trust-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.2s ease;
  padding: 16px;
  border-radius: 0;
  /* Registry-style: flat, minimal hover */
}

.trust-logos a:hover {
  opacity: 1;
  /* Remove promotional transforms */
}

.trust-logos img {
  height: 36px;
  width: auto;
  filter: grayscale(0.1);
}

.footer {
  background-color: var(--bg-registry);
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-registry);
  /* Registry-style: formal footer */
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 8px 16px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  /* Registry-style: flat, formal */
}

.footer-nav a:hover {
  color: var(--text-registry);
  background-color: transparent;
  text-decoration: none;
  /* Registry-style: minimal hover */
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.disclaimer-text {
  font-size: 11px !important;
}

@media (max-width: 968px) {
  .container {
    padding: 0 24px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .intro-content h1 {
    font-size: 44px;
  }

  .intro-meta {
    padding: 10px 20px;
    font-size: 12px;
  }

  .intro-credentials {
    padding: 18px 28px;
    gap: 20px;
    font-size: 13px;
  }

  .comparison-item {
    grid-template-columns: 60px 1fr;
    gap: 24px;
  }

  .comparison-action {
    grid-column: 2;
    margin-top: 16px;
  }

  .knowledge-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .intro-section {
    padding: 80px 0 60px;
  }

  .intro-content h1 {
    font-size: 36px;
  }

  .intro-meta {
    padding: 10px 20px;
    font-size: 12px;
  }

  .intro-credentials {
    padding: 16px 24px;
    gap: 16px;
    font-size: 13px;
  }

  .comparison-section {
    padding: 60px 0;
  }

  .comparison-header h2 {
    font-size: 28px;
  }

  .comparison-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  .comparison-rank {
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }

  .comparison-action {
    grid-column: 1;
    margin-top: 0;
  }

  .knowledge-section {
    padding: 60px 0;
  }

  .knowledge-header h2 {
    font-size: 28px;
  }

  .nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .container {
    padding: 0 20px;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .trust-section {
    padding: 60px 0;
  }

  .trust-logos {
    gap: 20px;
  }

  .trust-logos img {
    height: 28px;
  }
}

/* About, Contact, Privacy, Terms, Cookies, Legal Pages */
.about-hero {
  padding: 80px 0 60px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-medium);
  /* Registry-style: clean hero section */
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.last-updated {
  color: var(--text-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.about-section .container {
  max-width: 900px;
}

.content-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: 0;
  padding: 48px 40px;
  margin-bottom: 32px;
  border-left: 2px solid var(--border-registry);
  /* Registry-style: flat panels with subtle left border */
}

.content-card h2 {
  color: var(--text-primary);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  letter-spacing: -0.01em;
}

.content-card h3 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 24px;
}

.content-card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-card ul,
.content-card ol {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-card li {
  margin-bottom: 12px;
}

.content-card strong {
  color: var(--text-primary);
  font-weight: 600;
}

.expertise-list li {
  margin-bottom: 16px;
}

.service-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.service-section:first-child {
  margin-top: 24px;
  padding-top: 0;
  border-top: none;
}

.standard-section {
  margin-top: 32px;
  padding: 24px;
  background-color: var(--bg-registry);
  border-radius: 0;
  border-left: 1px solid var(--border-registry);
  /* Registry-style: subtle left border, formal background */
}

.standard-section:first-child {
  margin-top: 24px;
}

.standard-section h3 {
  margin-top: 0;
}

.review-process-list {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.review-process-list li {
  counter-increment: item;
  margin-bottom: 20px;
  padding-left: 48px;
  position: relative;
}

.review-process-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--bg-primary);
  color: var(--accent);
  border: 1px solid var(--border-medium);
  width: 24px;
  height: 24px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  background-color: var(--bg-registry);
  padding: 24px;
  border-radius: 0;
  border: 1px solid var(--border-medium);
  /* Registry-style: formal contact box */
}

.contact-item {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.contact-item strong {
  color: var(--accent);
  font-weight: 600;
  margin-right: 8px;
}

.contact-card {
  border-left-color: var(--accent);
}

.commitment-card {
  border-left-color: var(--accent);
  background-color: var(--bg-secondary);
}

.commitment-list {
  list-style: none;
  padding-left: 0;
}

.commitment-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.commitment-list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 200;
  font-size: 14px;
  opacity: 0.7;
}

/* Reviews Page */
.reviews-hero {
  background-color: var(--bg-secondary);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border-medium);
  /* Registry-style: clean hero section */
}

.reviews-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 32px;
}

.features-list {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list li {
  font-size: 16px;
  color: var(--text-secondary);
  padding-left: 0;
}

.review-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  justify-content: center;
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-registry);
  padding: 12px 24px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  border-left: 1px solid var(--border-registry);
  border: 1px solid var(--border-medium);
  /* Registry-style: formal badge */
}

.review-badge .badge-icon {
  font-size: 16px;
  color: var(--accent);
  opacity: 0.8;
}

.reviews-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

#reviews-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 80px;
}

.review-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: 0;
  padding: 40px;
  border-left: 1px solid var(--border-registry);
  /* Registry-style: flat card */
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.review-casino-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.review-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.review-logo img {
  max-width: 140px;
  max-height: 50px;
  object-fit: contain;
  filter: brightness(0.95);
}

.review-logo-fallback {
  background-color: var(--bg-secondary);
  padding: 16px 32px;
  border-radius: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.review-title-section {
  flex: 1;
}

.review-title {
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.review-rating-display {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-score {
  font-size: 36px;
  font-weight: 700;
  color: var(--rating-color);
}

.review-stars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars {
  color: var(--rating-color);
  font-size: 16px;
  letter-spacing: 2px;
}

.rating-label {
  color: var(--text-muted);
  font-size: 13px;
}

.review-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.review-date {
  color: var(--text-muted);
  font-size: 13px;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-registry);
  color: var(--text-registry);
  padding: 6px 12px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border-medium);
  /* Registry-style: formal verification badge */
}

.verified-icon {
  color: var(--accent);
}

.rating-bars {
  margin-bottom: 32px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.rating-label-text {
  min-width: 180px;
  color: var(--text-secondary);
  font-size: 14px;
}

.bar-container {
  flex: 1;
  height: 8px;
  background-color: var(--bg-secondary);
  border-radius: 0;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background-color: var(--accent);
  border-radius: 0;
  transition: width 0.6s ease-out;
}

.rating-value {
  min-width: 40px;
  text-align: right;
  color: var(--rating-color);
  font-weight: 600;
  font-size: 14px;
}

.player-review {
  background-color: var(--bg-secondary);
  padding: 24px;
  border-radius: 0;
  margin-bottom: 32px;
  border-left: 3px solid var(--accent);
}

.player-review-header {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.player-review-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pros-section,
.cons-section {
  background-color: var(--bg-registry);
  padding: 24px;
  border-radius: 0;
  border: 1px solid var(--border-medium);
  /* Registry-style: formal sections */
}

.pros-section {
  border-left: 2px solid var(--text-muted);
}

.cons-section {
  border-left: 2px solid var(--text-muted);
}

.pros-header,
.cons-header {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pros-header {
  color: #10b981;
}

.cons-header {
  color: #ef4444;
}

.pros-list,
.cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}

.pros-list li {
  color: var(--text-secondary);
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}

.pros-list li::before {
  content: '○';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 300;
  font-size: 12px;
  opacity: 0.8;
}

.cons-list li {
  color: var(--text-secondary);
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}

.cons-list li::before {
  content: '△';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 300;
  font-size: 11px;
  opacity: 0.8;
}

.review-process-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border-light);
}

.review-process-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.review-criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.criteria-card {
  background-color: var(--bg-primary);
  padding: 32px;
  border-radius: 0;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: border-color 0.2s;
  border-left: 3px solid var(--accent);
}

.criteria-card:hover {
  border-color: var(--accent);
}

.criteria-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.criteria-card h3 {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.criteria-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Contact Page Specific */
.contact-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.contact-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.contact-detail {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-secondary);
}

.contact-detail strong {
  color: var(--text-primary);
  font-weight: 600;
  margin-right: 8px;
}

.help-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.help-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.help-section h3 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.help-section ul {
  list-style: none;
  padding-left: 0;
}

.help-section li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.help-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.faq-item-page {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.faq-item-page:last-child {
  border-bottom: none;
}

.faq-item-page h3 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-item-page p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.response-list {
  list-style: none;
  padding-left: 0;
}

.response-list li {
  padding-left: 0;
  margin-bottom: 12px;
}

.response-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Cookie Policy Page */
.cookie-type-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.cookie-type-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.cookie-type-section h3 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cookie-list {
  list-style: none;
  padding-left: 0;
}

.cookie-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.cookie-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.cookie-management-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.cookie-management-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.cookie-management-section h3 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cookie-management-section a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-management-section a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Legal Page */
.legal-info-box {
  background-color: var(--bg-secondary);
  padding: 24px;
  border-radius: 0;
  margin-top: 20px;
  border-left: 3px solid var(--accent);
}

.legal-info-item {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-info-item:last-child {
  margin-bottom: 0;
}

.legal-label {
  color: var(--text-primary);
  font-weight: 600;
  margin-right: 8px;
}

.important-disclaimer {
  background-color: var(--bg-secondary);
  padding: 20px;
  border-radius: 0;
  margin-top: 24px;
  border-left: 3px solid var(--accent);
}

.important-disclaimer p {
  margin: 0;
  color: var(--text-primary);
  font-size: 16px;
}

.rg-resources {
  background-color: var(--bg-secondary);
  padding: 20px;
  border-radius: 0;
  margin-top: 20px;
  border-left: 3px solid var(--accent);
}

.rg-resources p {
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 600;
}

.rg-resources ul {
  margin-top: 12px;
}

.copyright-notice {
  background-color: var(--bg-secondary);
  padding: 16px;
  border-radius: 0;
  margin: 20px 0;
  border-left: 3px solid var(--accent);
}

.copyright-notice p {
  margin: 0;
  color: var(--text-primary);
  font-size: 14px;
}

.transparency-notice,
.editorial-notice {
  background-color: var(--bg-secondary);
  padding: 20px;
  border-radius: 0;
  margin-top: 20px;
  border-left: 3px solid var(--accent);
}

.transparency-notice p,
.editorial-notice p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.help-resources {
  list-style: none;
  padding-left: 0;
}

.help-resources li {
  padding-left: 0;
  margin-bottom: 12px;
}

.help-resources li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Footer Certifications */
.footer-certifications {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.footer-certifications a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-certifications a:hover {
  opacity: 1;
}

.footer-certifications img {
  height: 32px;
  width: auto;
  filter: grayscale(0.3);
}

.footer-icons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 24px;
  opacity: 0.5;
}

.nav a.active {
  color: var(--accent);
  font-weight: 600;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

/* Responsive Styles for Other Pages */
@media (max-width: 968px) {
  .about-hero h1 {
    font-size: 36px;
  }

  .content-card {
    padding: 32px 24px;
  }

  .content-card h2 {
    font-size: 24px;
  }

  .content-card h3 {
    font-size: 18px;
  }

  .review-header {
    flex-direction: column;
  }

  .review-meta {
    align-items: flex-start;
    width: 100%;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .rating-label-text {
    min-width: 150px;
    font-size: 13px;
  }

  .review-criteria-grid {
    grid-template-columns: 1fr;
  }

  .review-casino-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 60px 0 40px;
  }

  .about-hero h1 {
    font-size: 28px;
  }

  .content-card {
    padding: 24px 20px;
  }

  .content-card h2 {
    font-size: 22px;
  }

  .about-section {
    padding: 60px 0;
  }

  .reviews-hero h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .review-card {
    padding: 24px 20px;
  }

  .review-title {
    font-size: 20px;
  }

  .review-score {
    font-size: 28px;
  }

  .rating-label-text {
    min-width: 120px;
    font-size: 12px;
  }

  .review-process-section h2 {
    font-size: 28px;
  }

  .review-process-list li {
    padding-left: 40px;
  }

  .review-process-list li::before {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}