/* ===================================
   LIMESTONESPARK - ELEGANT CLASSIC CSS
   Design Style: Timeless Elegant Design
   =================================== */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.8;
  color: #2C3E50;
  background-color: #FAF8F5;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

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

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

h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

h4 {
  font-size: 22px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 20px;
  color: #4a4a4a;
}

a {
  color: #8B4513;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #A0522D;
  text-decoration: underline;
}

ul {
  list-style: none;
}

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

/* === CONTAINER & LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* === MOBILE MENU TOGGLE === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #8B4513;
  color: #FAF8F5;
  border: 2px solid #8B4513;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle:hover {
  background-color: #A0522D;
  border-color: #A0522D;
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FAF8F5;
  z-index: 1002;
  transition: right 0.4s ease;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: 2px solid #8B4513;
  color: #8B4513;
  font-size: 28px;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
  line-height: 1;
}

.mobile-menu-close:hover {
  background-color: #8B4513;
  color: #FAF8F5;
}

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

.mobile-nav a {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 20px;
  color: #2C3E50;
  padding: 12px 16px;
  border-bottom: 1px solid #E5E0D8;
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-nav a:hover {
  color: #8B4513;
  padding-left: 24px;
  background-color: #F5F1EB;
  text-decoration: none;
}

/* === HEADER === */
.site-header {
  background-color: #FAF8F5;
  border-bottom: 2px solid #E5E0D8;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

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

.main-nav a {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 18px;
  color: #2C3E50;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.main-nav a:hover {
  color: #8B4513;
  text-decoration: none;
}

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

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

/* === BUTTONS === */
.cta-button {
  display: inline-block;
  background-color: #8B4513;
  color: #FAF8F5;
  padding: 14px 32px;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 18px;
  border: 2px solid #8B4513;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.cta-button:hover {
  background-color: #A0522D;
  border-color: #A0522D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
  text-decoration: none;
  color: #FAF8F5;
}

.cta-primary {
  display: inline-block;
  background-color: #8B4513;
  color: #FAF8F5;
  padding: 16px 40px;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 20px;
  border: 2px solid #8B4513;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-primary:hover {
  background-color: #A0522D;
  border-color: #A0522D;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.35);
  text-decoration: none;
  color: #FAF8F5;
}

.cta-secondary {
  display: inline-block;
  background-color: transparent;
  color: #8B4513;
  padding: 16px 40px;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 20px;
  border: 2px solid #8B4513;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-secondary:hover {
  background-color: #8B4513;
  color: #FAF8F5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.35);
  text-decoration: none;
}

.link-button {
  display: inline-block;
  color: #8B4513;
  padding: 10px 24px;
  border: 1px solid #8B4513;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.link-button:hover {
  background-color: #8B4513;
  color: #FAF8F5;
  text-decoration: none;
}

.read-more {
  display: inline-block;
  color: #8B4513;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.read-more:hover {
  border-bottom-color: #8B4513;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #FAF8F5 0%, #F5F1EB 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 3px solid #E5E0D8;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.subheadline {
  font-size: 22px;
  color: #4a4a4a;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  font-size: 16px;
  color: #4a4a4a;
}

/* === BENEFITS SECTION === */
.benefits {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.benefit-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background-color: #FAF8F5;
  padding: 32px;
  border: 2px solid #E5E0D8;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #8B4513;
}

.benefit-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #8B4513;
}

/* === SERVICES SECTION === */
.services-preview {
  padding: 60px 20px;
  background-color: #FAF8F5;
  margin-bottom: 60px;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-description {
  text-align: center;
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 48px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border: 2px solid #E5E0D8;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: #8B4513;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

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

.service-card .price {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 28px;
  color: #8B4513;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.service-card.featured {
  border: 3px solid #8B4513;
  position: relative;
}

.service-card.featured .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #8B4513;
  color: #FAF8F5;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 4px;
  font-family: 'Garamond', 'Georgia', serif;
}

.savings {
  font-size: 16px;
  color: #A0522D;
  font-style: italic;
  margin-bottom: 16px;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 550px;
  background-color: #FAF8F5;
  padding: 32px;
  border-left: 4px solid #8B4513;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

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

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

.customer-info strong {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 18px;
  color: #1a1a1a;
}

.customer-info span {
  font-size: 16px;
  color: #6a6a6a;
}

/* === STATS SECTION === */
.stats {
  background-color: #8B4513;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 200px;
}

.stat-number {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 48px;
  font-weight: 600;
  color: #FAF8F5;
  display: block;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 18px;
  color: #F5F1EB;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-banner h2 {
  color: #FAF8F5;
  font-size: 42px;
  margin-bottom: 20px;
}

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

.cta-banner .cta-button {
  background-color: #FAF8F5;
  color: #8B4513;
  border-color: #FAF8F5;
}

.cta-banner .cta-button:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #8B4513;
}

/* === PAGE HEADER === */
.page-header {
  background: linear-gradient(135deg, #FAF8F5 0%, #F5F1EB 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 3px solid #E5E0D8;
  margin-bottom: 60px;
}

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

.page-description {
  font-size: 20px;
  color: #4a4a4a;
}

.introduction {
  font-size: 20px;
  color: #4a4a4a;
  max-width: 800px;
  margin: 0 auto;
}

/* === FILTER NAVIGATION === */
.filter-navigation {
  padding: 40px 20px;
  margin-bottom: 40px;
}

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

.filter-btn {
  background-color: transparent;
  color: #2C3E50;
  border: 2px solid #E5E0D8;
  padding: 10px 24px;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #8B4513;
  color: #FAF8F5;
  border-color: #8B4513;
}

/* === LIFEHACKS GRID === */
.lifehacks-grid {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.lifehack-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.lifehack-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 24px;
  border: 2px solid #E5E0D8;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.lifehack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #8B4513;
}

.category-tag {
  display: inline-block;
  background-color: #8B4513;
  color: #FAF8F5;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.lifehack-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.lifehack-card p {
  font-size: 16px;
  margin-bottom: 16px;
}

.card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.card-meta span {
  font-size: 14px;
  color: #6a6a6a;
}

.difficulty {
  padding: 4px 12px;
  background-color: #F5F1EB;
  border-radius: 4px;
}

.time {
  padding: 4px 12px;
  background-color: #F5F1EB;
  border-radius: 4px;
}

/* === COLLECTIONS === */
.featured-collection {
  padding: 60px 20px;
  background-color: #FAF8F5;
  margin-bottom: 60px;
}

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

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

.collection-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  background-color: #FFFFFF;
  padding: 32px;
  border: 2px solid #E5E0D8;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #8B4513;
}

.collection-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.collection-card p {
  font-size: 16px;
  color: #6a6a6a;
  margin-bottom: 24px;
}

/* === CTA SECTION === */
.cta-section {
  background-color: #8B4513;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-section h2 {
  color: #FAF8F5;
  margin-bottom: 16px;
}

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

.cta-section .cta-button {
  background-color: #FAF8F5;
  color: #8B4513;
  border-color: #FAF8F5;
}

.cta-section .cta-button:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
}

/* === SERVICES OVERVIEW === */
.services-overview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

/* === PROCESS SECTION === */
.process {
  background-color: #FAF8F5;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.step-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background-color: #FFFFFF;
  padding: 32px;
  border: 2px solid #E5E0D8;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #8B4513;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #8B4513;
  color: #FAF8F5;
  font-size: 28px;
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* === BOOKING CTA === */
.booking-cta {
  background-color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.booking-cta p {
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-info {
  font-size: 18px;
  color: #8B4513;
  margin-bottom: 12px;
}

.availability {
  font-size: 16px;
  color: #6a6a6a;
}

/* === STORY SECTION === */
.story {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.text-section h2 {
  margin-top: 40px;
  text-align: left;
}

.text-section h3 {
  margin-top: 32px;
}

.text-section ul {
  list-style: disc;
  margin-left: 40px;
  margin-bottom: 24px;
}

.text-section ul li {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.8;
}

/* === VALUES SECTION === */
.values {
  background-color: #FAF8F5;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.value-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border: 2px solid #E5E0D8;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

.value-card h3 {
  font-size: 24px;
  color: #8B4513;
  margin-bottom: 16px;
}

/* === EXPERTISE SECTION === */
.expertise {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.expertise h2 {
  text-align: center;
  margin-bottom: 32px;
}

.expertise-list {
  max-width: 600px;
  margin: 0 auto;
}

.expertise-list ul {
  list-style: none;
}

.expertise-list ul li {
  font-size: 20px;
  padding: 16px 24px;
  background-color: #FAF8F5;
  border-left: 4px solid #8B4513;
  margin-bottom: 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.expertise-list ul li:hover {
  background-color: #F5F1EB;
  padding-left: 32px;
}

/* === LOCATION SECTION === */
.location {
  background-color: #FAF8F5;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.location h2 {
  text-align: center;
  margin-bottom: 32px;
}

.location-info {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.location-info p {
  font-size: 18px;
  margin-bottom: 24px;
}

.address {
  font-size: 20px;
  line-height: 1.8;
}

.hours,
.contact {
  font-size: 18px;
}

/* === BLOG NAVIGATION === */
.blog-navigation {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* === BLOG GRID === */
.blog-grid {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.article-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.article-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 28px;
  border: 2px solid #E5E0D8;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #8B4513;
}

.article-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.excerpt {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 14px;
  color: #6a6a6a;
}

.date,
.read-time {
  padding: 4px 12px;
  background-color: #F5F1EB;
  border-radius: 4px;
}

/* === NEWSLETTER SECTION === */
.newsletter-signup {
  background-color: #8B4513;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.newsletter-signup h2 {
  color: #FAF8F5;
  margin-bottom: 16px;
}

.newsletter-signup p {
  color: #F5F1EB;
  font-size: 18px;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto 16px;
}

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  font-size: 16px;
  border: 2px solid #E5E0D8;
  border-radius: 4px;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.privacy-note {
  font-size: 14px;
  color: #F5F1EB;
}

.privacy-note a {
  color: #FAF8F5;
  text-decoration: underline;
}

/* === CONTACT OPTIONS === */
.contact-options {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.option-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  background-color: #FAF8F5;
  padding: 32px;
  border: 2px solid #E5E0D8;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #8B4513;
}

.option-card h3 {
  font-size: 24px;
  color: #8B4513;
  margin-bottom: 16px;
}

.option-card p {
  font-size: 16px;
}

/* === CONTACT FORM === */
.contact-form-section {
  padding: 60px 20px;
  background-color: #FAF8F5;
  margin-bottom: 60px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border: 2px solid #E5E0D8;
  border-radius: 4px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 8px;
}

.input-field {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: 'Georgia', 'Times New Roman', serif;
  border: 2px solid #E5E0D8;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: #8B4513;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

select.input-field {
  cursor: pointer;
}

.form-field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-field.checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  cursor: pointer;
}

.form-field.checkbox label {
  margin-bottom: 0;
  font-size: 16px;
  cursor: pointer;
}

.form-note {
  font-size: 14px;
  color: #6a6a6a;
  margin-top: 16px;
}

/* === MAP SECTION === */
.map-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.location-details {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.location-details p {
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.8;
}

/* === LEGAL CONTENT === */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.last-updated {
  font-size: 16px;
  color: #6a6a6a;
  text-align: center;
  margin-bottom: 32px;
}

.acceptance-note {
  background-color: #F5F1EB;
  padding: 20px;
  border-left: 4px solid #8B4513;
  margin-top: 40px;
  border-radius: 4px;
}

/* === ERROR PAGES === */
.error-hero {
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.error-code {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 120px;
  color: #8B4513;
  font-weight: 600;
  margin-bottom: 24px;
}

.error-message {
  font-size: 24px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.error-description {
  font-size: 18px;
  color: #4a4a4a;
}

.helpful-links {
  padding: 60px 20px;
  background-color: #FAF8F5;
  margin-bottom: 60px;
}

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

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

.link-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border: 2px solid #E5E0D8;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #8B4513;
}

.link-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.link-card p {
  font-size: 16px;
  color: #6a6a6a;
  margin-bottom: 24px;
}

.contact-cta {
  background-color: #8B4513;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.contact-cta h2 {
  color: #FAF8F5;
  margin-bottom: 16px;
}

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

.email-link {
  font-size: 18px;
  margin-top: 24px;
}

.email-link a {
  color: #FAF8F5;
  text-decoration: underline;
}

/* === THANK YOU PAGES === */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #8B4513;
  color: #FAF8F5;
  font-size: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thank-you-message {
  font-size: 22px;
  margin-bottom: 20px;
}

.confirmation-text {
  font-size: 18px;
  color: #6a6a6a;
}

.next-actions {
  padding: 60px 20px;
  background-color: #FAF8F5;
  margin-bottom: 60px;
}

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

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

.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px;
  border: 2px solid #E5E0D8;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #8B4513;
}

.action-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.action-card p {
  font-size: 16px;
  color: #6a6a6a;
  margin-bottom: 24px;
}

.social-follow {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.social-follow h2 {
  margin-bottom: 16px;
}

.social-follow p {
  font-size: 18px;
  color: #4a4a4a;
}

/* === FOOTER === */
.site-footer {
  background-color: #2C3E50;
  color: #F5F1EB;
  padding: 60px 0 24px;
}

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

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(2);
}

.footer-column h4 {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 20px;
  color: #FAF8F5;
  margin-bottom: 16px;
}

.footer-column p {
  font-size: 16px;
  color: #E5E0D8;
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #E5E0D8;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: #F39C12;
  padding-left: 8px;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 235, 0.2);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.legal-links a {
  color: #E5E0D8;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #F39C12;
  text-decoration: underline;
}

.copyright {
  font-size: 14px;
  color: #E5E0D8;
  text-align: center;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FAF8F5;
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  font-size: 16px;
  color: #F5F1EB;
  margin-bottom: 0;
}

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

.cookie-button {
  padding: 10px 24px;
  font-size: 16px;
  font-family: 'Garamond', 'Georgia', serif;
  border: 2px solid #FAF8F5;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #8B4513;
  color: #FAF8F5;
  border-color: #8B4513;
}

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

.cookie-reject {
  background-color: transparent;
  color: #FAF8F5;
}

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

.cookie-settings {
  background-color: transparent;
  color: #FAF8F5;
}

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

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 28px;
  color: #2C3E50;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #FFFFFF;
  border: 2px solid #E5E0D8;
  border-radius: 4px;
}

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

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

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

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

.cookie-toggle.active::after {
  left: 27px;
}

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

.cookie-category p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 0;
}

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

.cookie-save {
  flex: 1;
  min-width: 150px;
  background-color: #8B4513;
  color: #FAF8F5;
  padding: 14px 24px;
  font-size: 18px;
  font-family: 'Garamond', 'Georgia', serif;
  border: 2px solid #8B4513;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save:hover {
  background-color: #A0522D;
  border-color: #A0522D;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  .header-content {
    justify-content: center;
  }
  
  .header-content .cta-button {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* Layout adjustments */
  .section {
    padding: 40px 20px;
  }
  
  /* Grid adjustments */
  .benefits-grid,
  .services-grid,
  .testimonial-grid,
  .stats-grid,
  .lifehack-cards,
  .article-cards,
  .collection-grid,
  .values-grid,
  .options-grid,
  .link-grid,
  .action-cards {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .lifehack-card,
  .article-card,
  .collection-card,
  .value-card,
  .option-card,
  .link-card,
  .action-card {
    flex: 1 1 100%;
  }
  
  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-button {
    flex: 1;
    min-width: 100px;
  }
  
  /* Form adjustments */
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
  
  /* Error page */
  .error-code {
    font-size: 80px;
  }
  
  .step-cards {
    flex-direction: column;
  }
  
  .step-card {
    flex: 1 1 100%;
  }
}

/* === TABLET ADJUSTMENTS === */
@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-grid,
  .services-grid {
    gap: 24px;
  }
  
  .benefit-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .lifehack-card,
  .article-card {
    flex: 1 1 calc(50% - 12px);
  }
}

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

.hero-content,
.section {
  animation: fadeIn 0.6s ease-out;
}

/* === ACCESSIBILITY === */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #8B4513;
  outline-offset: 2px;
}

/* === PRINT STYLES === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .site-header,
  .site-footer {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}