/* ===================================
   RAUMWERK STUDIO - SOFT PASTEL DESIGN
   Modern Interior Design CSS
   =================================== */

/* ===================================
   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.7;
  color: #4A4A4A;
  background: #FFF9F5;
  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-position: inside;
}

/* ===================================
   SOFT PASTEL COLOR PALETTE
   =================================== */

:root {
  --primary-color: #B8D4C8;
  --secondary-color: #E8C4B8;
  --accent-color: #F7F3ED;
  --text-dark: #4A4A4A;
  --text-light: #6B6B6B;
  --background: #FFF9F5;
  --white: #FFFFFF;
  --pastel-pink: #F5D7D7;
  --pastel-blue: #D4E4F7;
  --pastel-lavender: #E6D9F2;
  --pastel-mint: #D9F2E6;
  --shadow: rgba(0, 0, 0, 0.08);
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

/* ===================================
   LAYOUT CONTAINERS
   =================================== */

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

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

.section-intro {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}

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

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

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-color);
}

/* ===================================
   MOBILE MENU STYLES
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--secondary-color);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 2500;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 20px var(--shadow);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pastel-pink);
  color: var(--text-dark);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--secondary-color);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 8px;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateX(10px);
}

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

.hero {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
  padding: 100px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: var(--text-dark);
  margin-bottom: 24px;
  font-size: 56px;
}

.hero p {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-page {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
}

.hero-page h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-page p {
  font-size: 18px;
}

.hero-404 {
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 100%);
  padding: 100px 20px;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.error-code {
  font-size: 120px;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
}

/* ===================================
   BUTTONS & CTA
   =================================== */

.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn,
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  min-width: 180px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(184, 212, 200, 0.3);
}

.btn-primary:hover {
  background: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 212, 200, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

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

.btn:hover {
  background: var(--text-dark);
  transform: translateY(-2px);
}

/* ===================================
   TRUST BAR
   =================================== */

.trust-bar {
  background: var(--white);
  padding: 32px 20px;
  margin-bottom: 60px;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
}

.trust-indicators {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
}

.trust-item span {
  display: block;
}

/* ===================================
   SERVICES GRID
   =================================== */

.services-grid,
.benefits-grid,
.values-grid,
.workshop-grid,
.project-card,
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card,
.benefit-card,
.value-card,
.workshop-card,
.project-card,
.article-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.benefit-card:hover,
.value-card:hover,
.workshop-card:hover,
.project-card:hover,
.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(184, 212, 200, 0.2);
}

.service-card h3,
.benefit-card h3,
.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.benefit-card p,
.value-card p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.price {
  display: inline-block;
  background: var(--pastel-mint);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
}

/* ===================================
   PROCESS STEPS
   =================================== */

.process {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 15px var(--shadow);
  position: relative;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.step p {
  font-size: 15px;
  line-height: 1.6;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  background: var(--pastel-blue);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 4px 20px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
  font-style: normal;
}

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

.cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-banner .btn-primary:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

/* ===================================
   SERVICES DETAIL PAGE
   =================================== */

.services-detail .service-block {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 32px;
}

.service-block h2 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.tagline {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 16px;
}

.service-block ul {
  margin-top: 24px;
  padding-left: 20px;
}

.service-block ul li {
  margin-bottom: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

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

.story,
.mission-vision {
  padding: 60px 20px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat .number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
}

.stat .label {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

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

.content-block {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  padding: 32px;
  background: var(--accent-color);
  border-radius: 16px;
  margin-bottom: 20px;
}

/* ===================================
   TEAM SECTION
   =================================== */

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.team-member {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(184, 212, 200, 0.2);
}

.team-member h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.role {
  display: block;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ===================================
   PORTFOLIO GRID
   =================================== */

.portfolio-grid {
  padding: 40px 20px;
}

.project-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.details {
  display: inline-block;
  background: var(--pastel-mint);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}

/* ===================================
   BLOG SECTIONS
   =================================== */

.blog-featured {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.tag {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.meta {
  display: block;
  color: var(--text-light);
  font-size: 14px;
  margin-top: 16px;
}

.article-card h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 12px;
}

/* ===================================
   WORKSHOP CARDS
   =================================== */

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

.workshop-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.date {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 15px;
}

.level {
  display: inline-block;
  background: var(--pastel-blue);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-right: 8px;
}

.spots {
  display: block;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-methods {
  padding: 60px 20px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.method-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  margin-bottom: 20px;
}

.method-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.contact-form-section {
  background: var(--accent-color);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.form-placeholder {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
}

.form-placeholder .note {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin: 24px 0;
}

.location {
  padding: 60px 20px;
  text-align: center;
}

.location-info {
  max-width: 600px;
  margin: 40px auto;
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
}

.location-info p {
  margin-bottom: 12px;
}

.trust-indicators .trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.trust-grid .trust-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  background: var(--pastel-mint);
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content .content-block {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 32px;
}

.legal-content h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 24px;
}

.last-updated {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

.contact-info {
  background: var(--accent-color);
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
}

.contact-info h3 {
  margin-bottom: 16px;
}

/* ===================================
   404 ERROR PAGE
   =================================== */

.error-navigation,
.popular-links,
.contact-help {
  padding: 40px 20px;
  text-align: center;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.suggestion-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  text-align: center;
  margin-bottom: 20px;
}

.suggestion-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.links-grid a {
  background: var(--pastel-mint);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.links-grid a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

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

.thank-you-hero {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
  padding: 100px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
}

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

.icon-success {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(184, 212, 200, 0.3);
}

.next-steps {
  padding: 60px 20px;
}

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

.step-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  text-align: center;
  margin-bottom: 20px;
}

.step-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.additional-resources {
  background: var(--accent-color);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.resource-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  text-align: center;
  margin-bottom: 20px;
}

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.contact-reminder {
  padding: 60px 20px;
  text-align: center;
  background: var(--white);
  border-radius: 30px;
  margin-bottom: 60px;
}

.contact-reminder .contact-info {
  max-width: 500px;
  margin: 32px auto;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-column h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(5px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 3000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 400px;
  margin: 0;
  color: var(--text-dark);
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accept-all {
  background: var(--primary-color);
  color: var(--white);
}

.accept-all:hover {
  background: var(--text-dark);
}

.reject-all {
  background: var(--accent-color);
  color: var(--text-dark);
}

.reject-all:hover {
  background: var(--pastel-pink);
}

.cookie-settings {
  background: var(--secondary-color);
  color: var(--white);
}

.cookie-settings:hover {
  background: var(--text-dark);
}

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

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

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

.cookie-modal-content {
  background: var(--white);
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pastel-pink);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--secondary-color);
  transform: rotate(90deg);
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: var(--primary-color);
}

.cookie-category {
  padding: 20px;
  background: var(--accent-color);
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.cookie-category p {
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  position: relative;
  cursor: pointer;
  appearance: none;
  background: var(--pastel-pink);
  border-radius: 13px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: var(--primary-color);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 27px;
}

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

.cookie-modal-buttons button {
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-preferences {
  background: var(--primary-color);
  color: var(--white);
}

.save-preferences:hover {
  background: var(--text-dark);
}

/* ===================================
   HIGHLIGHTS & SPECIAL ELEMENTS
   =================================== */

.highlight {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Layout adjustments */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero,
  .hero-page,
  .hero-404 {
    padding: 60px 16px;
  }
  
  /* Flex items full width on mobile */
  .service-card,
  .benefit-card,
  .value-card,
  .workshop-card,
  .project-card,
  .article-card,
  .team-member,
  .method-card,
  .suggestion-card,
  .step-card,
  .resource-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .content-block {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  /* CTA groups */
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Trust bar */
  .trust-indicators {
    flex-direction: column;
    text-align: center;
  }
  
  /* Error page */
  .error-code {
    font-size: 80px;
  }
  
  /* Stats */
  .stats-grid {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .error-code {
    font-size: 60px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

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

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

.service-card,
.benefit-card,
.value-card,
.workshop-card,
.project-card,
.article-card {
  animation: fadeIn 0.6s ease forwards;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
}

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

:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid var(--primary-color);
  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-width: 0;
}

/* END OF STYLESHEET */