html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Newsletter Card Styling */
.newsletter-card {
  border-radius: 1.5rem;
  background: var(--bs-light, #fff);
  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.06);
  border: none;
  transition: box-shadow 0.2s;
}
.newsletter-card .newsletter-icon {
  font-size: 2.5rem;
  color: var(--bs-primary, #0d6efd);
}
.newsletter-card .card-title {
  font-weight: 700;
  letter-spacing: -0.5px;
}
.newsletter-card .card-text {
  color: #555;
  font-size: 1.1rem;
}
.newsletter-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 767.98px) {
  .newsletter-card {
    padding: 1.5rem 0.5rem;
  }
}

/* Verberg de reCAPTCHA badge rechtsonder */
.grecaptcha-badge { 
  visibility: hidden !important;
}

/* Custom blockquote with vertical line */
.blockquote-custom {
  border-left: 4px solid #ccc;
  padding-left: 1rem;
  margin-left: 0;
}

/* Co-creatie Highlight Section */
.cocreatie-highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 0;
  margin: 3rem 0;
}

.cocreatie-card {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.cocreatie-card h2 {
  color: #333;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.cocreatie-card .lead {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cocreatie-card .row .col-md-4 {
  margin-bottom: 1.5rem;
}

.cocreatie-card .d-flex.align-items-start {
  gap: 0.75rem;
}

.cocreatie-cta {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 180px;
}

.cocreatie-cta .btn {
  white-space: nowrap;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(13, 131, 253, 0.2);
  transition: all 0.3s ease;
}

.cocreatie-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 131, 253, 0.3);
}

