/* CSS Custom Properties - Danish-inspired color palette */
:root {
  --primary-color: 200 95% 39%; /* #C60C30 - Danish red */
  --secondary-color: 210 59% 69%; /* #4A90E2 - Danish blue */
  --accent-color: 85 44% 74%; /* #7FB069 - Natural green */
  --text-dark: 220 13% 18%; /* #2C3E50 */
  --text-light: 220 9% 46%; /* #6C757D */
  --background: 210 11% 98%; /* #F5F7FA */
  --surface: 0 0% 100%; /* #FFFFFF */
  --border: 220 13% 91%; /* #E1E8ED */
  --shadow: 220 26% 14% / 0.1; /* rgba(37, 55, 70, 0.1) */
  --hover-overlay: 0 0% 0% / 0.05; /* rgba(0, 0, 0, 0.05) */
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: hsl(var(--text-dark));
  background-color: hsl(var(--background));
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: hsl(var(--text-light));
}

/* Layout utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: hsl(var(--text-dark));
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.btn-primary {
  background-color: hsl(var(--primary-color));
  color: white;
}

.btn-primary:hover {
  background-color: hsl(200 95% 35%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px hsl(var(--shadow));
}

.btn-secondary {
  background-color: hsl(var(--secondary-color));
  color: white;
}

.btn-secondary:hover {
  background-color: hsl(210 59% 65%);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: hsl(var(--primary-color));
  border: 2px solid hsl(var(--primary-color));
}

.btn-outline:hover {
  background-color: hsl(var(--primary-color));
  color: white;
  transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: hsl(var(--surface));
  border-top: 1px solid hsl(var(--border));
  padding: 20px;
  box-shadow: 0 -4px 15px hsl(var(--shadow));
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.modal-content {
  background-color: hsl(var(--surface));
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-category {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
}

.cookie-category p {
  margin: 5px 0 0 30px;
  font-size: 0.9rem;
}

.modal-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

/* Header */
.header {
  background-color: hsl(var(--surface));
  box-shadow: 0 2px 10px hsl(var(--shadow));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: hsl(var(--text-dark));
  font-weight: 600;
  font-size: 1.25rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: hsl(var(--text-dark));
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: hsl(var(--primary-color));
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: hsl(var(--text-dark));
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, hsl(var(--background)), hsl(var(--surface)));
}

.hero-content {
  flex: 1;
  max-width: 600px;
  margin-right: 40px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: hsl(var(--text-dark));
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: hsl(var(--text-light));
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image svg {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: hsl(var(--surface));
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  color: hsl(var(--text-dark));
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: hsl(var(--primary-color));
}

.stat-label {
  color: hsl(var(--text-light));
  font-size: 0.9rem;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: hsl(var(--background));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: hsl(var(--surface));
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px hsl(var(--shadow));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px hsl(var(--shadow));
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: hsl(var(--text-dark));
  margin-bottom: 1rem;
}

/* Tours Section */
.tours {
  padding: 80px 0;
  background-color: hsl(var(--surface));
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.tour-card {
  background-color: hsl(var(--surface));
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px hsl(var(--shadow));
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-8px);
}

.tour-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.tour-content {
  padding: 1.5rem;
}

.tour-content h3 {
  color: hsl(var(--text-dark));
  margin-bottom: 1rem;
}

.tour-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.duration {
  color: hsl(var(--text-light));
  font-size: 0.9rem;
}

.price {
  font-weight: 600;
  color: hsl(var(--primary-color));
  font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: hsl(var(--background));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: hsl(var(--surface));
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px hsl(var(--shadow));
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h4 {
  color: hsl(var(--text-dark));
  margin-bottom: 0.25rem;
}

.author-info span {
  color: hsl(var(--text-light));
  font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
  padding: 60px 0;
  background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(200 95% 35%));
  color: white;
  text-align: center;
}

.newsletter-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: hsl(var(--surface));
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  color: hsl(var(--primary-color));
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-item h4 {
  color: hsl(var(--text-dark));
  margin-bottom: 0.5rem;
}

.contact-form {
  background-color: hsl(var(--background));
  padding: 2rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary-color));
  box-shadow: 0 0 0 3px hsl(var(--primary-color) / 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background-color: hsl(var(--text-dark));
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.25rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul a:hover {
  color: hsl(var(--primary-color));
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: hsl(var(--primary-color));
}

.contact-details p {
  color: hsl(var(--text-dark));
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: hsl(var(--surface));
    flex-direction: column;
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px hsl(var(--shadow));
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 60px;
  }

  .hero-content {
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .services-grid,
  .tours-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 20px;
  }
}

/* Animation classes */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading states */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid hsl(var(--primary-color));
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid hsl(var(--primary-color));
  outline-offset: 2px;
}

/* Blog Styles */
.blog-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, hsl(var(--background)), hsl(var(--surface)));
  text-align: center;
}

.blog-hero-content h1 {
  font-size: 3rem;
  color: hsl(var(--text-dark));
  margin-bottom: 1.5rem;
}

.blog-hero-content p {
  font-size: 1.25rem;
  color: hsl(var(--text-light));
  max-width: 800px;
  margin: 0 auto;
}

.blog-articles {
  padding: 80px 0;
  background-color: hsl(var(--background));
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.article-card {
  background-color: hsl(var(--surface));
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px hsl(var(--shadow));
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-8px);
}

.article-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.article-content {
  padding: 2rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.article-date {
  color: hsl(var(--text-light));
}

.article-category {
  background-color: hsl(var(--primary-color));
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.article-content h2 {
  margin-bottom: 1rem;
}

.article-content h2 a {
  color: hsl(var(--text-dark));
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-content h2 a:hover {
  color: hsl(var(--primary-color));
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.read-time {
  color: hsl(var(--text-light));
  font-size: 0.9rem;
}

.read-more {
  color: hsl(var(--primary-color));
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: hsl(200 95% 35%);
}

/* Article Page Styles */
.article-header {
  padding: 120px 0 60px;
  background-color: hsl(var(--background));
}

.article-breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.article-breadcrumb a {
  color: hsl(var(--primary-color));
  text-decoration: none;
}

.article-excerpt {
  font-size: 1.25rem;
  color: hsl(var(--text-light));
  margin-top: 1rem;
  max-width: 800px;
}

.article-content {
  padding: 60px 0;
  background-color: hsl(var(--surface));
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-image-main {
  margin-bottom: 2rem;
  text-align: center;
}

.image-caption {
  font-size: 0.9rem;
  color: hsl(var(--text-light));
  font-style: italic;
  margin-top: 0.5rem;
}

.article-tip {
  background-color: hsl(var(--background));
  border-left: 4px solid hsl(var(--primary-color));
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.article-tip h4 {
  color: hsl(var(--primary-color));
  margin-bottom: 0.5rem;
}

.article-highlight {
  background-color: hsl(var(--accent-color) / 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.article-highlight h4 {
  color: hsl(var(--text-dark));
  margin-bottom: 1rem;
}

.article-cta {
  background-color: hsl(var(--background));
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.article-sidebar {
  max-width: 300px;
  margin: 2rem auto 0;
}

.article-author, .related-articles {
  background-color: hsl(var(--background));
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.related-articles ul {
  list-style: none;
}

.related-articles li {
  margin-bottom: 0.5rem;
}

.related-articles a {
  color: hsl(var(--primary-color));
  text-decoration: none;
}

/* Legal Pages */
.legal-header {
  padding: 120px 0 60px;
  background-color: hsl(var(--background));
}

.legal-breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.legal-breadcrumb a {
  color: hsl(var(--primary-color));
  text-decoration: none;
}

.legal-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--text-light));
  margin-bottom: 1rem;
}

.last-updated {
  font-size: 0.9rem;
  color: hsl(var(--text-light));
  padding: 0.5rem 1rem;
  background-color: hsl(var(--surface));
  border-radius: 6px;
  display: inline-block;
}

.legal-content {
  padding: 60px 0;
  background-color: hsl(var(--surface));
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
}

.legal-intro {
  background-color: hsl(var(--background));
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.contact-details {
  background-color: hsl(var(--background));
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

/* Thank You Page */
.thank-you-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, hsl(var(--background)), hsl(var(--surface)));
}

.thank-you-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-content h1 {
  font-size: 3rem;
  color: hsl(var(--text-dark));
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  color: hsl(var(--text-light));
  margin-bottom: 3rem;
}

.subscription-details, .next-steps {
  margin: 4rem 0;
}

.expectation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.expectation-item {
  text-align: center;
  padding: 1.5rem;
  background-color: hsl(var(--surface));
  border-radius: 12px;
  box-shadow: 0 4px 20px hsl(var(--shadow));
}

.expectation-icon {
  margin-bottom: 1rem;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
}

.step-number {
  background-color: hsl(var(--primary-color));
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

.social-proof {
  padding: 60px 0;
  background-color: hsl(var(--background));
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.featured-content {
  padding: 60px 0;
  background-color: hsl(var(--surface));
}

.featured-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.featured-article {
  background-color: hsl(var(--background));
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px hsl(var(--shadow));
}

.featured-article .article-content {
  padding: 1.5rem;
}

/* Print styles */
@media print {
  .header,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  body {
    color: black !important;
    background: white !important;
  }
  
  .hero,
  .about,
  .services,
  .tours,
  .testimonials,
  .contact {
    page-break-inside: avoid;
  }
}
