/* SEO Content styling voor locatiepagina's */

.locatie-content {
  background-color: #f9f9f9;
  padding: 60px 0;
}

/* CTA Button Hover Effect */
.cta-button {
  background: #f7a618;
  color: white;
  padding: 15px 40px;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

.cta-button:hover {
  background: #e69410;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247, 166, 24, 0.4);
  color: white;
  text-decoration: none;
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(247, 166, 24, 0.3);
}

.locatie-content h1 {
  color: #094794;
  margin-bottom: 30px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}

.locatie-content .content-block {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.locatie-content .content-block img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.locatie-content h2 {
  color: #f7a618;
  margin-top: 0;
  font-size: 26px;
  font-weight: bold;
}

.locatie-content h3 {
  color: #094794;
  margin-top: 30px;
  font-size: 22px;
  font-weight: bold;
}

.locatie-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.locatie-content ul {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 20px 0;
  padding-left: 20px;
}

.locatie-content ul li {
  margin-bottom: 10px;
}

.locatie-content .steps > div {
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 4px;
  border-left: 4px solid;
}

.locatie-content .steps > div:nth-child(odd) {
  background: #f0f7ff;
  border-left-color: #094794;
}

.locatie-content .steps > div:nth-child(even) {
  background: #fff8f0;
  border-left-color: #f7a618;
}

.locatie-content .cta-box {
  background: #094794;
  color: white;
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
  text-align: center;
}

.locatie-content .cta-box h3 {
  color: white;
  margin-top: 0;
}

.locatie-content .faq > div {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.locatie-content .faq > div:last-child {
  border-bottom: none;
}

.locatie-content .faq strong {
  color: #094794;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.locatie-content .faq p {
  margin: 10px 0 0 0;
  color: #666;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .locatie-content {
    padding: 40px 0;
  }
  
  .locatie-content .content-block {
    padding: 20px;
  }
  
  .locatie-content h1 {
    font-size: 24px;
  }
  
  .locatie-content h2 {
    font-size: 20px;
  }
  
  .locatie-content h3 {
    font-size: 18px;
  }
  
  .locatie-content .content-block img {
    height: 200px;
  }
}
