/* ==============================================
   AZURE DESTINATIONS - PROFESSIONAL CORPORATE CSS
   Design Style: Professional Corporate Aesthetic
   Color Scheme: Blue/Gray Business Palette
   ============================================== */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a252f;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #4a5568;
}

a {
  text-decoration: none;
  color: #0078D4;
  transition: color 0.3s ease;
}

a:hover {
  color: #005A9E;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #4a5568;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* HEADER STYLES */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #0078D4;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #0078D4;
  border-bottom-color: #0078D4;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #0078D4;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #005A9E;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #1a252f;
  z-index: 2500;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #ffffff;
  color: #1a252f;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #FFB900;
  padding-left: 8px;
}

/* BUTTON STYLES */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: #0078D4;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}

.btn-primary:hover {
  background-color: #005A9E;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 120, 212, 0.4);
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  color: #0078D4;
  border-color: #0078D4;
}

.btn-secondary:hover {
  background-color: #0078D4;
  color: #ffffff;
  transform: translateY(-2px);
}

/* SECTION STYLES */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.hero {
  background: linear-gradient(135deg, #0078D4 0%, #2B5797 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 Q 25 30, 50 50 T 100 50" stroke="rgba(255,255,255,0.05)" fill="none" stroke-width="2"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 24px;
  opacity: 0.95;
}

.subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-indicator {
  font-size: 14px;
  opacity: 0.9;
  font-style: italic;
}

/* CARD STYLES */
.card-container,
.features-grid,
.services-grid,
.lifehacks-grid,
.testimonials-grid,
.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.feature-card,
.service-card,
.lifehack-card,
.testimonial-card,
.post-card,
.card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  border-top: 4px solid #0078D4;
}

.feature-card:hover,
.service-card:hover,
.lifehack-card:hover,
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 120, 212, 0.15);
}

.feature-card h3,
.service-card h3,
.lifehack-card h3,
.post-card h3 {
  color: #1a252f;
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-card p,
.service-card p,
.post-card p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
}

/* LIFEHACK CARDS */
.lifehack-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lifehack-card .number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: #0078D4;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.difficulty {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.difficulty:contains("Snadné"),
.lifehack-card:nth-child(3n+1) .difficulty {
  background-color: #d4edda;
  color: #155724;
}

.difficulty:contains("Střední"),
.lifehack-card:nth-child(3n+2) .difficulty {
  background-color: #fff3cd;
  color: #856404;
}

.difficulty:contains("Náročné"),
.lifehack-card:nth-child(3n) .difficulty {
  background-color: #f8d7da;
  color: #721c24;
}

/* SERVICE CARDS */
.price {
  font-size: 28px;
  font-weight: 700;
  color: #0078D4;
  margin: 16px 0;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  background-color: #f8f9fa;
  border-left: 4px solid #FFB900;
  padding: 24px;
  flex: 1 1 calc(50% - 24px);
}

.testimonial-card p {
  color: #2c3e50;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 16px;
}

.client-name {
  font-weight: 700;
  color: #1a252f;
  font-size: 16px;
  font-style: normal;
  margin-bottom: 4px;
}

.client-role {
  font-size: 14px;
  color: #718096;
  font-style: normal;
}

/* NUMBERED BENEFITS */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-item .number {
  font-size: 32px;
  font-weight: 700;
  color: #0078D4;
  min-width: 60px;
}

.benefit-item h3 {
  margin-bottom: 8px;
}

/* PROBLEM-SOLUTION SECTION */
.problem-solution {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.pain-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto 0;
  list-style: none;
  padding: 0;
}

.pain-points li {
  background-color: #fff3cd;
  padding: 16px 20px;
  border-radius: 6px;
  border-left: 4px solid #FFB900;
  color: #2c3e50;
  font-weight: 500;
  text-align: left;
}

/* STATS SECTION */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat-card .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #0078D4;
  margin-bottom: 8px;
}

.stat-card .label {
  display: block;
  font-size: 14px;
  color: #718096;
  font-weight: 600;
}

/* VALUES GRID */
.values-grid,
.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.value-card,
.mission-card,
.vision-card {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  border-left: 4px solid #0078D4;
}

/* CONTACT SECTION */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.contact-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
}

.contact-card h3 {
  color: #0078D4;
  margin-bottom: 16px;
}

/* FORM STYLES */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-note {
  text-align: left;
  color: #4a5568;
  line-height: 1.8;
}

.form-note strong {
  color: #1a252f;
  display: block;
  margin-top: 16px;
}

.note {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  margin-top: 20px;
}

.privacy-note {
  font-size: 13px;
  color: #718096;
  margin-top: 16px;
}

.privacy-note a {
  color: #0078D4;
  text-decoration: underline;
}

/* FEATURED POST */
.featured-card {
  background: linear-gradient(135deg, #0078D4 0%, #2B5797 100%);
  color: #ffffff;
  padding: 48px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.featured-card h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 16px;
}

.featured-card p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  background-color: #FFB900;
  color: #1a252f;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.meta {
  font-size: 14px;
  color: #cbd5e0;
  display: block;
  margin-top: 12px;
}

/* GUARANTEE SECTION */
.guarantee {
  background-color: #d4edda;
  padding: 48px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 40px 0;
}

.guarantee h2 {
  color: #155724;
  margin-bottom: 16px;
}

.guarantee p {
  color: #155724;
  font-size: 16px;
}

/* CTA SECTIONS */
.cta,
.final-cta {
  background: linear-gradient(135deg, #2B5797 0%, #0078D4 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 60px 0;
}

.cta h2,
.final-cta h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta p,
.final-cta p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 24px;
}

.cta ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta li {
  color: #ffffff;
  padding: 8px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
}

.cta li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFB900;
  font-weight: 700;
  font-size: 18px;
}

/* SUCCESS PAGE */
.success-icon {
  width: 80px;
  height: 80px;
  background-color: #d4edda;
  color: #155724;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  font-weight: 700;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: #0078D4;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 16px;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  color: #0078D4;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2px solid #e2e8f0;
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  color: #2c3e50;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 8px;
  color: #4a5568;
}

/* STORY SECTION */
.story {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.story p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #4a5568;
}

/* FOOTER STYLES */
footer {
  background-color: #1a252f;
  color: #ffffff;
  padding: 48px 20px 24px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-column {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 200px;
}

.footer-column h4 {
  color: #FFB900;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column p,
.footer-column a {
  color: #cbd5e0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column nav a {
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-column nav a:hover {
  color: #FFB900;
  padding-left: 8px;
}

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

.footer-bottom p {
  color: #cbd5e0;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a252f;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 3000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 250px;
}

.cookie-text p {
  color: #cbd5e0;
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #0078D4;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #005A9E;
}

.cookie-reject {
  background-color: transparent;
  color: #cbd5e0;
  border-color: #cbd5e0;
}

.cookie-reject:hover {
  background-color: #cbd5e0;
  color: #1a252f;
}

.cookie-settings {
  background-color: transparent;
  color: #FFB900;
  border-color: #FFB900;
}

.cookie-settings:hover {
  background-color: #FFB900;
  color: #1a252f;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #718096;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #1a252f;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.cookie-category h3 {
  color: #1a252f;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background-color: #cbd5e0;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #0078D4;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: left 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* RESPONSIVE DESIGN - TABLET */
@media (max-width: 992px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .feature-card,
  .service-card,
  .lifehack-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* RESPONSIVE DESIGN - MOBILE */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .feature-card,
  .service-card,
  .lifehack-card,
  .testimonial-card,
  .post-card,
  .value-card,
  .mission-card,
  .vision-card,
  .contact-card,
  .stat-card,
  .step-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .legal-content,
  .story {
    padding: 24px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .featured-card {
    padding: 32px 24px;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ACCESSIBILITY */
:focus {
  outline: 2px solid #0078D4;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #0078D4;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    background-color: #ffffff;
  }
  
  .hero {
    background: #0078D4;
    color: #000000;
  }
}