/* co02_style.css */

.co02-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  border: 1px solid #003366; /* subtiele donkerblauwe lijn */
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.co02-title {
  text-align: center;
  font-size: 1.6rem;
  color: #003366;
  margin-bottom: 1rem;
}

.co02-text {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  color: #333;
  margin-bottom: 1rem;
}

.co02-link {
  display: inline-block;
  color: #0055aa;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.co02-link:hover {
  text-decoration: underline;
  color: #003366;
}

/* Responsief gedrag */
@media (max-width: 600px) {
  .co02-container {
    padding: 1rem;
  }

  .co02-title {
    font-size: 1.4rem;
  }

  .co02-text {
    font-size: 0.95rem;
  }
}
