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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2C3E50;
}

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

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

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

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #2C3E50;
}

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

li {
  margin-bottom: 8px;
}

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

a:hover {
  color: #C4320A;
}

strong {
  font-weight: 700;
  color: #2C3E50;
}

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

/* Header */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

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

.logo a {
  display: flex;
  align-items: center;
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding: 8px 0;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background-color: #FF6B35;
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  padding: 80px 32px 32px;
  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: 16px;
  right: 16px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #FF6B35;
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #2C3E50;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

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

.hero p {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background-color: #C4320A;
  border-color: #C4320A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary:hover {
  background-color: #FF6B35;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.2);
}

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

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C3E50;
}

/* Value Proposition */
.value-proposition {
  background-color: #F8F9FA;
  text-align: center;
}

.value-proposition h2 {
  margin-bottom: 16px;
}

.value-proposition > p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 150px;
}

.stat strong {
  font-size: 48px;
  color: #FF6B35;
  font-family: 'Montserrat', sans-serif;
  display: block;
}

.stat span {
  font-size: 14px;
  color: #2C3E50;
  text-align: center;
}

/* Feature Grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
  flex: 1 1 280px;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
}

.feature-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.feature-card p {
  color: #2C3E50;
  font-size: 14px;
  opacity: 0.8;
}

/* Service Cards */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.service-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 320px;
  max-width: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

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

.service-card.featured {
  border: 2px solid #FF6B35;
}

.service-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.service-card p {
  flex-grow: 1;
  font-size: 14px;
  color: #2C3E50;
}

.service-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #F0F0F0;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B35;
  font-family: 'Montserrat', sans-serif;
}

.duration {
  font-size: 14px;
  color: #2C3E50;
  opacity: 0.7;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #FFC947;
  color: #2C3E50;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Testimonials */
.testimonials {
  background-color: #F8F9FA;
}

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

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2C3E50;
  flex-grow: 1;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  color: #FF6B35;
  font-size: 14px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #FF6B35 0%, #C4320A 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 60px 20px;
}

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

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

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

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

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

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

/* Lifehacks Page */
.category-filter {
  background-color: #F8F9FA;
  text-align: center;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.category-btn {
  padding: 12px 24px;
  background-color: #FFFFFF;
  color: #2C3E50;
  border: 2px solid #E0E0E0;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background-color: #FF6B35;
  color: #FFFFFF;
  border-color: #FF6B35;
  transform: translateY(-2px);
}

.lifehack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.lifehack-card {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 320px;
  max-width: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

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

.category-tag {
  display: inline-block;
  background-color: #FFC947;
  color: #2C3E50;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  align-self: flex-start;
}

.lifehack-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.lifehack-card p {
  font-size: 14px;
  color: #2C3E50;
  opacity: 0.8;
}

/* Workshop Cards */
.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.workshop-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

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

.workshop-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.workshop-card .date,
.workshop-card .location,
.workshop-card .spots {
  font-size: 14px;
  color: #2C3E50;
  opacity: 0.8;
}

.workshop-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B35;
  margin-top: 16px;
}

/* Benefit Grid */
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
  flex: 1 1 280px;
  max-width: 320px;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

/* Blog & Article Cards */
.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}

.article-card {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 320px;
  max-width: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

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

.article-card .category {
  display: inline-block;
  background-color: #FF6B35;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  align-self: flex-start;
}

.article-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.article-card .meta {
  font-size: 12px;
  color: #2C3E50;
  opacity: 0.6;
  margin-top: 12px;
}

.article-feature {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  padding: 48px;
  border-radius: 16px;
  margin-bottom: 48px;
  position: relative;
}

.article-feature h2 {
  text-align: left;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #2C3E50;
  opacity: 0.7;
  margin-top: 16px;
  flex-wrap: wrap;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.tag {
  padding: 8px 16px;
  background-color: #FFFFFF;
  color: #2C3E50;
  border: 2px solid #E0E0E0;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tag:hover,
.tag.active {
  background-color: #FF6B35;
  color: #FFFFFF;
  border-color: #FF6B35;
}

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

.team-member {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 320px;
  max-width: 380px;
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-4px);
}

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

.team-member .role {
  color: #FF6B35;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}

.team-member p {
  font-size: 14px;
}

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

.contact-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 320px;
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

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

.contact-card p {
  font-size: 14px;
  color: #2C3E50;
}

.contact-card span {
  font-size: 12px;
  color: #FF6B35;
  font-weight: 600;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-top: 32px;
}

.address,
.transport {
  flex: 1 1 300px;
  max-width: 500px;
}

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

.hours-list li {
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
}

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

.person {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.person h3 {
  margin-bottom: 4px;
}

.person .role {
  color: #FF6B35;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.person p {
  font-size: 14px;
}

.person span {
  font-size: 12px;
  color: #2C3E50;
  opacity: 0.7;
  margin-top: 8px;
}

/* Legal Pages */
.legal-hero {
  background-color: #F8F9FA;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 48px;
}

.legal-hero h1 {
  margin-bottom: 16px;
}

.legal-hero p {
  font-size: 18px;
  color: #2C3E50;
  opacity: 0.8;
}

.last-updated,
.effective-date {
  font-size: 14px;
  color: #FF6B35;
  font-weight: 600;
  margin-top: 16px;
}

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

.text-section {
  margin-bottom: 48px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.text-section h2 {
  text-align: left;
  margin-bottom: 24px;
  color: #2C3E50;
}

.text-section h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  color: #2C3E50;
}

.text-section ul,
.text-section ol {
  margin-left: 24px;
}

.text-section li {
  margin-bottom: 12px;
  color: #2C3E50;
}

/* 404 & Thank You Pages */
.error-hero,
.thank-you-hero {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
}

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

.error-content h2 {
  margin-bottom: 24px;
}

.error-content ul {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.error-content li {
  padding: 12px 0;
  font-size: 16px;
}

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

.page-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.page-card h3 {
  color: #2C3E50;
}

.page-card p {
  flex-grow: 1;
  font-size: 14px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.success-icon img {
  width: 100%;
  height: 100%;
}

.confirmation {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.confirmation h3 {
  margin-top: 32px;
  margin-bottom: 24px;
}

.confirmation ol {
  text-align: left;
  max-width: 500px;
  margin: 24px auto;
}

.suggested-content,
.submission-cta {
  background-color: #F8F9FA;
}

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

.suggestion-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 320px;
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

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

.suggestion-card p {
  flex-grow: 1;
  font-size: 14px;
}

/* Stats Grid */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

/* Footer */
footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 280px;
  max-width: 350px;
}

.footer-section h3 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  color: #FFFFFF;
  opacity: 0.8;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #FFFFFF;
  opacity: 0.8;
  font-size: 14px;
  transition: opacity 0.3s ease, padding-left 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
  padding-left: 4px;
}

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

.footer-bottom p {
  color: #FFFFFF;
  opacity: 0.6;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  margin-bottom: 24px;
  text-align: left;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #F0F0F0;
}

.cookie-category:last-child {
  border-bottom: none;
}

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

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

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

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

.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: #2C3E50;
  opacity: 0.8;
  margin-bottom: 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .stats {
    gap: 32px;
  }
  
  .feature-grid,
  .service-cards,
  .testimonial-grid,
  .lifehack-grid,
  .article-grid,
  .team-grid,
  .contact-grid,
  .benefit-grid {
    gap: 20px;
  }
  
  .feature-card,
  .service-card,
  .testimonial-card,
  .lifehack-card,
  .article-card,
  .team-member,
  .contact-card,
  .benefit-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .article-feature {
    padding: 32px 24px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    max-width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .location-details {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .text-section {
    padding: 24px 16px;
  }
  
  .stat strong {
    font-size: 32px;
  }
}

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

.hero-content,
.feature-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-32 {
  margin-top: 32px;
}

.hidden {
  display: none;
}

/* Accessibility */
:focus-visible {
  outline: 2px solid #FF6B35;
  outline-offset: 2px;
}

button:focus-visible,
.btn:focus-visible {
  outline: 2px solid #FF6B35;
  outline-offset: 4px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-banner {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}