/* css styles */

body {
    font-size: 1.1rem;
    line-height: 1.7;
}

h1, h2, h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  border-bottom: 3px solid #2c5aa0;
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 1.8rem;
  color: #2c5aa0;
}

/* Better link styling */
a {
  color: #2c5aa0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.2s;
}

a:hover {
  border-bottom: 1px solid #2c5aa0;
}

/* Card-like sections */
.quarto-title {
  margin-bottom: 2rem;
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6b 100%);
  color: white;
  padding: 4rem 2rem;
  margin: -2rem -2rem 3rem -2rem;
  border-radius: 0;
}

.hero h1 {
  color: white;
  border: none;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 800px;
  line-height: 1.6;
}

.hero .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s;
}

.hero .btn-primary {
  background: white;
  color: #2c5aa0;
  text-decoration: none;
}

.hero .btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.hero .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  text-decoration: none;
}

.hero .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}