/* ================================================================
   QUICKPANELING - ELEGANT CLASSIC DESIGN SYSTEM
   Timeless elegant design with refined elements
   ================================================================ */

/* ================================================================
   CSS RESET & BASE STYLES
   ================================================================ */

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

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

body {
  font-family: 'Georgia', 'Garamond', serif;
  line-height: 1.8;
  color: #2c2c2c;
  background-color: #faf8f5;
  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;
}

/* ================================================================
   TYPOGRAPHY - ELEGANT CLASSIC STYLE
   ================================================================ */

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

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

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

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

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* ================================================================
   LAYOUT CONTAINERS - FLEXBOX ONLY
   ================================================================ */

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

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

/* ================================================================
   HEADER & NAVIGATION - ELEGANT CLASSIC
   ================================================================ */

header {
  background-color: #ffffff;
  border-bottom: 2px solid #d4c5b0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

header .container {
  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 {
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: #4a4a4a;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  color: #2E7D32;
  border-bottom-color: #2E7D32;
}

/* ================================================================
   MOBILE MENU - RESPONSIVE NAVIGATION
   ================================================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #2E7D32;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1001;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #8b7355;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #6d5a44;
}

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

.mobile-nav a {
  padding: 16px 0;
  border-bottom: 1px solid #e8e0d5;
  color: #4a4a4a;
  font-size: 16px;
  font-family: 'Georgia', serif;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #2E7D32;
  padding-left: 10px;
}

/* ================================================================
   HERO SECTIONS - ELEGANT CLASSIC STYLE
   ================================================================ */

.hero {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #d4c5b0;
}

.hero h1 {
  font-size: 48px;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero .subheadline {
  font-size: 20px;
  color: #5a5a5a;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-category,
.hero-archive,
.hero-contact,
.hero-legal,
.hero-thankyou {
  background: linear-gradient(135deg, #f5f0e8 0%, #faf8f5 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 2px solid #d4c5b0;
}

/* ================================================================
   BUTTONS - ELEGANT CLASSIC DESIGN
   ================================================================ */

.btn,
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #2E7D32;
  color: #ffffff;
  border-color: #2E7D32;
}

.btn-primary:hover {
  background-color: #1b5e20;
  border-color: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.3);
}

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

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

.btn {
  background-color: #8b7355;
  color: #ffffff;
  border-color: #8b7355;
}

.btn:hover {
  background-color: #6d5a44;
  border-color: #6d5a44;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 115, 85, 0.3);
}

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

/* ================================================================
   TRUST BADGES & STATS
   ================================================================ */

.trust-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.trust-badges span {
  font-size: 14px;
  color: #6a6a6a;
  padding: 10px 20px;
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid #d4c5b0;
  font-family: 'Georgia', serif;
}

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

.stats span,
.stats-banner span {
  font-size: 16px;
  color: #4a4a4a;
  font-weight: 600;
  font-family: 'Georgia', serif;
}

/* ================================================================
   BREADCRUMBS
   ================================================================ */

.breadcrumbs {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.breadcrumbs a {
  color: #2E7D32;
  text-decoration: underline;
}

.breadcrumbs a:hover {
  color: #1b5e20;
}

/* ================================================================
   CATEGORY CARDS - FLEXBOX LAYOUT
   ================================================================ */

.categories {
  padding: 60px 20px;
  background-color: #ffffff;
}

.categories h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #1a1a1a;
}

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

.category-card {
  background-color: #faf8f5;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #e8e0d5;
  transition: all 0.3s ease;
  flex: 1 1 calc(25% - 30px);
  min-width: 250px;
  margin-bottom: 20px;
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: #2E7D32;
}

.category-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.category-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.category-card p {
  font-size: 15px;
  color: #6a6a6a;
  margin-bottom: 20px;
}

.category-card a {
  color: #2E7D32;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.category-card a:hover {
  border-bottom-color: #2E7D32;
}

/* ================================================================
   BENEFITS SECTION - FLEXBOX LAYOUT
   ================================================================ */

.benefits {
  padding: 60px 20px;
  background-color: #f5f0e8;
}

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

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

.benefit-item {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #d4c5b0;
  flex: 1 1 calc(50% - 15px);
  min-width: 280px;
  margin-bottom: 20px;
  position: relative;
}

.benefit-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2E7D32;
}

.benefit-item p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.7;
}

/* ================================================================
   PRICING CARDS - FLEXBOX LAYOUT
   ================================================================ */

.pricing {
  padding: 60px 20px;
  background-color: #ffffff;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.pricing-card {
  background-color: #faf8f5;
  padding: 40px 32px;
  border-radius: 8px;
  border: 2px solid #e8e0d5;
  text-align: center;
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  max-width: 350px;
  margin-bottom: 20px;
  position: relative;
}

.pricing-card.featured {
  border-color: #2E7D32;
  border-width: 3px;
  transform: scale(1.05);
  background-color: #ffffff;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.07);
}

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

.pricing-card .price {
  font-size: 42px;
  font-weight: 700;
  color: #2E7D32;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.pricing-card p {
  font-size: 15px;
  color: #6a6a6a;
  margin-bottom: 24px;
  min-height: 60px;
}

.pricing-card .badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: #FF6F00;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Georgia', serif;
}

.pricing .guarantee {
  text-align: center;
  color: #6a6a6a;
  font-size: 14px;
  font-style: italic;
  margin-top: 30px;
}

/* ================================================================
   TESTIMONIALS - READABLE CONTRAST
   ================================================================ */

.testimonials {
  padding: 60px 20px;
  background-color: #f5f0e8;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #1a1a1a;
}

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

.testimonial-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #d4c5b0;
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  max-width: 500px;
  margin-bottom: 20px;
  position: relative;
}

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

.testimonial-card strong {
  display: block;
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 8px;
  font-style: normal;
}

.testimonial-card span {
  color: #FF6F00;
  font-size: 18px;
}

.testimonials > .container > p {
  text-align: center;
  color: #4a4a4a;
  font-size: 15px;
  margin-top: 30px;
}

/* ================================================================
   SUBCATEGORIES & TIPS - FLEXBOX LAYOUT
   ================================================================ */

.subcategories,
.tips-preview {
  padding: 60px 20px;
  background-color: #ffffff;
}

.subcategory-grid,
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.subcategory-item,
.tip-card {
  background-color: #faf8f5;
  padding: 28px;
  border-radius: 8px;
  border: 2px solid #e8e0d5;
  text-align: center;
  transition: all 0.3s ease;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
}

.subcategory-item:hover,
.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #2E7D32;
}

.subcategory-item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.subcategory-item h3,
.tip-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.subcategory-item p,
.tip-card p {
  font-size: 14px;
  color: #6a6a6a;
}

.tip-card .difficulty {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  background-color: #FFF9C4;
  color: #5a5a5a;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

/* ================================================================
   PACKAGE OFFER SECTION
   ================================================================ */

.package-offer {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5f0e8 0%, #faf8f5 100%);
  text-align: center;
  border-top: 2px solid #d4c5b0;
  border-bottom: 2px solid #d4c5b0;
}

.package-offer h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.package-offer .price {
  font-size: 48px;
  font-weight: 700;
  color: #2E7D32;
  margin-bottom: 30px;
  font-family: 'Georgia', serif;
}

.package-offer ul {
  list-style: none;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.package-offer ul li {
  padding: 12px 0;
  font-size: 16px;
  color: #4a4a4a;
  border-bottom: 1px solid #e8e0d5;
}

.package-offer ul li:last-child {
  border-bottom: none;
}

.package-offer .guarantee {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  margin-bottom: 30px;
}

/* ================================================================
   STORAGE SOLUTIONS & AREAS
   ================================================================ */

.storage-solutions,
.life-areas,
.morning-routine,
.money-saving {
  padding: 60px 20px;
  background-color: #ffffff;
}

.solutions-grid,
.areas-grid,
.routine-list,
.savings-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.solution-item,
.area-item,
.routine-item,
.saving-item {
  background-color: #faf8f5;
  padding: 28px;
  border-radius: 8px;
  border: 2px solid #e8e0d5;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  margin-bottom: 20px;
  position: relative;
}

.solution-item h3,
.area-item h3,
.routine-item h3,
.saving-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2E7D32;
}

.solution-item p,
.area-item p,
.routine-item p,
.saving-item p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.7;
}

/* ================================================================
   SHORTCUTS & FEATURES
   ================================================================ */

.shortcuts-preview {
  padding: 60px 20px;
  background-color: #f5f0e8;
}

.shortcuts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.shortcut-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 2px solid #d4c5b0;
  flex-wrap: wrap;
}

.shortcut-item strong {
  font-family: 'Courier New', monospace;
  background-color: #2E7D32;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 15px;
  min-width: 180px;
  text-align: center;
}

.shortcut-item p {
  flex: 1;
  margin: 0;
  color: #4a4a4a;
  font-size: 15px;
}

/* ================================================================
   FILTERS & COLLECTIONS
   ================================================================ */

.filters,
.collections {
  padding: 60px 20px;
  background-color: #faf8f5;
}

.filter-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-category,
.filter-difficulty,
.filter-time {
  padding: 12px 20px;
  border: 2px solid #d4c5b0;
  border-radius: 6px;
  font-family: 'Georgia', serif;
  font-size: 15px;
  background-color: #ffffff;
  color: #4a4a4a;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.filter-category:hover,
.filter-difficulty:hover,
.filter-time:hover {
  border-color: #2E7D32;
}

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

.collection-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #d4c5b0;
  text-align: center;
  flex: 1 1 calc(25% - 30px);
  min-width: 250px;
  margin-bottom: 20px;
  position: relative;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border-color: #2E7D32;
}

/* ================================================================
   QUICK ACCESS & STATS
   ================================================================ */

.categories-quick-access,
.stats-dashboard {
  padding: 60px 20px;
  background-color: #ffffff;
}

.quick-access-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-box {
  background-color: #f5f0e8;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #d4c5b0;
  text-align: center;
  transition: all 0.3s ease;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
}

.category-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border-color: #2E7D32;
  background-color: #ffffff;
}

.category-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.category-box span {
  font-size: 14px;
  color: #6a6a6a;
}

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

.stat-item {
  text-align: center;
  flex: 1 1 calc(33.333% - 40px);
  min-width: 200px;
}

.stat-item strong {
  display: block;
  font-size: 48px;
  color: #2E7D32;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

.stat-item p {
  font-size: 16px;
  color: #5a5a5a;
  margin: 0;
}

/* ================================================================
   PACKAGES COMPARISON
   ================================================================ */

.packages-comparison {
  padding: 60px 20px;
  background-color: #f5f0e8;
}

.comparison-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.package-card {
  background-color: #ffffff;
  padding: 36px 28px;
  border-radius: 8px;
  border: 2px solid #d4c5b0;
  text-align: center;
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 260px;
  max-width: 350px;
  margin-bottom: 20px;
  position: relative;
}

.package-card.featured {
  border-color: #2E7D32;
  border-width: 3px;
  transform: scale(1.05);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.package-card.featured:hover {
  transform: translateY(-6px) scale(1.05);
}

/* ================================================================
   CONTACT FORMS & METHODS
   ================================================================ */

.contact-methods,
.contact-form-section,
.faq-contact,
.location {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.method-item {
  background-color: #faf8f5;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #e8e0d5;
  text-align: center;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  margin-bottom: 20px;
  position: relative;
}

.method-item h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #2E7D32;
}

.method-item p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.7;
}

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

.form-fields {
  margin-top: 30px;
}

.form-fields p {
  margin-bottom: 20px;
  font-size: 15px;
  color: #4a4a4a;
}

.required {
  color: #d32f2f;
}

.form-fields ul {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 20px;
}

.form-fields ul li {
  padding: 8px 0;
  color: #5a5a5a;
  font-size: 15px;
}

.consent {
  font-size: 14px;
  color: #6a6a6a;
}

.form-note {
  margin-top: 30px;
  font-size: 14px;
  color: #6a6a6a;
  text-align: center;
  font-style: italic;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #faf8f5;
  padding: 24px;
  border-radius: 8px;
  border: 2px solid #e8e0d5;
}

.faq-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.faq-item p {
  font-size: 15px;
  color: #5a5a5a;
  margin: 0;
}

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

.location-info p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.8;
}

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

.legal-content {
  padding: 60px 20px;
  background-color: #ffffff;
}

.text-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 30px;
  background-color: #faf8f5;
  border-radius: 8px;
  border: 1px solid #e8e0d5;
}

.text-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a1a1a;
  border-bottom: 2px solid #d4c5b0;
  padding-bottom: 12px;
}

.text-section p,
.text-section ul,
.text-section ol {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.text-section ul,
.text-section ol {
  padding-left: 30px;
}

.text-section li {
  margin-bottom: 10px;
}

.text-section a {
  color: #2E7D32;
  text-decoration: underline;
}

.text-section a:hover {
  color: #1b5e20;
}

.warning {
  background-color: #fff3cd;
  border-left: 4px solid #FF6F00;
  padding: 16px;
  margin: 20px 0;
  border-radius: 4px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2E7D32;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 30px;
  font-weight: bold;
}

.what-next,
.explore-content,
.alternative-contact,
.return-navigation,
.confirmation-details,
.explore-more,
.return-home {
  padding: 60px 20px;
  background-color: #ffffff;
}

.steps-list,
.timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item,
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #faf8f5;
  padding: 24px;
  border-radius: 8px;
  border: 2px solid #e8e0d5;
}

.step-item strong,
.timeline-item strong {
  background-color: #2E7D32;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.step-item p,
.timeline-item p {
  margin: 0;
  font-size: 15px;
  color: #4a4a4a;
}

.email-note {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
}

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

.suggestion-card,
.explore-card {
  background-color: #faf8f5;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #d4c5b0;
  text-align: center;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 260px;
  max-width: 350px;
  margin-bottom: 20px;
  position: relative;
}

.suggestion-card:hover,
.explore-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border-color: #2E7D32;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-option {
  text-align: center;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
}

.nav-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  padding: 14px 28px;
  background-color: #8b7355;
  color: #ffffff;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.nav-link:hover {
  background-color: #6d5a44;
  transform: translateY(-2px);
}

/* ================================================================
   CTA FINAL SECTION
   ================================================================ */

.cta-final {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2E7D32 0%, #1b5e20 100%);
  text-align: center;
  color: #ffffff;
}

.cta-final h2 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.cta-final .btn-primary {
  background-color: #ffffff;
  color: #2E7D32;
  border-color: #ffffff;
}

.cta-final .btn-primary:hover {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.cta-final .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-final .btn-secondary:hover {
  background-color: #ffffff;
  color: #2E7D32;
}

/* ================================================================
   FOOTER - ELEGANT CLASSIC DESIGN
   ================================================================ */

footer {
  background-color: #3a3a3a;
  color: #d4d4d4;
  padding: 50px 20px 30px;
  border-top: 3px solid #2E7D32;
}

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

.footer-section {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

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

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

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

.footer-nav a {
  font-size: 14px;
  color: #c4c4c4;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #2E7D32;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  font-size: 13px;
  color: #9a9a9a;
  padding-top: 30px;
  border-top: 1px solid #5a5a5a;
  margin-top: 30px;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 3px solid #2E7D32;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  font-size: 14px;
  color: #4a4a4a;
  margin: 0;
  font-family: 'Georgia', serif;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background-color: #2E7D32;
  color: #ffffff;
  border-color: #2E7D32;
}

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

.cookie-reject {
  background-color: #8b7355;
  color: #ffffff;
  border-color: #8b7355;
}

.cookie-reject:hover {
  background-color: #6d5a44;
  border-color: #6d5a44;
}

.cookie-settings {
  background-color: transparent;
  color: #2E7D32;
  border-color: #2E7D32;
}

.cookie-settings:hover {
  background-color: #2E7D32;
  color: #ffffff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid #e8e0d5;
}

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

.cookie-category h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2E7D32;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* ================================================================
   BADGE ELEMENTS
   ================================================================ */

.badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: #FF6F00;
  color: #ffffff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Georgia', serif;
  margin-top: 10px;
}

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

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide main navigation on mobile */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero .subheadline {
    font-size: 16px;
  }
  
  /* Flexbox layout adjustments */
  .category-grid,
  .benefits-grid,
  .pricing-grid,
  .testimonial-grid,
  .subcategory-grid,
  .tips-grid,
  .solutions-grid,
  .areas-grid,
  .savings-grid,
  .collections-grid,
  .quick-access-grid,
  .methods-grid,
  .suggestions-grid,
  .explore-grid {
    flex-direction: column;
  }
  
  .category-card,
  .benefit-item,
  .pricing-card,
  .testimonial-card,
  .subcategory-item,
  .tip-card,
  .solution-item,
  .area-item,
  .routine-item,
  .saving-item,
  .collection-card,
  .category-box,
  .method-item,
  .suggestion-card,
  .explore-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
  
  /* Text-image sections to column layout */
  .shortcut-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .shortcut-item strong {
    min-width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent responsive */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
    min-width: 120px;
  }
  
  /* Stats grid */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-item {
    flex: 1 1 100%;
  }
  
  /* Package comparison */
  .comparison-grid,
  .package-card {
    flex-direction: column;
  }
  
  /* Filter options */
  .filter-options {
    flex-direction: column;
  }
  
  .filter-category,
  .filter-difficulty,
  .filter-time {
    width: 100%;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .category-card,
  .subcategory-item,
  .tip-card,
  .collection-card,
  .category-box {
    flex: 1 1 calc(50% - 15px);
  }
  
  .pricing-card,
  .package-card {
    flex: 1 1 calc(50% - 15px);
  }
  
  .benefit-item,
  .solution-item,
  .area-item,
  .routine-item,
  .saving-item,
  .testimonial-card {
    flex: 1 1 calc(50% - 15px);
  }
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .cta-buttons,
  .btn,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }
  
  body {
    background-color: #ffffff;
    color: #000000;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  .section {
    page-break-inside: avoid;
  }
}

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

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

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

/* ================================================================
   ANIMATIONS & TRANSITIONS
   ================================================================ */

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

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

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ================================================================
   END OF STYLESHEET
   ================================================================ */