﻿/* Activiteiten Page Specific Styles */
.activiteiten-content {
  padding-top: 20px;
  padding-bottom: 40px;
}
.activiteiten-content h1 {
  margin-bottom: 20px;
  color: #333;
}
.activiteiten-content .lead {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #555;
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Service Card Styling */
.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.service-card-image {
  position: relative;
  width: 100%;
  padding-top: 60%; /* 5:3 aspect ratio */
  overflow: hidden;
  background-color: #f5f5f5;
}
.service-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.service-card-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  flex-grow: 1;
}

.service-card-link {
  display: inline-block;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  margin-top: auto;
  transition: color 0.2s ease;
}
.service-card-link:hover {
  color: #0056b3;
  text-decoration: none;
}
.service-card-link:hover i {
  margin-left: 8px;
}
.service-card-link i {
  margin-left: 5px;
  transition: margin-left 0.2s ease;
}

/* Trust indicators section */
.trust-section {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
}
.trust-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .trust-indicators {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-item {
  padding: 15px;
}
.trust-item i {
  color: #007bff;
  margin-bottom: 10px;
}
.trust-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 40px;
  border-radius: 8px;
  margin-top: 40px;
  text-align: center;
}
.cta-section h2 {
  color: white;
  margin-bottom: 15px;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.cta-section .btn {
  font-size: 1.1rem;
  padding: 12px 30px;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 30px 20px;
  }
}
