body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f8f9fa;
  color: #2c3e50;
  line-height: 1.6;
}

.section-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

.plots-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

.framework-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

.framework-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
}

.framework-image {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

.figure-caption {
  font-size: 1rem;
  color: #4a5568;
  margin-top: 1rem;
  text-align: center;
  font-style: italic;
}

.plot-wrapper {
  aspect-ratio: 1;
  width: 100%;
  margin-bottom: 2rem;
  transition: transform 0.2s ease;
}

.plot-wrapper:hover {
  transform: translateY(-5px);
}

.plot-container {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  overflow: hidden;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 1.5rem;
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c5282;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
  text-align: justify;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #3182ce;
  font-weight: 600;
  transition: color 0.2s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background-color: #ebf8ff;
}

a:hover {
  color: #2c5282;
  background-color: #bee3f8;
}

.row {
  margin: 0 -1rem;
}

.col {
  padding: 1rem;
}

@media (max-width: 768px) {
  .section-container,
  .plots-container,
  .framework-container {
    padding: 1rem;
    margin: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }
}

.authors {
  text-align: center;
  margin: 1.5rem auto 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.authors-list {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #4a5568;
  text-align: center;
  width: 100%;
}

.affiliations {
  font-size: 1rem;
  color: #718096;
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
}

.author {
  display: inline;
  margin: 0 0.5rem;
} 