/* ===========================
   Apple-inspired Design System
   =========================== */

:root {
  --bg: #fbfbfd;
  --surface: #ffffff;
  --surface-secondary: #f5f5f7;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #aeaeb2;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --border: #d2d2d7;
  --border-light: #e8e8ed;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-pill: 980px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
}

.container {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   Header / Hero
   =========================== */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  padding: 56px 0 48px;
  text-align: center;
}

header h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.25;
}

header .subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-light);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.cta-primary-hero {
  background: var(--accent);
  color: white;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.cta-primary-hero:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
}

.cta-secondary-hero {
  background: transparent;
  color: var(--accent);
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--accent);
  transition: all 0.2s ease;
}

.cta-secondary-hero:hover {
  background: rgba(0,113,227,0.06);
}

.hero-trust-line {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ===========================
   What You Can See
   =========================== */
.what-section {
  padding: 48px 0;
  background: var(--surface-secondary);
}

.what-section h2 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.3px;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.what-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.what-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.what-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.what-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===========================
   Section Titles
   =========================== */
.section-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text-primary);
  margin-bottom: 18px;
}

/* ===========================
   Results / Featured
   =========================== */
.results-section {
  padding: 36px 0 8px;
}

.search-results-section {
  padding: 0 0 8px;
}

.results-count {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Review Card */
.review-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 14px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.review-card .company-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.review-card .meta {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.review-card .ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.rating-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
}

.rating-1 { background: #fff0f0; color: #d92b2b; }
.rating-2 { background: #fff4ec; color: #d4570a; }
.rating-3 { background: #fefce8; color: #a16207; }
.rating-4 { background: #f0fdf4; color: #15803d; }
.rating-5 { background: #eff6ff; color: #1d4ed8; }

.review-card .quote {
  font-size: 15px;
  line-height: 1.75;
  color: #3a3a3c;
  padding: 14px 18px;
  background: var(--surface-secondary);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

/* Card header with time */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-time {
  font-size: 12px;
  color: var(--text-tertiary);
  white-space: nowrap;
  margin-left: 12px;
}

/* Company Summary (after search) */
.company-summary {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.company-summary h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.summary-scores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.summary-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.summary-label {
  font-size: 12px;
  color: var(--text-secondary);
}

.summary-value {
  font-size: 18px;
  font-weight: 700;
  padding: 6px 16px;
}

/* Search Suggestions Dropdown */
.search-wrapper {
  position: relative;
}

.search-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 200;
  overflow: hidden;
}

.suggestion-item {
  padding: 12px 18px;
  font-size: 15px;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.15s ease;
}

.suggestion-item:hover {
  background: var(--surface-secondary);
}

.suggestion-count {
  color: var(--text-tertiary);
  font-size: 13px;
}

/* Latest Section */
.latest-section {
  padding: 36px 0 8px;
}

/* Related companies after search */
.related-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

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

/* ===========================
   Data Overview Charts
   =========================== */
.data-overview-section {
  padding: 36px 0 40px;
  background: var(--surface-secondary);
}

.data-overview-section h2 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.3px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.chart-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-light);
}

.chart-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.bar-label {
  font-size: 12px;
  color: var(--text-secondary);
  width: 80px;
  flex-shrink: 0;
  text-align: right;
}

.bar-track {
  flex: 1;
  height: 10px;
  background: var(--surface-secondary);
  border-radius: 5px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 0.6s ease;
}

.bar-color-1 { background: #ef4444; }
.bar-color-2 { background: #f97316; }
.bar-color-3 { background: #eab308; }
.bar-color-4 { background: #22c55e; }
.bar-color-5 { background: #3b82f6; }

.bar-pct {
  font-size: 12px;
  color: var(--text-tertiary);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

/* ===========================
   Search Section
   =========================== */
.search-section {
  background: var(--surface);
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.search-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.search-box {
  display: flex;
  gap: 10px;
}

.search-box input {
  flex: 1;
  padding: 13px 18px;
  font-size: 16px;
  font-family: inherit;
  background: var(--surface-secondary);
  color: var(--text-primary);
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  outline: none;
  transition: all 0.2s ease;
}

.search-box input::placeholder {
  color: var(--text-tertiary);
}

.search-box input:focus {
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.12);
}

.search-box button {
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.search-box button:hover {
  background: var(--accent-hover);
}

.search-box button:active {
  transform: scale(0.98);
}

/* ===========================
   Company List
   =========================== */
.company-list-section {
  padding: 24px 0 48px;
}

.company-list-section h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.company-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.company-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  background: var(--surface);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  user-select: none;
}

.company-chip:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.25);
}

.company-chip .count {
  margin-left: 5px;
  font-size: 12px;
  opacity: 0.6;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  background: var(--text-primary);
  color: white;
  text-align: center;
  padding: 56px 0;
}

.cta-section h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.35;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-btn {
  display: inline-block;
  padding: 15px 34px;
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
}

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

.cta-primary:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 113, 227, 0.4);
}

.cta-note {
  font-size: 13px !important;
  color: rgba(255,255,255,0.4) !important;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}

/* ===========================
   Trust Section
   =========================== */
.trust-section {
  padding: 48px 0;
  background: var(--surface-secondary);
}

.trust-section h2 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.3px;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-item {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.trust-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.trust-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
  padding: 48px 0;
}

.faq-section h2 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.3px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 0;
  margin-bottom: 8px;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.faq-item summary::before {
  content: '+';
  font-size: 18px;
  color: var(--text-tertiary);
  font-weight: 300;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::before {
  content: '-';
}

.faq-item p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===========================
   Disclaimer
   =========================== */
.disclaimer-section {
  padding: 0 0 16px;
}

.disclaimer-section details {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1px solid var(--border-light);
}

.disclaimer-section summary {
  cursor: pointer;
  font-size: 13px;
  color: var(--text-tertiary);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.disclaimer-section summary::before {
  content: '>';
  font-size: 14px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.disclaimer-section details[open] summary::before {
  transform: rotate(90deg);
}

.disclaimer-content {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.disclaimer-content h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 16px 0 4px;
}

.disclaimer-content h3:first-child {
  margin-top: 0;
}

/* ===========================
   Footer
   =========================== */
footer {
  text-align: center;
  padding: 32px 0;
  background: var(--surface-secondary);
  border-top: 1px solid var(--border-light);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links span {
  color: var(--text-tertiary);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.footer-brand {
  font-size: 12px;
  color: var(--text-tertiary);
  opacity: 0.7;
}

/* ===========================
   States
   =========================== */
.loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-tertiary);
  font-size: 15px;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
  font-size: 15px;
}

.no-results p + p { margin-top: 10px; }

.no-results a {
  color: var(--accent);
  text-decoration: none;
}

.no-results a:hover { text-decoration: underline; }

/* ===========================
   Back to Top Button
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.back-to-top-label {
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

/* ===========================
   Loading Pulse Animation
   =========================== */
.loading-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  background: var(--text-tertiary);
  border-radius: 50%;
  animation: loadingPulse 1.2s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes loadingPulse {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===========================
   Review Card Entrance Animation
   =========================== */
.review-card {
  opacity: 0;
  transform: translateY(16px);
  animation: cardFadeIn 0.45s ease forwards;
}

.review-card:nth-child(2) { animation-delay: 0.08s; }
.review-card:nth-child(3) { animation-delay: 0.16s; }
.review-card:nth-child(4) { animation-delay: 0.24s; }
.review-card:nth-child(5) { animation-delay: 0.32s; }
.review-card:nth-child(6) { animation-delay: 0.40s; }

@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   Embedded Form Section
   =========================== */
.form-section {
  padding: 48px 0;
  background: var(--surface-secondary);
}

.form-section h2 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-section-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.form-embed-wrapper {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.form-embed-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 900px;
  border: none;
}

/* ===========================
   Share Button
   =========================== */
.company-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.company-summary-header h3 {
  margin-bottom: 0;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--surface-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.share-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.share-btn svg {
  width: 14px;
  height: 14px;
}

/* ===========================
   Enhanced No Results
   =========================== */
.no-results-enhanced {
  text-align: center;
  padding: 48px 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.no-results-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.no-results-enhanced h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.no-results-enhanced > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.cta-primary-inline {
  display: inline-block;
  padding: 13px 28px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cta-primary-inline:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
}

.no-results-hint {
  font-size: 12px !important;
  color: var(--text-tertiary) !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

/* ===========================
   Toast Notification
   =========================== */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--text-primary);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 600px) {
  header {
    padding: 40px 0 36px;
  }

  header h1 {
    font-size: 26px;
  }

  header .subtitle {
    font-size: 14px;
  }

  .hero-stats {
    gap: 14px;
  }

  .hero-stat-num {
    font-size: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .what-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .review-card {
    padding: 18px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-section {
    padding: 44px 0;
  }

  .cta-section h2 {
    font-size: 22px;
  }

  .company-chip {
    padding: 10px 18px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  .form-embed-wrapper iframe {
    min-height: 1000px;
  }

  .company-summary-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
