/* ============================================
   HAUSGLÜCK TIPPS - SCANDINAVIAN CLEAN DESIGN
   CSS Reset & Base Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/* ============================================
   SCANDINAVIAN CLEAN TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2D5C8F;
  margin-bottom: 16px;
}

h1 {
  font-size: 42px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

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

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

a {
  color: #2D5C8F;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #F8A64D;
}

ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

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

blockquote {
  border-left: 4px solid #F8A64D;
  padding: 16px 24px;
  margin: 32px 0;
  background-color: #F9FAFB;
  font-style: italic;
  color: #2C3E50;
}

/* ============================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============================================
   BUTTONS - SCANDINAVIAN STYLE
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: #2D5C8F;
  color: #FFFFFF;
  border-color: #2D5C8F;
}

.btn-primary:hover {
  background-color: #234A73;
  border-color: #234A73;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 92, 143, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: #2D5C8F;
  border-color: #2D5C8F;
}

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

.btn-link {
  background-color: transparent;
  color: #F8A64D;
  border: none;
  padding: 8px 0;
  font-weight: 600;
}

.btn-link:hover {
  color: #E89433;
  transform: translateX(4px);
}

/* ============================================
   MOBILE BURGER MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 48px;
  height: 48px;
  background-color: #2D5C8F;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: #2C3E50;
  border: none;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #F8A64D;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  padding: 16px 0;
  color: #2C3E50;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #E8F2F7;
  transition: all 0.3s ease;
}

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

/* ============================================
   HEADER - CLEAN SCANDINAVIAN STYLE
   ============================================ */

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8F2F7;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  color: #2C3E50;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
  background: linear-gradient(135deg, #E8F2F7 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  margin-bottom: 24px;
  color: #2D5C8F;
}

.hero-subtitle {
  font-size: 20px;
  color: #4A5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background-color: #FFFFFF;
  border-radius: 24px;
  color: #2D5C8F;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 16px;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #718096;
}

.breadcrumb a {
  color: #2D5C8F;
}

.last-updated {
  font-size: 14px;
  color: #718096;
  margin-top: 16px;
}

/* ============================================
   SECTIONS - CONSISTENT SPACING
   ============================================ */

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   PROBLEM-SOLUTION SECTION
   ============================================ */

.problem-solution {
  background-color: #F9FAFB;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.problem-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.problem-item {
  background-color: #FFFFFF;
  padding: 16px 24px;
  border-radius: 4px;
  border-left: 4px solid #F8A64D;
  color: #2C3E50;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ============================================
   SERVICES GRID - FLEXBOX LAYOUT
   ============================================ */

.services-preview,
.services-overview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card,
.service-card-detailed {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E8F2F7;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 24px;
}

.service-card:hover,
.service-card-detailed:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 92, 143, 0.15);
  border-color: #F8A64D;
}

.service-card h3,
.service-card-detailed h3 {
  color: #2D5C8F;
  margin-bottom: 16px;
}

.service-card p,
.service-card-detailed p {
  flex-grow: 1;
  margin-bottom: 16px;
}

.duration {
  font-size: 14px;
  color: #718096;
  font-weight: 500;
  margin-bottom: 12px;
}

.price {
  font-size: 28px;
  font-weight: 600;
  color: #F8A64D;
  margin: 16px 0;
}

/* ============================================
   BENEFITS GRID
   ============================================ */

.benefits,
.workshop-benefits {
  background-color: #E8F2F7;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.benefit-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.benefit-item h3 {
  color: #2D5C8F;
  margin-bottom: 12px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonials {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #F9FAFB;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #F8A64D;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

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

.testimonial-author {
  font-weight: 600;
  color: #2D5C8F;
  font-size: 14px;
  margin-bottom: 8px;
}

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

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, #2D5C8F 0%, #234A73 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 4px;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #E8F2F7;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-banner .btn-primary {
  background-color: #F8A64D;
  border-color: #F8A64D;
}

.cta-banner .btn-primary:hover {
  background-color: #E89433;
  border-color: #E89433;
}

.cta-banner .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-banner .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #2D5C8F;
}

.contact-info {
  margin-top: 24px;
  color: #E8F2F7;
}

.trust-indicator {
  margin-top: 24px;
  color: #E8F2F7;
  font-size: 14px;
}

/* ============================================
   STORY & MISSION SECTIONS
   ============================================ */

.story,
.mission-values,
.approach {
  padding: 60px 20px;
  margin-bottom: 60px;
}

/* ============================================
   VALUES & PRINCIPLES GRID
   ============================================ */

.values-grid,
.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.value-item,
.principle-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 24px;
  background-color: #F9FAFB;
  border-radius: 4px;
  border-top: 3px solid #F8A64D;
  margin-bottom: 24px;
}

.value-item h3,
.principle-item h3 {
  color: #2D5C8F;
  margin-bottom: 8px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  background-color: #2D5C8F;
  color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 600;
  color: #F8A64D;
  margin-bottom: 8px;
}

.stat-label {
  color: #E8F2F7;
  font-size: 16px;
}

/* ============================================
   PROCESS STEPS & TIMELINE
   ============================================ */

.process,
.workshop-schedule {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #F9FAFB;
}

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

.step,
.timeline-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: #F8A64D;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.time {
  display: inline-block;
  padding: 8px 16px;
  background-color: #E8F2F7;
  color: #2D5C8F;
  border-radius: 16px;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 12px;
}

/* ============================================
   FEATURED TIP
   ============================================ */

.featured-tip {
  background: linear-gradient(135deg, #F8A64D 0%, #E89433 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 4px;
  text-align: center;
  position: relative;
}

.featured-badge {
  display: inline-block;
  background-color: #FFFFFF;
  color: #F8A64D;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.featured-tip h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.featured-tip p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 24px;
}

/* ============================================
   CATEGORY FILTER
   ============================================ */

.category-filter {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.category-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 150px;
  padding: 24px;
  background-color: #E8F2F7;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.category-item:hover {
  background-color: #2D5C8F;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(45, 92, 143, 0.2);
}

.category-item:hover h3,
.category-item:hover p {
  color: #FFFFFF;
}

.category-item h3 {
  color: #2D5C8F;
  font-size: 18px;
  margin-bottom: 8px;
}

.category-item p {
  color: #4A5568;
  font-size: 14px;
  margin: 0;
}

/* ============================================
   TIPS GRID
   ============================================ */

.tips-grid {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.tips-grid-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.tip-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #E8F2F7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 92, 143, 0.15);
  border-color: #F8A64D;
}

.tip-category {
  display: inline-block;
  padding: 4px 12px;
  background-color: #E8F2F7;
  color: #2D5C8F;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  align-self: flex-start;
}

.read-time {
  font-size: 14px;
  color: #718096;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #E8F2F7;
}

/* ============================================
   NEWSLETTER SIGNUP
   ============================================ */

.newsletter-signup {
  background-color: #E8F2F7;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-radius: 4px;
}

.newsletter-signup ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.newsletter-signup li {
  padding: 8px 16px;
  background-color: #FFFFFF;
  border-radius: 4px;
  color: #2D5C8F;
  font-weight: 500;
}

/* ============================================
   WORKSHOPS SECTION
   ============================================ */

.upcoming-workshops {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.workshops-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.workshop-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E8F2F7;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 92, 143, 0.15);
  border-color: #F8A64D;
}

.workshop-date,
.workshop-location {
  color: #4A5568;
  font-size: 14px;
  margin-bottom: 8px;
}

.spots-left {
  color: #F8A64D;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ============================================
   CONTACT SECTIONS
   ============================================ */

.contact-options,
.contact-info-detailed {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.contact-option {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #F9FAFB;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #F8A64D;
  text-align: center;
}

.contact-detail {
  font-weight: 600;
  color: #2D5C8F;
  font-size: 18px;
  margin: 16px 0;
}

.response-time,
.hours {
  font-size: 14px;
  color: #718096;
}

.info-block {
  background-color: #F9FAFB;
  padding: 24px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.info-block h3 {
  color: #2D5C8F;
  margin-bottom: 12px;
}

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

/* ============================================
   LOCATION MAP
   ============================================ */

.location-map {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #E8F2F7;
}

.map-info {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-top: 24px;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-section {
  background-color: #F9FAFB;
  padding: 32px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.legal-section h2 {
  color: #2D5C8F;
  margin-bottom: 16px;
}

.legal-section ul {
  margin-left: 24px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #E8F2F7 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.confirmation-text {
  font-size: 14px;
  color: #718096;
  margin-top: 16px;
}

.next-steps,
.while-you-wait,
.suggestions {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E8F2F7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 92, 143, 0.15);
  border-color: #F8A64D;
}

/* ============================================
   FOOTER - CLEAN SCANDINAVIAN
   ============================================ */

footer {
  background-color: #2C3E50;
  color: #E8F2F7;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-column p {
  color: #CBD5E0;
  font-size: 14px;
}

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

.footer-nav a {
  color: #CBD5E0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #F8A64D;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #4A5568;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links a {
  color: #CBD5E0;
  font-size: 14px;
}

.legal-links a:hover {
  color: #F8A64D;
}

.copyright {
  color: #718096;
  font-size: 14px;
  margin: 0;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.active {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text h4 {
  color: #FFFFFF;
  margin-bottom: 8px;
}

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

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

.cookie-reject:hover {
  background-color: #4A5568;
}

.cookie-settings {
  background-color: transparent;
  color: #CBD5E0;
  border: 1px solid #4A5568;
}

.cookie-settings:hover {
  background-color: #4A5568;
  color: #FFFFFF;
}

/* ============================================
   COOKIE PREFERENCES MODAL
   ============================================ */

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

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

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #718096;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #2C3E50;
}

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

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

.category-header h4 {
  color: #2D5C8F;
  margin: 0;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CBD5E0;
  border-radius: 24px;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background-color: #F8A64D;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.toggle-slider.disabled {
  background-color: #E8F2F7;
  cursor: not-allowed;
}

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  /* Header adjustments */
  .header-content {
    justify-content: center;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Grid adjustments - all flexbox */
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .values-grid,
  .principles-grid,
  .categories-grid,
  .tips-grid-layout,
  .workshops-grid,
  .contact-grid {
    flex-direction: column;
  }
  
  .service-card,
  .service-card-detailed,
  .benefit-item,
  .testimonial-card,
  .value-item,
  .principle-item,
  .category-item,
  .tip-card,
  .workshop-card,
  .contact-option,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Process steps - stack vertically */
  .process-steps,
  .timeline,
  .steps-grid {
    flex-direction: column;
  }
  
  .step,
  .timeline-item {
    flex: 1 1 100%;
  }
  
  /* Stats grid - 2 columns */
  .stats-grid {
    gap: 24px;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Footer */
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    align-items: center;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .benefit-item,
  .testimonial-card,
  .value-item,
  .principle-item,
  .tip-card,
  .workshop-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .category-item {
    flex: 1 1 calc(50% - 16px);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-banner,
  .hero-cta {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */

*:focus {
  outline: 2px solid #F8A64D;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

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

/* ============================================
   SMOOTH ANIMATIONS
   ============================================ */

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

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