/* Global Typography and Line Spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* Paragraphs and Text Content */
p {
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Lists */
ul, ol {
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Content sections */
.content, .card-content, .section {
  line-height: 1.7;
}

/* Specific content areas that need better spacing */
.card-text {
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Article and blog content */
article p, .blog-content p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

article li, .blog-content li {
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* Improve readability for longer text blocks */
.text-content, .long-form {
  line-height: 1.8;
  letter-spacing: 0.01em;
}

/* Table spacing */
table {
  line-height: 1.6;
  border-spacing: 0;
  margin-bottom: 1.5rem;
}

td, th {
  padding: 0.75rem 1rem;
  line-height: 1.5;
}

/* Blockquotes */
blockquote {
  line-height: 1.7;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #2E5C8A;
  background: #f8f9fa;
}

/* Form elements */
input, textarea, select {
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
}

label {
  line-height: 1.5;
  margin-bottom: 0.5rem;
  display: inline-block;
}

/* Button spacing */
.btn, button {
  line-height: 1.5;
  padding: 0.75rem 1.5rem;
}

/* Footer spacing */
.footer-links a {
  line-height: 2;
}

/* Mobile responsive line-height adjustments */
@media (max-width: 768px) {
  body {
    line-height: 1.55;
  }
  
  p {
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  h3 {
    font-size: 1.35rem;
    margin-bottom: 0.875rem;
  }
}