/* ————————————————————————————————————————————————————————————— */
/* Utbildning section                                                    */
/* ————————————————————————————————————————————————————————————— */

.utbildning-section {
  background: #fff;
  color: #333;
  padding: 6rem 1rem;
}

.utbildning-section .container {
  max-width: 800px;
  margin: 0 auto;
}

/* Header */
.utbildning-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #4b8f4e; /* accent green */
  margin-bottom: 0.5rem;
}

.utbildning-header .lead {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.125rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Fact grid */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.fact-grid .fact h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: #4b8f4e;
}

.fact-grid .fact p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Body text */
.utbildning-body p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #444;
}

/* Call-to-action */
.cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-accent {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background-color: #4b8f4e;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-accent:hover {
  background-color: #3b6f3d;
}
