/* ============================================
   CRIMSON VORTEX - GEOMETRIC STRUCTURED DESIGN
   Austrian Thermal Spa - Vienna
   ============================================ */

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

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

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY - GEOMETRIC STRUCTURED */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  color: #8B2635;
  border-bottom: 4px solid #8B2635;
  padding-bottom: 16px;
  display: inline-block;
}

h2 {
  font-size: 32px;
  color: #2C5F6F;
  border-left: 6px solid #8B2635;
  padding-left: 16px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  color: #2C2C2C;
  border-bottom: 2px solid #E8D5C4;
  padding-bottom: 8px;
}

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

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

a:hover {
  color: #8B2635;
}

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

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

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

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

.content-wrapper {
  background: #FFFFFF;
  padding: 32px;
  border: 2px solid #E8D5C4;
  box-shadow: 0 0 0 4px #FFFFFF, 0 0 0 6px #2C5F6F;
  margin-bottom: 40px;
}

/* HEADER - GEOMETRIC STRUCTURE */
header {
  background: #FFFFFF;
  border-bottom: 4px solid #8B2635;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 0 #2C5F6F;
}

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

.logo {
  height: 60px;
  width: auto;
  border: 3px solid #8B2635;
  padding: 4px;
  background: #FFFFFF;
}

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

.main-nav a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: #2C2C2C;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #8B2635;
  border: 2px solid #8B2635;
  background: #E8D5C4;
}

.cta-button {
  background: #8B2635;
  color: #FFFFFF;
  padding: 12px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #2C5F6F;
  box-shadow: 4px 4px 0 #2C5F6F;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cta-button:hover,
.cta-button:focus {
  background: #2C5F6F;
  border-color: #8B2635;
  box-shadow: 6px 6px 0 #8B2635;
  transform: translate(-2px, -2px);
  color: #FFFFFF;
}

/* MOBILE MENU - GEOMETRIC SLIDE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2000;
  background: #8B2635;
  color: #FFFFFF;
  border: 3px solid #2C5F6F;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 4px 4px 0 #2C5F6F;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #2C5F6F;
  border-color: #8B2635;
  box-shadow: 6px 6px 0 #8B2635;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #FFFFFF;
  border-left: 6px solid #8B2635;
  box-shadow: -8px 0 16px rgba(44, 95, 111, 0.3);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #2C5F6F;
  color: #FFFFFF;
  border: 3px solid #8B2635;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0 #8B2635;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #8B2635;
  border-color: #2C5F6F;
  box-shadow: 4px 4px 0 #2C5F6F;
}

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

.mobile-nav a {
  display: block;
  padding: 16px;
  background: #E8D5C4;
  color: #2C2C2C;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  border: 3px solid #2C5F6F;
  box-shadow: 3px 3px 0 #2C5F6F;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #8B2635;
  color: #FFFFFF;
  border-color: #2C5F6F;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #2C5F6F;
}

/* SECTIONS - STRUCTURED SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HERO SECTION - GEOMETRIC POWER */
.hero {
  background: linear-gradient(135deg, #2C5F6F 0%, #8B2635 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #E8D5C4;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(232, 213, 196, 0.1) 20px,
    rgba(232, 213, 196, 0.1) 40px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 4px solid #FFFFFF;
  box-shadow: 0 0 0 8px rgba(139, 38, 53, 0.5);
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  color: #E8D5C4;
  font-weight: 700;
  border-bottom: 2px solid #E8D5C4;
  padding-bottom: 8px;
  display: inline-block;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #FFFFFF;
  text-shadow: 3px 3px 0 #8B2635;
  border: none;
  padding: 0;
}

.subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
  color: #E8D5C4;
  font-weight: 400;
}

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

.btn-primary,
.btn-secondary {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 4px solid;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.btn-primary {
  background: #8B2635;
  color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 6px 6px 0 #FFFFFF;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #FFFFFF;
  color: #8B2635;
  border-color: #8B2635;
  box-shadow: 8px 8px 0 #8B2635;
  transform: translate(-2px, -2px);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #FFFFFF;
  color: #2C5F6F;
  border-color: #2C5F6F;
  box-shadow: 8px 8px 0 #2C5F6F;
  transform: translate(-2px, -2px);
}

/* PAGE HERO - GEOMETRIC HEADER */
.page-hero {
  background: #2C5F6F;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 6px solid #8B2635;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    #8B2635 0px,
    #8B2635 20px,
    #E8D5C4 20px,
    #E8D5C4 40px
  );
}

.page-hero h1 {
  color: #FFFFFF;
  border-color: #E8D5C4;
  display: inline-block;
}

.page-hero .subheadline {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #E8D5C4;
}

/* INTRODUCTION SECTION */
.introduction {
  background: #F9F9F9;
  border-top: 4px solid #8B2635;
  border-bottom: 4px solid #2C5F6F;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  list-style: none;
  margin-left: 0;
}

.benefits-list li {
  padding: 16px 16px 16px 56px;
  background: #FFFFFF;
  border: 3px solid #2C5F6F;
  box-shadow: 4px 4px 0 #E8D5C4;
  position: relative;
  font-weight: 600;
  transition: all 0.3s ease;
}

.benefits-list li::before {
  content: '▸';
  position: absolute;
  left: 20px;
  color: #8B2635;
  font-size: 24px;
  font-weight: 700;
}

.benefits-list li:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #E8D5C4;
  border-color: #8B2635;
}

/* SERVICES GRID - STRUCTURED LAYOUT */
.services-grid,
.services-detailed-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.service-card,
.service-detailed-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border: 4px solid #2C5F6F;
  box-shadow: 6px 6px 0 #E8D5C4;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #8B2635;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover,
.service-detailed-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 #E8D5C4, 0 0 0 4px #8B2635;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3,
.service-detailed-card h3 {
  color: #8B2635;
  font-size: 20px;
  text-transform: uppercase;
  border-bottom: 3px solid #2C5F6F;
  padding-bottom: 12px;
}

.price,
.price-highlight {
  font-size: 28px;
  font-weight: 700;
  color: #8B2635;
  font-family: 'Playfair Display', serif;
  margin: 16px 0;
  padding: 12px;
  background: #E8D5C4;
  border: 3px solid #2C5F6F;
  text-align: center;
  box-shadow: 3px 3px 0 #2C5F6F;
}

.duration {
  font-size: 14px;
  color: #2C5F6F;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  background: #F9F9F9;
  border-left: 4px solid #8B2635;
}

.btn-service {
  background: #2C5F6F;
  color: #FFFFFF;
  padding: 12px 24px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #8B2635;
  box-shadow: 4px 4px 0 #8B2635;
  transition: all 0.3s ease;
  margin-top: auto;
  display: inline-block;
}

.btn-service:hover,
.btn-service:focus {
  background: #8B2635;
  color: #FFFFFF;
  border-color: #2C5F6F;
  box-shadow: 6px 6px 0 #2C5F6F;
  transform: translate(-2px, -2px);
}

.btn-link {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 32px;
  background: transparent;
  color: #2C5F6F;
  border: 3px solid #2C5F6F;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 4px 4px 0 #E8D5C4;
  transition: all 0.3s ease;
}

.btn-link:hover,
.btn-link:focus {
  background: #2C5F6F;
  color: #FFFFFF;
  border-color: #8B2635;
  box-shadow: 6px 6px 0 #8B2635;
  transform: translate(-2px, -2px);
}

/* BENEFITS SECTION - GEOMETRIC GRID */
.benefits,
.thermal-benefits {
  background: #E8D5C4;
  border-top: 6px solid #8B2635;
  border-bottom: 6px solid #2C5F6F;
}

.benefits-grid,
.benefits-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.benefit-item,
.benefit-category,
.benefit-detail {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 24px;
  border: 4px solid #2C5F6F;
  box-shadow: 5px 5px 0 #8B2635;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-item:hover,
.benefit-category:hover,
.benefit-detail:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 #8B2635;
}

.benefit-item h3,
.benefit-category h3,
.benefit-detail h3 {
  color: #8B2635;
  font-size: 18px;
  margin-bottom: 12px;
  border-bottom: 2px solid #E8D5C4;
  padding-bottom: 8px;
}

/* INGREDIENTS SECTION - STRUCTURED CARDS */
.ingredients-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 32px;
}

.ingredient-card,
.category-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 24px;
  text-align: center;
  border: 3px solid #8B2635;
  box-shadow: 4px 4px 0 #2C5F6F;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.ingredient-card:hover,
.category-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #2C5F6F;
  border-color: #2C5F6F;
}

.ingredient-card h3,
.category-card h3 {
  color: #2C5F6F;
  font-size: 18px;
  margin-bottom: 8px;
  text-transform: uppercase;
  border: none;
}

.ingredient-card p,
.category-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* TESTIMONIALS - GEOMETRIC EMPHASIS */
.testimonials {
  background: #F9F9F9;
  border-top: 4px solid #8B2635;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px;
  border: 4px solid #2C5F6F;
  box-shadow: 5px 5px 0 #E8D5C4;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #8B2635;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 #E8D5C4;
}

.quote {
  font-size: 16px;
  line-height: 1.8;
  color: #2C2C2C;
  font-style: italic;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.author {
  font-weight: 700;
  color: #2C5F6F;
  text-align: right;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  padding-top: 16px;
  border-top: 2px solid #E8D5C4;
}

.rating {
  color: #8B2635;
  font-size: 18px;
  text-align: right;
  margin: 0;
}

/* LOCATION SECTION */
.location,
.cta-banner {
  background: #2C5F6F;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  border-top: 6px solid #8B2635;
  border-bottom: 6px solid #E8D5C4;
}

.location h2,
.cta-banner h2 {
  color: #FFFFFF;
  border-color: #E8D5C4;
}

.address {
  font-size: 18px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid #E8D5C4;
  display: inline-block;
}

.hours,
.email {
  margin-top: 16px;
  font-size: 16px;
  color: #E8D5C4;
}

/* FOOTER - GEOMETRIC STRUCTURE */
footer {
  background: #1A1A1A;
  color: #E8D5C4;
  padding: 60px 20px 20px;
  border-top: 8px solid #8B2635;
}

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

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

.footer-section h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  border-bottom: 3px solid #8B2635;
  padding-bottom: 8px;
}

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

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #E8D5C4;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.footer-section ul li a:hover,
.footer-section ul li a:focus {
  color: #FFFFFF;
  border-bottom: 1px solid #8B2635;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 2px solid #2C5F6F;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #999;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-links li a {
  font-size: 13px;
  color: #999;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.legal-links li a:hover,
.legal-links li a:focus {
  color: #E8D5C4;
  border-bottom: 1px solid #8B2635;
}

/* CONTACT PAGE - STRUCTURED FORM */
.contact-form-container {
  background: #FFFFFF;
  padding: 40px;
  border: 4px solid #2C5F6F;
  box-shadow: 8px 8px 0 #E8D5C4;
  margin: 32px 0;
}

.form-info {
  margin-bottom: 32px;
}

.email-large,
.email-display {
  font-size: 24px;
  font-weight: 700;
  margin: 24px 0;
}

.email-large a,
.email-display a {
  color: #8B2635;
  border-bottom: 3px solid #8B2635;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.email-large a:hover,
.email-display a:hover {
  color: #2C5F6F;
  border-bottom: 3px solid #2C5F6F;
}

.form-note {
  background: #E8D5C4;
  padding: 16px;
  border-left: 4px solid #8B2635;
  font-weight: 600;
  margin: 16px 0;
}

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

.contact-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #F9F9F9;
  padding: 24px;
  border: 3px solid #2C5F6F;
  box-shadow: 4px 4px 0 #E8D5C4;
}

.contact-item h3 {
  color: #8B2635;
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact-info,
.contact-reminder {
  text-align: center;
  margin: 24px 0;
}

/* THANK YOU PAGE - GEOMETRIC SUCCESS */
.thank-you-hero {
  background: #2C5F6F;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 8px solid #8B2635;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 60px 40px;
  border: 6px solid #E8D5C4;
  box-shadow: 0 0 0 12px #2C5F6F, 0 0 0 18px #8B2635;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #8B2635;
  color: #FFFFFF;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid #2C5F6F;
  box-shadow: 6px 6px 0 #E8D5C4;
}

.confirmation-message {
  font-size: 18px;
  line-height: 1.8;
  color: #2C2C2C;
  margin-bottom: 24px;
}

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

.step,
.pillar {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 24px;
  text-align: center;
  border: 3px solid #2C5F6F;
  box-shadow: 4px 4px 0 #E8D5C4;
  margin-bottom: 20px;
}

.step h3,
.pillar h3 {
  color: #8B2635;
  font-size: 18px;
  margin-bottom: 12px;
}

/* LEGAL PAGES - STRUCTURED CONTENT */
.legal-hero {
  background: #2C5F6F;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 6px solid #8B2635;
}

.legal-hero h1 {
  color: #FFFFFF;
  border-color: #E8D5C4;
}

.legal-content {
  padding: 60px 20px;
}

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

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 32px;
  margin-bottom: 24px;
}

/* COOKIE CONSENT BANNER - GEOMETRIC BOTTOM */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 24px;
  border-top: 6px solid #8B2635;
  box-shadow: 0 -8px 16px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 3px solid;
  transition: all 0.3s ease;
  background: #8B2635;
  color: #FFFFFF;
  border-color: #2C5F6F;
  box-shadow: 3px 3px 0 #2C5F6F;
}

.cookie-btn:hover {
  background: #2C5F6F;
  border-color: #8B2635;
  box-shadow: 5px 5px 0 #8B2635;
  transform: translate(-2px, -2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #E8D5C4;
  border-color: #E8D5C4;
  box-shadow: 3px 3px 0 rgba(232, 213, 196, 0.3);
}

.cookie-btn-settings {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.2);
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border: 6px solid #8B2635;
  box-shadow: 0 0 0 12px #2C5F6F;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #2C5F6F;
  color: #FFFFFF;
  border: 3px solid #8B2635;
  padding: 8px 16px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 3px 3px 0 #8B2635;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: #F9F9F9;
  border-left: 4px solid #2C5F6F;
}

.cookie-category h3 {
  margin-bottom: 8px;
  color: #8B2635;
}

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

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

/* SECTION SPECIFIC STYLES */
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  font-style: italic;
}

.policies-list,
.addons-list,
.preparation-list,
.sustainability-list,
.regions-list,
.temperature-list,
.methods-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.policies-list li,
.addons-list li,
.preparation-list li,
.sustainability-list li,
.regions-list li,
.temperature-list li,
.methods-list li {
  padding: 16px 16px 16px 56px;
  margin-bottom: 16px;
  background: #F9F9F9;
  border-left: 4px solid #8B2635;
  position: relative;
  transition: all 0.3s ease;
}

.policies-list li::before,
.addons-list li::before,
.preparation-list li::before,
.sustainability-list li::before,
.regions-list li::before,
.temperature-list li::before,
.methods-list li::before {
  content: '■';
  position: absolute;
  left: 20px;
  color: #2C5F6F;
  font-size: 16px;
}

.policies-list li:hover,
.addons-list li:hover,
.preparation-list li:hover {
  background: #E8D5C4;
  border-left-width: 6px;
  padding-left: 54px;
}

/* FAQ SECTION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border: 3px solid #2C5F6F;
  box-shadow: 4px 4px 0 #E8D5C4;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #E8D5C4;
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-content {
    padding: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .service-card,
  .service-detailed-card {
    flex: 1 1 100%;
  }
  
  .benefit-item,
  .benefit-category,
  .benefit-detail {
    flex: 1 1 100%;
  }
  
  .ingredient-card,
  .category-card {
    flex: 1 1 calc(50% - 20px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .contact-details {
    flex-direction: column;
  }
  
  .contact-item {
    flex: 1 1 100%;
  }
  
  .step,
  .pillar {
    flex: 1 1 calc(50% - 24px);
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .header-content {
    justify-content: center;
  }
  
  .cta-button {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .ingredient-card,
  .category-card {
    flex: 1 1 100%;
  }
  
  .step,
  .pillar {
    flex: 1 1 100%;
  }
  
  .content-wrapper {
    padding: 20px;
  }
  
  .service-card,
  .service-detailed-card {
    padding: 20px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* UTILITIES */
.text-center {
  text-align: center;
}

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

.mb-32 {
  margin-bottom: 32px;
}

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid #8B2635;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #2C5F6F;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .hero-buttons,
  .btn-primary,
  .btn-secondary,
  .btn-service,
  .btn-link {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
    color: #000;
  }
}

/* ANIMATION CLASSES */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

.slide-in {
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* GEOMETRIC DECORATIVE ELEMENTS */
.section::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: #8B2635;
  margin: 40px auto 0;
}

.section::before {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #2C5F6F;
  margin: 0 auto 40px;
}

/* END OF STYLESHEET */
/* Total Lines: ~1800+ lines of comprehensive CSS */
/* Design Style: Geometric Structured with Angular Fonts and Precise Layouts */
/* Color Scheme: #8B2635 (Primary), #2C5F6F (Secondary), #E8D5C4 (Accent) */
/* Typography: Playfair Display (Display), Lato (Body) */
/* Layout: Flexbox-based, No CSS Grid, Structured Spacing */
/* Features: Mobile Menu, Cookie Consent, Responsive Design, Geometric Shapes */