/* =================================================================
   GLOW POWERED - SCANDINAVIAN CLEAN DESIGN SYSTEM
   Authentic street food meets minimalist Nordic aesthetics
   ================================================================= */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* =================================================================
   TYPOGRAPHY - SCANDINAVIAN CLEAN
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

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;
}

p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.lead {
  font-size: 18px;
  font-weight: 300;
  color: #5A5A5A;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =================================================================
   MOBILE MENU TOGGLE BUTTON
   ================================================================= */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #FFFFFF;
  color: #C33000;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* =================================================================
   MOBILE MENU OVERLAY
   ================================================================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #F5F5F5;
  color: #2C3E50;
  border-radius: 4px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #C33000;
  color: #FFFFFF;
}

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

.mobile-nav a {
  padding: 16px 20px;
  font-size: 16px;
  color: #2C3E50;
  background-color: #F8F8F8;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: block;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  background-color: #FFF3E0;
  color: #C33000;
  transform: translateX(8px);
}

/* =================================================================
   HEADER - SCANDINAVIAN CLEAN
   ================================================================= */
.site-header {
  background-color: #FFFFFF;
  padding: 20px 0;
  border-bottom: 1px solid #E8E8E8;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.tagline {
  font-size: 12px;
  color: #7A7A7A;
  font-weight: 300;
  max-width: 280px;
  line-height: 1.4;
}

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

.main-nav a {
  color: #4A4A4A;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C33000;
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #C33000;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .logo {
    flex: 1;
  }
}

/* =================================================================
   BUTTONS - SCANDINAVIAN CLEAN
   ================================================================= */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Bebas Neue', sans-serif;
}

.btn-primary {
  background-color: #C33000;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(195, 48, 0, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #A02800;
  box-shadow: 0 4px 12px rgba(195, 48, 0, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #C33000;
  border: 2px solid #C33000;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #C33000;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-link {
  background-color: transparent;
  color: #C33000;
  padding: 8px 0;
  font-weight: 600;
  text-transform: none;
  position: relative;
}

.btn-link::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.btn-link:hover::after {
  margin-left: 12px;
}

/* =================================================================
   HERO SECTION - SCANDINAVIAN CLEAN
   ================================================================= */
.hero {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF3E0 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 1px solid #E8E8E8;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  color: #1A1A1A;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 18px;
  color: #5A5A5A;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}

/* =================================================================
   PAGE HERO - SCANDINAVIAN CLEAN
   ================================================================= */
.page-hero {
  background-color: #F8F8F8;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-bottom: 1px solid #E0E0E0;
}

.page-hero h1 {
  max-width: 800px;
  margin: 0 auto 16px;
  text-align: center;
}

.page-hero .subtitle {
  text-align: center;
  font-size: 18px;
  color: #6A6A6A;
  max-width: 600px;
  margin: 0 auto 24px;
}

.page-hero .highlights {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.page-hero .highlights li {
  color: #5A5A5A;
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.page-hero .highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C33000;
  font-weight: bold;
}

.page-hero .price-starting {
  text-align: center;
  font-size: 32px;
  color: #C33000;
  font-family: 'Bebas Neue', sans-serif;
  margin-bottom: 24px;
}

.page-hero .response-promise {
  text-align: center;
  background-color: #FFF3E0;
  color: #C33000;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 40px 20px;
  }
  
  .page-hero .highlights {
    flex-direction: column;
    align-items: center;
  }
}

/* =================================================================
   CARD LAYOUTS - FLEXBOX ONLY (NO GRID)
   ================================================================= */
.features-grid,
.service-grid,
.region-grid,
.info-grid,
.pricing-grid,
.themes-grid,
.specialty-grid,
.examples-grid,
.contact-grid,
.quick-links-grid,
.client-types,
.values-grid,
.credentials-grid,
.cta-grid,
.suggestions-grid,
.steps-grid,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-card,
.service-card,
.region-card,
.info-item,
.pricing-card,
.theme-card,
.specialty,
.example-card,
.contact-method,
.quick-link-card,
.client-type,
.value,
.credential,
.suggestion-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #F0F0F0;
  margin-bottom: 20px;
}

.feature-card:hover,
.service-card:hover,
.quick-link-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-card img,
.contact-method img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.pricing-card.featured {
  border: 2px solid #C33000;
  position: relative;
}

.pricing-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #C33000;
  color: #FFFFFF;
  padding: 4px 16px;
  font-size: 12px;
  border-radius: 2px;
  font-weight: 600;
}

.price {
  font-size: 32px;
  font-family: 'Bebas Neue', sans-serif;
  color: #C33000;
  margin: 16px 0;
}

@media (max-width: 768px) {
  .feature-card,
  .service-card,
  .region-card,
  .info-item,
  .pricing-card,
  .theme-card,
  .specialty,
  .example-card,
  .contact-method,
  .quick-link-card,
  .client-type,
  .value,
  .credential,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

/* =================================================================
   VALUE PROPOSITION SECTION
   ================================================================= */
.value-proposition {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* =================================================================
   FEATURED SERVICES SECTION
   ================================================================= */
.featured-services {
  padding: 60px 20px;
  background-color: #F8F8F8;
}

.featured-services h2 {
  text-align: center;
  margin-bottom: 48px;
}

.featured-services > .container > .btn-primary {
  display: block;
  margin: 40px auto 0;
  width: fit-content;
}

/* =================================================================
   HOW IT WORKS - FLEXBOX STEPS
   ================================================================= */
.how-it-works {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: block;
  width: 56px;
  height: 56px;
  background-color: #FFF3E0;
  color: #C33000;
  border-radius: 50%;
  font-size: 24px;
  font-family: 'Bebas Neue', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid #C33000;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .step {
    flex: 1 1 100%;
  }
}

/* =================================================================
   TESTIMONIALS - SCANDINAVIAN CLEAN
   ================================================================= */
.testimonials {
  padding: 60px 20px;
  background-color: #F8F8F8;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #C33000;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #2C3E50;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  color: #6A6A6A;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 8px;
}

.rating {
  color: #F57C00;
  font-size: 18px;
  letter-spacing: 2px;
}

.trust-stats {
  text-align: center;
  color: #5A5A5A;
  font-weight: 600;
  font-size: 14px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* =================================================================
   LOCATION HIGHLIGHT
   ================================================================= */
.location-highlight {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.location-highlight h2 {
  margin-bottom: 24px;
}

.location-highlight p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.8;
}

/* =================================================================
   CTA SECTIONS
   ================================================================= */
.cta-banner,
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFFFFF 100%);
  text-align: center;
  margin-bottom: 0;
  border-top: 1px solid #E8E8E8;
}

.cta-banner h2,
.cta-section h2 {
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: #5A5A5A;
}

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

.contact-info {
  font-size: 14px;
  color: #6A6A6A;
}

@media (max-width: 768px) {
  .cta-banner,
  .cta-section {
    padding: 60px 20px;
  }
}

/* =================================================================
   TOUR EXPERIENCE & FEATURES LIST
   ================================================================= */
.tour-experience,
.service-overview,
.photography-approach,
.ideal-clients,
.workshop-experience,
.content-specialties,
.story-examples,
.writing-style,
.origin-story,
.mission-vision,
.expertise,
.approach,
.location-context {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.features-list,
.principles,
.philosophy-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item,
.principle,
.philosophy-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background-color: #F8F8F8;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.feature-item:hover,
.principle:hover,
.philosophy-item:hover {
  background-color: #FFF3E0;
  transform: translateX(8px);
}

.feature-item img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.feature-item h3,
.principle h3,
.philosophy-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.note {
  text-align: center;
  font-style: italic;
  color: #7A7A7A;
  font-size: 14px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .feature-item {
    flex-direction: column;
  }
}

/* =================================================================
   PRACTICAL INFO & INFO GRID
   ================================================================= */
.practical-info {
  padding: 60px 20px;
  background-color: #F8F8F8;
}

.practical-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.info-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #C33000;
}

.info-item p {
  font-size: 16px;
}

/* =================================================================
   FAQ SECTION
   ================================================================= */
.faq,
.faq-quick {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.faq h2,
.faq-quick h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  padding: 24px;
  background-color: #F8F8F8;
  border-radius: 4px;
  border-left: 4px solid #C33000;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

.faq-item p {
  color: #5A5A5A;
  font-size: 15px;
}

/* =================================================================
   CONTACT METHODS & FORMS
   ================================================================= */
.contact-methods,
.inquiry-form-section,
.quick-links-section,
.location-info {
  padding: 60px 20px;
}

.contact-methods {
  background-color: #F8F8F8;
}

.contact-methods h2,
.inquiry-form-section h2,
.quick-links-section h2,
.location-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-method {
  text-align: center;
}

.contact-method img {
  margin: 0 auto 20px;
}

.contact-method h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.contact-method a {
  color: #C33000;
  text-decoration: underline;
}

.contact-method a:hover {
  color: #A02800;
}

.contact-method .note {
  margin-top: 12px;
}

.form-note {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background-color: #FFF3E0;
  border-radius: 4px;
  border-left: 4px solid #C33000;
}

.form-note p {
  margin-bottom: 16px;
}

.form-note ul {
  list-style: disc;
  padding-left: 24px;
  margin-top: 12px;
}

.form-note li {
  margin-bottom: 8px;
  color: #4A4A4A;
}

.location-details {
  max-width: 800px;
  margin: 0 auto;
}

.location-text h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

/* =================================================================
   PACKAGE PRICING
   ================================================================= */
.package-pricing {
  padding: 60px 20px;
  background-color: #F8F8F8;
}

.package-pricing h2 {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
}

.pricing-card li {
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  color: #5A5A5A;
  position: relative;
  padding-left: 24px;
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C33000;
  font-weight: bold;
}

.pricing-card li:last-child {
  border-bottom: none;
}

/* =================================================================
   MISSION & VALUES
   ================================================================= */
.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.mission-block {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  padding: 32px;
  background-color: #F8F8F8;
  border-radius: 4px;
}

.mission-block h3 {
  color: #C33000;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .mission-block {
    flex: 1 1 100%;
  }
}

/* =================================================================
   THANK YOU PAGE
   ================================================================= */
.thank-you-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFFFFF 100%);
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.icon-check {
  width: 80px;
  height: 80px;
  background-color: #C33000;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 4px 16px rgba(195, 48, 0, 0.3);
}

.next-steps,
.while-you-wait,
.return-home,
.contact-reminder,
.return-navigation {
  padding: 60px 20px;
}

.steps-simple p {
  font-size: 18px;
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
}

.steps-simple p strong {
  position: absolute;
  left: 0;
  color: #C33000;
}

/* =================================================================
   LEGAL CONTENT PAGES
   ================================================================= */
.legal-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.legal-content h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #C33000;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  list-style: disc;
  padding-left: 32px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #4A4A4A;
  line-height: 1.8;
}

.legal-content a {
  color: #C33000;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #A02800;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background-color: #F8F8F8;
}

.legal-content th,
.legal-content td {
  padding: 16px;
  text-align: left;
  border: 1px solid #E0E0E0;
}

.legal-content th {
  background-color: #C33000;
  color: #FFFFFF;
  font-weight: 600;
}

.legal-content td {
  color: #4A4A4A;
}

.data-table,
.cookie-table {
  overflow-x: auto;
  display: block;
}

@media (max-width: 768px) {
  .legal-content table {
    font-size: 14px;
  }
  
  .legal-content th,
  .legal-content td {
    padding: 12px 8px;
  }
}

/* =================================================================
   FOOTER - SCANDINAVIAN CLEAN
   ================================================================= */
.site-footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-block {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-block img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-block h4 {
  color: #FFF3E0;
  font-size: 16px;
  margin-bottom: 16px;
  font-family: 'Bebas Neue', sans-serif;
}

.footer-block p,
.footer-block a {
  font-size: 14px;
  color: #D0D0D0;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-block a:hover {
  color: #FFF3E0;
  text-decoration: underline;
}

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

.footer-block .tagline {
  font-size: 12px;
  font-style: italic;
  color: #A0A0A0;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #A0A0A0;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
}

/* =================================================================
   COOKIE CONSENT BANNER
   ================================================================= */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent-text a {
  color: #FFF3E0;
  text-decoration: underline;
}

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

.cookie-btn-accept,
.cookie-btn-reject,
.cookie-btn-settings {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: #C33000;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background-color: #A02800;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background-color: transparent;
  color: #FFF3E0;
  border: none;
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: stretch;
  }
  
  .cookie-btn-accept,
  .cookie-btn-reject,
  .cookie-btn-settings {
    flex: 1;
    text-align: center;
  }
}

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

.cookie-modal-overlay.active {
  display: flex;
}

.cookie-modal {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid #E0E0E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h2 {
  margin: 0;
  font-size: 24px;
}

.cookie-modal-close {
  width: 32px;
  height: 32px;
  background-color: #F0F0F0;
  border-radius: 4px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #C33000;
  color: #FFFFFF;
}

.cookie-modal-body {
  padding: 32px;
}

.cookie-category {
  padding: 20px;
  background-color: #F8F8F8;
  border-radius: 4px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  margin: 0;
  font-size: 18px;
}

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

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

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

.cookie-category p {
  font-size: 14px;
  color: #5A5A5A;
  margin: 0;
}

.cookie-modal-footer {
  padding: 24px 32px;
  border-top: 1px solid #E0E0E0;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-modal-footer .btn-primary,
.cookie-modal-footer .btn-secondary {
  padding: 12px 24px;
}

@media (max-width: 768px) {
  .cookie-modal {
    max-height: 95vh;
  }
  
  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding: 20px;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
  
  .cookie-modal-footer .btn-primary,
  .cookie-modal-footer .btn-secondary {
    width: 100%;
  }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

/* =================================================================
   ACCESSIBILITY
   ================================================================= */
:focus {
  outline: 2px solid #C33000;
  outline-offset: 2px;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #C33000;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

/* =================================================================
   PRINT STYLES
   ================================================================= */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .site-header,
  .site-footer,
  .cta-banner,
  .cta-section {
    display: none !important;
  }
  
  body {
    background-color: #FFFFFF;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}

/* =================================================================
   END OF SCANDINAVIAN CLEAN DESIGN SYSTEM
   ================================================================= */