body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f3f4f6;
  color: #1a1a1a;
}

img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
}

.wrapper.narrow {
  /* max-width: 780px; */
  min-height: 100vh;
}

header {
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo:hover {
  cursor: pointer;
}

.wrapper.narrow > header .logo img {
  width: 7rem;
}

.header-cta {
  background: #c01818;
  color: #fff;
  padding: 18px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  font-size: 18px;
}

section {
  padding: 40px 32px;
}

.Robert {
  text-align: center;
}

.hero {
  background: linear-gradient(135deg, #fff, #fdecec);
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 16px;
}

.author {
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
}

.cta {
  display: inline-block;
  margin-top: 28px;
  background: #c01818;
  color: #fff;
  padding: 16px 32px;
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

.trust {
  margin-top: 16px;
  font-size: 15px;
  color: #555;
  text-align: center;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 24px;
}

.card h3 {
  color: #c01818;
}

.quote {
  background: #f9f9f9;
  border-left: 5px solid #c01818;
  padding: 24px;
  font-style: italic;
  font-size: 18px;
}

.center {
  text-align: center;
}

.dark {
  background: #111;
  color: #fff;
  text-align: center;
}

.price {
  font-size: 46px;
  color: #ff4d4d;
  margin: 12px 0;
}

.strike {
  text-decoration: line-through;
  opacity: 0.6;
}

.faq p {
  margin-bottom: 20px;
}

footer {
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #ddd;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 30px;
  }
}
.whitepaper-meta {
  margin: 32px auto 40px;
  max-width: 900px;
  text-align: center;
}

.whitepaper-quote {
  font-size: 18px;
  color: #444;
  margin-bottom: 14px;
  font-style: italic;
}

.whitepaper-attribution {
  font-size: 14px;
  color: #666;
}

.quote-line {
  margin-right: 6px;
  color: #999;
}

.author-name {
  font-weight: bold;
  color: #111;
}

.author-title {
  margin-left: 2px;
}

.separator {
  margin: 0 6px;
  color: #999;
}

.publish-info {
  color: #888;
}
.hero p {
  text-align: left;
}
.hero p {
  text-align: left;
}
.site-disclosure {
  text-align: center;
  font-size: 14px;
  color: #888888;
  padding: 8px 0;
  background-color: #f5f5f5;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Shared styles for legal and contact pages */
* {
  box-sizing: border-box;
}

.page-content {
  padding: 40px 28px 60px;
}

.subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 36px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

p,
li {
  font-size: 15px;
  color: #444;
}

ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 6px;
}

a {
  color: #0073e6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.highlight-box {
  background: #f0f7ff;
  border-left: 4px solid #0073e6;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 14px;
  color: #444;
}

/* Contact page styles */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.contact-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 24px;
}

.contact-card h3 {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  margin-bottom: 6px;
}

.response-note {
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
  font-size: 14px;
  color: #555;
}

/* Responsive adjustments for Index Page */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
  }

  .logo {
    margin-bottom: 5px;
    justify-content: center;
  }

  .logo img {
    width: 6rem;
  }

  .header-cta {
    width: 100%;
    text-align: center;
    padding: 12px 15px;
    font-size: 16px;
    box-sizing: border-box;
  }

  .hero {
    padding: 30px 20px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
    padding: 0;
    text-align: center; /* Center align on mobile for better flow */
  }

  .whitepaper-meta {
    margin: 20px auto 30px;
  }

  .cta {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
    font-size: 18px;
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  section {
    padding: 30px 20px;
  }

  h2 {
    font-size: 26px;
  }

  .price {
    font-size: 36px;
  }

  .footer p {
    flex-direction: column;
    gap: 10px;
  }

  .site-disclosure {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .quote {
    padding: 15px;
    font-size: 16px;
  }
}
