/* ========================================
   BRIGHTON AROMA HAUS - NATURE ORGANIC DESIGN
   ======================================== */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2C3E2F;
  background-color: #FDFCFB;
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul {
  list-style-position: inside;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #2C3E2F;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

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

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

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #4A5D4C;
}

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

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

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

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

.main-nav {
  display: none;
}

.main-nav a {
  color: #4A6B5C;
  font-size: 15px;
  font-weight: 500;
  padding: 8px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #F4EDE4;
  color: #6B8E7F;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6B8E7F;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(107, 142, 127, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #4A6B5C;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #6B8E7F;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #4A6B5C;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background-color: #F4EDE4;
  color: #6B8E7F;
  border-left-color: #6B8E7F;
  transform: translateX(4px);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #6B8E7F;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(107, 142, 127, 0.25);
}

.btn-primary:hover {
  background-color: #5A7A6B;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(107, 142, 127, 0.35);
}

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

.btn-secondary:hover {
  background-color: #D4A574;
  color: #FFFFFF;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(135deg, #E8F3EE 0%, #F4EDE4 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 50% 50% / 0 0 30px 30px;
}

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

.hero h1 {
  font-size: 42px;
  color: #2C3E2F;
  margin-bottom: 20px;
}

.hero-subheadline {
  font-size: 18px;
  color: #4A6B5C;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.trust-badge {
  display: inline-block;
  background-color: #FFFFFF;
  color: #6B8E7F;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(107, 142, 127, 0.15);
}

.hero-simple {
  background: linear-gradient(135deg, #E8F3EE 0%, #F4EDE4 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.hero-simple h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

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

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #4A6B5C;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.text-section p {
  margin-bottom: 20px;
}

.text-section h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #4A6B5C;
}

.text-section ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.text-section ul li {
  margin-bottom: 12px;
  color: #4A5D4C;
  line-height: 1.6;
}

/* VALUE PROPOSITION */
.value-proposition {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 60px 20px;
}

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

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

.value-card {
  background-color: #F4EDE4;
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 142, 127, 0.15);
  border-color: #D4A574;
}

.value-card h3 {
  color: #6B8E7F;
  margin-bottom: 12px;
  font-size: 22px;
}

.value-card p {
  color: #4A5D4C;
  font-size: 15px;
}

/* SERVICES OVERVIEW */
.services-overview {
  background-color: #FDFCFB;
}

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

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

.service-card {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(107, 142, 127, 0.1);
  flex: 1 1 320px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(107, 142, 127, 0.2);
  border-color: #6B8E7F;
}

.service-card h3 {
  color: #2C3E2F;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #4A5D4C;
  font-size: 15px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #6B8E7F;
  margin-top: 8px;
}

/* BENEFITS */
.benefits {
  background: linear-gradient(135deg, #F4EDE4 0%, #E8F3EE 100%);
  border-radius: 20px;
  padding: 60px 20px;
}

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

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

.benefit-item {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
}

.benefit-item h3 {
  color: #6B8E7F;
  margin-bottom: 12px;
  font-size: 24px;
}

.benefit-item p {
  color: #4A5D4C;
  font-size: 16px;
}

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

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

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

.testimonial-card {
  background-color: #F4EDE4;
  padding: 32px 28px;
  border-radius: 16px;
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: 0 4px 16px rgba(107, 142, 127, 0.1);
  position: relative;
  border-left: 4px solid #D4A574;
}

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

.testimonial-card .author {
  color: #6B8E7F;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0;
}

/* CTA SECTIONS */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, #6B8E7F 0%, #5A7A6B 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
}

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

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

.trust-element {
  font-size: 14px;
  color: #E8F3EE;
  margin-top: 16px;
}

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

/* SERVICE DETAILED */
.service-detailed {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 48px 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(107, 142, 127, 0.08);
}

.service-detailed h2 {
  color: #2C3E2F;
  margin-bottom: 16px;
}

.service-detailed .price {
  font-size: 32px;
  font-weight: 700;
  color: #6B8E7F;
  margin-bottom: 8px;
}

.service-detailed .duration {
  font-size: 16px;
  color: #4A6B5C;
  margin-bottom: 24px;
}

/* OIL CATEGORIES */
.oil-categories {
  padding: 60px 20px;
}

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

.category-card {
  background-color: #F4EDE4;
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 142, 127, 0.15);
  border-color: #6B8E7F;
}

.category-card h3 {
  color: #6B8E7F;
  margin-bottom: 12px;
}

.category-card p {
  color: #4A5D4C;
  font-size: 15px;
}

/* FEATURED OILS */
.featured-oils {
  background-color: #FDFCFB;
  padding: 60px 20px;
}

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

.oil-card {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(107, 142, 127, 0.1);
  flex: 1 1 280px;
  max-width: 340px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.oil-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(107, 142, 127, 0.2);
  border-color: #D4A574;
}

.oil-card h3 {
  color: #2C3E2F;
  margin-bottom: 8px;
}

.oil-card em {
  color: #6B8E7F;
  font-size: 14px;
}

.oil-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #6B8E7F;
  margin-top: 16px;
}

/* OIL GUIDE */
.oil-guide {
  background-color: #F4EDE4;
  border-radius: 20px;
  padding: 60px 20px;
}

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

.guide-item {
  background-color: #FFFFFF;
  padding: 24px 20px;
  border-radius: 12px;
  flex: 1 1 280px;
  max-width: 350px;
}

.guide-item h3 {
  color: #6B8E7F;
  margin-bottom: 12px;
}

.guide-item p {
  color: #4A5D4C;
  font-size: 15px;
}

/* WORKSHOP DETAILED */
.workshop-detailed, .consultation-detailed {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 48px 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(107, 142, 127, 0.08);
}

/* SUBSCRIPTION */
.subscription-overview {
  text-align: center;
  padding: 60px 20px;
}

.price-highlight {
  font-size: 40px;
  font-weight: 700;
  color: #6B8E7F;
  margin: 24px 0;
}

.whats-included {
  background-color: #F4EDE4;
  border-radius: 20px;
  padding: 60px 20px;
}

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

.include-item {
  background-color: #FFFFFF;
  padding: 24px 20px;
  border-radius: 12px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
}

.include-item h3 {
  color: #6B8E7F;
  margin-bottom: 12px;
  font-size: 20px;
}

.subscription-benefits .benefit-card {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(107, 142, 127, 0.1);
}

/* CONTACT */
.contact-methods {
  padding: 60px 20px;
}

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

.method-card {
  background-color: #F4EDE4;
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
}

.method-card h3 {
  color: #6B8E7F;
  margin-bottom: 16px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #E8F3EE 0%, #F4EDE4 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-message {
  font-size: 18px;
  color: #4A6B5C;
  max-width: 600px;
  margin: 0 auto;
}

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

.step-card, .suggestion-card {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(107, 142, 127, 0.1);
}

.step-card h3, .suggestion-card h3 {
  color: #6B8E7F;
  margin-bottom: 12px;
}

/* LEGAL CONTENT */
.legal-content {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #4A6B5C;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content ul li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* FOOTER */
footer {
  background-color: #2C3E2F;
  color: #E8F3EE;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

.footer-brand {
  flex: 1 1 100%;
  max-width: 300px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #A8C4B5;
  font-size: 14px;
}

.footer-links, .footer-contact, .footer-legal {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4, .footer-contact h4, .footer-legal h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-links a, .footer-legal a {
  color: #A8C4B5;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover, .footer-legal a:hover {
  color: #D4A574;
  transform: translateX(4px);
}

.footer-contact p {
  color: #A8C4B5;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(168, 196, 181, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #A8C4B5;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E2F;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
  animation: slideUp 0.4s ease;
}

#cookie-consent.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 300px;
  color: #E8F3EE;
  font-size: 14px;
  line-height: 1.6;
}
.cookie-text p {
    color: #E8F3EE;
}

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

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: #6B8E7F;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background-color: #5A7A6B;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #E8F3EE;
  border: 1px solid #A8C4B5;
}

.cookie-btn-reject:hover {
  background-color: rgba(168, 196, 181, 0.1);
}

.cookie-btn-settings {
  background-color: transparent;
  color: #D4A574;
  border: 1px solid #D4A574;
}

.cookie-btn-settings:hover {
  background-color: rgba(212, 165, 116, 0.1);
}

/* COOKIE SETTINGS MODAL */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 62, 47, 0.9);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.cookie-modal-header h3 {
  color: #2C3E2F;
  font-size: 24px;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #4A6B5C;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #6B8E7F;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F4EDE4;
  border-radius: 12px;
}

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

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

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #A8C4B5;
  border-radius: 26px;
  transition: all 0.3s ease;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #6B8E7F;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

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

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

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

/* RESPONSIVE DESIGN - TABLET */
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 42px;
  }
  
  .hero h1 {
    font-size: 52px;
  }
  
  .hero-subheadline {
    font-size: 20px;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
    gap: 8px;
  }
  
  .values-grid {
    justify-content: space-between;
  }
  
  .value-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .services-grid {
    justify-content: space-between;
  }
  
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .benefits-grid {
    justify-content: space-between;
  }
  
  .benefit-item {
    flex: 1 1 calc(33.333% - 22px);
  }
  
  .footer-content {
    justify-content: space-between;
  }
  
  .footer-brand {
    flex: 1 1 100%;
  }
  
  .footer-links, .footer-contact, .footer-legal {
    flex: 1 1 calc(33.333% - 27px);
  }
}

/* RESPONSIVE DESIGN - DESKTOP */
@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }
  
  h2 {
    font-size: 48px;
  }
  
  .hero {
    padding: 100px 20px;
  }
  
  .hero h1 {
    font-size: 62px;
  }
  
  .value-card {
    flex: 1 1 calc(25% - 18px);
  }
  
  .service-card {
    flex: 1 1 calc(33.333% - 16px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  section {
    padding: 60px 20px;
  }
  
  .cookie-content {
    flex-wrap: nowrap;
  }
  
  .cookie-text {
    flex: 1 1 auto;
  }
  
  .footer-brand {
    flex: 1 1 auto;
    max-width: 350px;
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

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

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

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

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

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

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

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

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

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, #cookie-consent {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
    color: #000000;
  }
}