/* CSS Reset and 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', Roboto, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFF9F5;
  overflow-x: hidden;
}

/* Soft Pastel Design Style */
:root {
  --pastel-pink: #FFE5E5;
  --pastel-blue: #E5F4FF;
  --pastel-lavender: #F0E5FF;
  --pastel-mint: #E5FFF0;
  --pastel-peach: #FFE5D9;
  --pastel-cream: #FFF5E5;
  --soft-gray: #F5F5F5;
  --text-dark: #2C3E50;
  --text-medium: #95A5A6;
  --accent: #E8DCC4;
  --white: #FFFFFF;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}

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

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

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

p {
  margin-bottom: 16px;
  color: var(--text-dark);
  font-size: 16px;
}

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

li {
  margin-bottom: 8px;
}

a {
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

/* Header */
header {
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

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

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

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

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

.main-nav a:hover {
  color: #5A6C7D;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-pink), var(--pastel-lavender));
  transition: width 0.3s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: var(--white);
  border: 2px solid var(--pastel-pink);
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--pastel-pink) 0%, var(--pastel-lavender) 100%);
  z-index: 1002;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  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;
  background: var(--white);
  border: 2px solid var(--pastel-lavender);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 12px;
  color: #5A6C7D;
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-dark), #5A6C7D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subheadline {
  font-size: 20px;
  color: var(--text-medium);
  margin-bottom: 24px;
  font-weight: 300;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 17px;
  color: var(--text-dark);
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-primary, .btn-secondary {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-peach));
  color: var(--text-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--pastel-lavender);
}

.btn-secondary:hover {
  background: var(--pastel-lavender);
  transform: translateY(-2px);
}

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

/* Values Section */
.values {
  background: linear-gradient(135deg, var(--pastel-cream) 0%, var(--pastel-peach) 100%);
  border-radius: 24px;
}

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

.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.value-card h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 22px;
}

.value-card p {
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.6;
}

/* Services Overview */
.services-overview {
  background: var(--soft-gray);
  border-radius: 24px;
}

.services-overview > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-medium);
}

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

.service-card {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 360px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

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

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: auto;
}

.services-overview .btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  border-radius: 24px;
}

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

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

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

.client-name {
  font-weight: 600;
  color: var(--text-medium);
  font-style: normal;
  font-size: 14px;
  margin-top: auto;
}

/* Trust Stats */
.trust-stats {
  background: var(--soft-gray);
  border-radius: 24px;
  text-align: center;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  align-items: center;
}

.stat {
  flex: 1 1 200px;
  max-width: 300px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.stat p:last-child {
  color: var(--text-medium);
  font-size: 16px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-cream) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 24px;
}

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

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

/* Story Section */
.story {
  background: var(--white);
  border-radius: 24px;
}

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.8;
}

blockquote {
  background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-mint));
  padding: 32px;
  border-left: 4px solid var(--pastel-lavender);
  margin: 40px auto;
  max-width: 700px;
  font-size: 20px;
  font-style: italic;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Timeline */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.milestone {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  padding: 24px;
  border-radius: 12px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.milestone h3 {
  font-size: 32px;
  margin-bottom: 8px;
}

/* Philosophy Section */
.philosophy {
  background: var(--soft-gray);
  border-radius: 24px;
}

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

.pillar {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 500px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.pillar h3 {
  margin-bottom: 12px;
  color: var(--text-dark);
}

/* Team Section */
.team {
  background: linear-gradient(135deg, var(--pastel-cream) 0%, var(--pastel-peach) 100%);
  border-radius: 24px;
}

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

.team-member {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 340px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.team-member h3 {
  margin-bottom: 8px;
}

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

/* Services Detailed */
.services-detailed {
  background: var(--white);
}

.service-full {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
  padding: 40px 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.service-full h2 {
  text-align: left;
  margin-bottom: 16px;
}

.service-full ul {
  margin-top: 24px;
  margin-bottom: 24px;
}

.service-full li {
  color: var(--text-dark);
  font-size: 16px;
}

.service-full .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 24px;
}

/* Process Section */
.process {
  background: var(--soft-gray);
  border-radius: 24px;
}

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

.step {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

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

/* Projects Gallery */
.projects {
  background: var(--white);
}

.project-card {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  padding: 40px 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.project-card h2 {
  text-align: left;
  margin-bottom: 16px;
}

.location {
  color: var(--text-medium);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

/* Style Elements */
.style-elements {
  background: var(--soft-gray);
  border-radius: 24px;
}

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

.element {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

/* Blog Posts */
.blog-posts {
  background: var(--white);
}

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

.post-card {
  background: linear-gradient(135deg, var(--pastel-cream) 0%, var(--pastel-peach) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.post-meta {
  color: var(--text-medium);
  font-size: 13px;
  margin-top: 16px;
}

/* Tips Section */
.tips {
  background: var(--soft-gray);
  border-radius: 24px;
}

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

.tip {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 500px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.tip h3 {
  margin-bottom: 12px;
  color: var(--text-dark);
}

/* Contact Methods */
.contact-methods {
  background: var(--soft-gray);
  border-radius: 24px;
}

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

.contact-card {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.contact-card h3 {
  margin-bottom: 16px;
  color: var(--text-dark);
}

/* Contact Form */
.contact-form-section {
  background: var(--white);
  border-radius: 24px;
}

.contact-form-section > .container > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--text-medium);
}

.form-placeholder {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.form-placeholder p {
  background: var(--white);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-medium);
}

.form-placeholder .btn-primary {
  width: 100%;
  margin-top: 8px;
}

/* Location Section */
.location {
  background: var(--soft-gray);
  border-radius: 24px;
}

.location p, .location ul {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.location strong {
  color: var(--text-dark);
}

/* FAQ Section */
.faq-section {
  background: var(--white);
  border-radius: 24px;
}

.faq-item {
  background: linear-gradient(135deg, var(--pastel-cream) 0%, var(--pastel-peach) 100%);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 16px;
}

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

.faq-item p {
  margin-bottom: 0;
  color: var(--text-dark);
}

/* Legal Content */
.legal-content {
  background: var(--white);
  border-radius: 24px;
}

.legal-content h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content h3 {
  text-align: left;
  margin-top: 24px;
  font-size: 20px;
}

.legal-content p, .legal-content ul {
  max-width: 100%;
  margin-bottom: 16px;
}

/* Confirmation Page */
.confirmation {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
  border-radius: 24px;
  text-align: center;
  padding: 60px 20px;
}

.confirmation p {
  font-size: 18px;
  margin-bottom: 16px;
}

.confirmation h2 {
  margin-top: 40px;
  margin-bottom: 24px;
}

.confirmation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
}

.confirmation li {
  background: var(--white);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Suggestions */
.suggestions {
  background: var(--soft-gray);
  border-radius: 24px;
}

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

.suggestion-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.suggestion-card h3 {
  margin-bottom: 8px;
}

.suggestion-card .btn-secondary {
  margin-top: auto;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

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

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

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.footer-section p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.6;
}

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

.footer-section nav a {
  font-size: 14px;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.footer-section nav a:hover {
  color: #5A6C7D;
}

.copyright {
  text-align: center;
  color: var(--text-medium);
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-banner-text {
  flex: 1 1 400px;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-banner button {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--text-dark);
  color: var(--white);
}

.cookie-accept:hover {
  background: #1a252f;
  transform: translateY(-2px);
}

.cookie-reject {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.cookie-reject:hover {
  background: var(--soft-gray);
}

.cookie-settings {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

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

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background: var(--white);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

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

.cookie-modal-close {
  background: var(--soft-gray);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--text-medium);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--text-dark);
}

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

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

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

.cookie-category p {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 0;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cookie-modal-actions button {
  flex: 1 1 150px;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background: var(--text-dark);
  color: var(--white);
}

.cookie-save:hover {
  background: #1a252f;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Cards */
  .value-card,
  .service-card,
  .pillar,
  .team-member,
  .contact-card,
  .post-card,
  .tip,
  .element,
  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Stats */
  .stats-grid {
    gap: 32px;
  }
  
  /* Timeline */
  .milestone {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-banner button {
    width: 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-modal-actions button {
    width: 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 30px;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .stat-number {
    font-size: 36px;
  }
}

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

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

/* Accessibility */
*:focus {
  outline: 2px solid var(--pastel-lavender);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--pastel-lavender);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .main-nav {
    display: none;
  }
}