/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #f97316;
  --primary-dark: #ea580c;
  --secondary-color: #22c55e;
  --text-dark: #e2e8f0;
  --text-light: #94a3b8;
  --bg-light: #0b1325;
  --bg-white: #0f172a;
  --border-color: #1f2937;
  --warning-color: #fb7185;
  --success-color: #22c55e;
  --star-color: #fbbf24;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #050a16;
}

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

/* Header & Navigation */
header {
  background: rgba(15, 23, 42, 0.92);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

nav {
  padding: 1rem 0;
}

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

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.cta-btn {
  background: var(--primary-color);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: var(--primary-dark);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-visit,
.btn-review {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  margin: 0.25rem;
}

.btn-visit {
  background: var(--primary-color);
  color: white;
}

.btn-visit:hover {
  background: var(--primary-dark);
}

.btn-review {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-review:hover {
  background: var(--primary-color);
  color: white;
}

/* Hero Section */
.hero {
  background:
    linear-gradient(135deg, rgba(11, 19, 37, 0.85) 0%, rgba(15, 9, 15, 0.88) 100%),
    radial-gradient(circle at 18% 22%, rgba(249, 115, 22, 0.35), transparent 36%),
    radial-gradient(circle at 82% 8%, rgba(34, 197, 94, 0.25), transparent 30%),
    url('/assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #0f0f12;
  border: none;
}

.hero-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: white;
}

.hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

/* Sections */
section {
  padding: 4rem 0;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  text-align: center;
}

/* Platform Cards */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.platform-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.platform-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.platform-card.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(34, 197, 94, 0.08) 100%);
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.platform-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.platform-header h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.stars {
  color: var(--star-color);
  font-size: 1.1rem;
}

.score {
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0.25rem;
}

.platform-details .description {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.features {
  list-style: none;
  margin: 1rem 0;
}

.features li {
  padding: 0.5rem 0;
  color: var(--text-dark);
}

.platform-stats {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.platform-stats strong {
  color: var(--text-dark);
}

/* Comparison Table */
.comparison-table {
  background: var(--bg-light);
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #0f172a;
  border-radius: 12px;
  overflow: hidden;
}

thead {
  background: var(--primary-color);
  color: white;
}

th,
td {
  padding: 1rem;
  text-align: left;
}

tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.featured-row {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(34, 197, 94, 0.1) 100%);
  font-weight: 600;
}

.cta-box {
  background: #0f172a;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
  border: 2px solid rgba(249, 115, 22, 0.55);
}

.cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cta-box p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.blog-card h3 a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.25rem;
}

.blog-card h3 a:hover {
  color: var(--primary-color);
}

.blog-card p {
  color: var(--text-light);
  margin-top: 0.75rem;
}

.post-meta {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0.5rem 0;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Featured Post */
.featured-post {
  background: var(--bg-light);
  padding: 3rem 0;
}

.featured-card {
  background: #0f172a;
  border: 2px solid rgba(249, 115, 22, 0.5);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.featured-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.featured-card h2 a {
  color: var(--text-dark);
  text-decoration: none;
}

.featured-card h2 a:hover {
  color: var(--primary-color);
}

.post-excerpt {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 1.5rem 0;
}

.post-highlights {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.post-highlights span {
  color: var(--success-color);
  font-weight: 600;
}

/* Blog Categories */
.blog-categories {
  padding: 4rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.category-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.category-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.category-card ul {
  list-style: none;
}

.category-card li {
  padding: 0.5rem 0;
}

.category-card a {
  color: var(--primary-color);
  text-decoration: none;
}

.category-card a:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: var(--bg-light);
  padding: 3rem 0;
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Enhanced Lists */
.blog-post article ul,
.legal-page ul,
.category-card ul,
.faq-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.blog-post article li,
.legal-page li,
.category-card li,
.faq-list li {
  position: relative;
  background: rgba(249, 115, 22, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 10px;
  padding: 0.9rem 1rem 0.9rem 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-post article li::before,
.legal-page li::before,
.category-card li::before,
.faq-list li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: 800;
  margin-right: 0.6rem;
  display: inline-block;
  transform: translateY(-1px);
}

.blog-post article li strong,
.legal-page li strong,
.category-card li strong,
.faq-list li strong {
  color: var(--text-dark);
}

.blog-post .toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.35rem;
}

.blog-post .toc li {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.35rem 0;
}

.blog-post .toc li::before {
  content: none;
}

/* Latest Posts Section */
.latest-posts {
  padding: 4rem 0;
  background: #070d1a;
}

.overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.rating-label {
  color: var(--text-light);
  margin-top: 0.5rem;
}

.review-summary {
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.warning-box {
  background: #fef2f2;
  border-left: 4px solid var(--warning-color);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.feature-item {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.feature-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.rating-indicator {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pros,
.cons {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
}

.pros {
  border-left: 4px solid var(--success-color);
}

.cons {
  border-left: 4px solid var(--warning-color);
}

.pros ul,
.cons ul {
  list-style: none;
  margin-top: 1rem;
}

.pros li,
.cons li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
}

.cons li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--warning-color);
  font-weight: 700;
}

.verdict {
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.final-rating {
  font-size: 1.25rem;
  margin: 2rem 0;
  text-align: center;
}

.alternatives {
  margin-top: 3rem;
}

.alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.alt-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-dark);
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.alt-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.alt-card h3 {
  margin-bottom: 0.5rem;
}

.alt-card .rating {
  color: var(--primary-color);
  font-weight: 700;
}

/* Blog Post Styles */
.blog-post article {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.blog-post h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.blog-post .subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.toc {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.toc h3 {
  margin-bottom: 1rem;
}

.toc ul {
  list-style: none;
}

.toc li {
  padding: 0.5rem 0;
}

.toc a {
  color: var(--primary-color);
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}

.platform-section {
  margin: 3rem 0;
  padding: 2rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.platform-highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.quick-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.quick-item {
  background: white;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 8px;
}

.quick-item h3 {
  margin-bottom: 0.5rem;
}

.quick-item .rating {
  color: var(--primary-color);
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.final-cta {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 30%, #7c2d12 80%, #0f172a 100%);
  color: white;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.final-cta h3 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.final-cta .btn-primary {
  background: white;
  color: var(--primary-color);
}

/* Footer */
footer {
  background: #050814;
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
}

.footer-col li {
  padding: 0.25rem 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .rating-box {
    flex-direction: column;
  }

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

  table {
    font-size: 0.85rem;
  }

  th,
  td {
    padding: 0.75rem 0.5rem;
  }
}

/* Filter Bar */
.filters {
  background: var(--bg-white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filter-group label {
  font-weight: 600;
  color: var(--text-dark);
}

.filter-group select {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 6px;
  background: #0f172a;
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
}

.filter-group select option {
  background: #0f172a;
  color: var(--text-dark);
}

.filter-stats {
  color: var(--text-light);
}

.filter-stats strong {
  color: var(--text-dark);
}

/* All Reviews Section */
.all-reviews {
  padding: 3rem 0;
}

.table-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.table-link:hover {
  text-decoration: underline;
}

/* Related Content */
/* Related Content */
.related-content {
  background: var(--bg-light);
  padding: 4rem 0;
}

/* Legal Pages */
.legal-page {
  padding: 3rem 0;
}

.legal-page article {
  max-width: 800px;
  margin: 0 auto;
  background: #0f172a;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.last-updated {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

.legal-page section {
  margin: 2.5rem 0;
}

.legal-page h2 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(249, 115, 22, 0.3);
  text-align: left;
}

.legal-page h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
  font-weight: 600;
}

.legal-page p {
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.legal-page p a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.legal-page p a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.legal-page ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-page li {
  line-height: 1.8;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.legal-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
  text-align: center;
}

.legal-navigation a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 0 1rem;
}

.legal-navigation a:hover {
  text-decoration: underline;
}

/* Comparison Tool */
.comparison-tool {
  padding: 3rem 0;
}

.comparison-table-full {
  font-size: 0.95rem;
}

.comparison-table-full th,
.comparison-table-full td {
  padding: 1rem;
  vertical-align: middle;
}

.highlight-col {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.14) 0%, rgba(34, 197, 94, 0.12) 100%) !important;
  font-weight: 700;
  color: var(--text-dark) !important;
}

.comparison-table-full .btn-primary,
.comparison-table-full .btn-secondary {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  display: inline-block;
  margin: 0.25rem;
}

.comparison-summary {
  background: #0f172a;
  border: 2px solid rgba(249, 115, 22, 0.55);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.comparison-summary h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.comparison-summary p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.comparison-categories {
  background: #070d1a;
  padding: 4rem 0;
}

.category-comparison {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.category-comparison h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.category-comparison ol {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.category-comparison li {
  padding: 0.5rem 0;
  line-height: 1.6;
}