/* From index.css */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-osx-font-smoothing: grayscale;
}

/* From App.css - general app styles */
.App {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa; /* A very light, clean gray */
  color: #343a40; /* A darker, more professional text color */
}

/* Global styles to prevent unwanted scrolling and ensure full viewport height */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* From App.css - content card light */
.content-card-light {
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #e9ecef;
  width: 100%;
  max-width: 800px; /* Limit width for readability */
  margin: 2rem auto; /* Center the card */
  text-align: left;
  color: #343a40;
}

.content-card-light h1,
.content-card-light h2,
.content-card-light h3 {
  margin-top: 0;
  color: #345B41; /* Dark Green */
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif; /* Consistent with app headers */
}

.content-card-light h1 {
  font-size: 2.5rem;
}

.content-card-light h2 {
  font-size: 2rem;
}

.content-card-light h3 {
  font-size: 1.8rem;
}

.content-card-light p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.content-card-light a {
  color: #345B41; /* Dark Green for links */
  text-decoration: none;
}

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