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

* {
  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;
  line-height: 1.6;
  color: #2d3436;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ==========================================
   TYPOGRAPHY - MINIMALIST STYLE
   ========================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

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

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

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

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

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

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

.main-nav {
  display: none;
}

.main-nav a {
  display: inline-block;
  padding: 12px 20px;
  color: #2d3436;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

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

/* ==========================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ========================================== */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 24px;
  color: #2d3436;
  background-color: transparent;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 101;
}

.mobile-menu-toggle:hover {
  background-color: #f8f8f8;
  border-color: #2C5F7C;
  color: #2C5F7C;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 200;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 24px;
}

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

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: #2d3436;
  background-color: #f8f8f8;
  border-radius: 50%;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #2C5F7C;
  color: #ffffff;
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: #2d3436;
  font-size: 16px;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #2C5F7C;
  background-color: #f8f8f8;
  padding-left: 24px;
}

/* ==========================================
   HERO SECTION - MINIMALIST DESIGN
   ========================================== */

.hero {
  padding: 80px 20px;
  background-color: #fafafa;
  border-bottom: 1px solid #e8e8e8;
}

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

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

.hero-subtitle {
  font-size: 18px;
  color: #2C5F7C;
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-text {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.trust-badge {
  font-size: 14px;
  color: #8B6F47;
  font-style: italic;
  margin-bottom: 0;
}

.breadcrumb {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #2C5F7C;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ==========================================
   BUTTONS - MINIMALIST STYLE
   ========================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 180px;
}

.btn-primary {
  background-color: #2C5F7C;
  color: #ffffff;
  border: 1px solid #2C5F7C;
}

.btn-primary:hover {
  background-color: #1a3d4f;
  border-color: #1a3d4f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F7C;
  border: 1px solid #2C5F7C;
}

.btn-secondary:hover {
  background-color: #2C5F7C;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.2);
}

/* ==========================================
   VALUE PROPOSITION SECTION
   ========================================== */

.value-proposition {
  padding: 80px 20px;
  background-color: #ffffff;
}

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

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

.value-item {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
}

.value-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #2C5F7C;
}

.value-item p {
  font-size: 14px;
  color: #6a6a6a;
  line-height: 1.6;
}

.supporting-text {
  text-align: center;
  font-size: 16px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================
   DESTINATIONS & CARDS - FLEXBOX LAYOUT
   ========================================== */

.destinations {
  padding: 80px 20px;
  background-color: #fafafa;
}

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

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #7a7a7a;
  margin-bottom: 48px;
}

.destinations-grid,
.services-grid,
.benefits-grid,
.features-grid,
.facilities-grid,
.team-grid,
.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.destination-card,
.service-card,
.facility-card,
.option-card {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.destination-card:hover,
.service-card:hover,
.facility-card:hover,
.option-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.destination-card h3,
.service-card h3,
.facility-card h3,
.option-card h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

.destination-card p,
.service-card p,
.facility-card p,
.option-card p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.destination-card ul,
.service-card ul {
  margin-top: 24px;
}

.destination-card li,
.service-card li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #4a4a4a;
}

.destination-card li:before,
.service-card li:before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #2C5F7C;
}

.destinations .btn-primary {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

/* ==========================================
   SERVICE PACKAGES
   ========================================== */

.service-package {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 32px;
}

.service-package.alt {
  background-color: #fafafa;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: #8B6F47;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-radius: 2px;
}

.tagline {
  font-size: 18px;
  color: #7a7a7a;
  font-style: italic;
  margin-bottom: 24px;
}

.package-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #2C5F7C;
  font-family: 'Lato', sans-serif;
}

.duration,
.location {
  font-size: 14px;
  color: #7a7a7a;
  padding: 8px 16px;
  background-color: #f8f8f8;
  border-radius: 2px;
}

.text-section {
  margin-bottom: 32px;
}

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

.text-section ul {
  margin-top: 16px;
  margin-bottom: 16px;
}

.text-section li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #4a4a4a;
}

.text-section li:before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #2C5F7C;
}

.special-note,
.medical-note,
.recommendation,
.highlight {
  padding: 16px 20px;
  background-color: #E8F4F8;
  border-left: 3px solid #2C5F7C;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.6;
}

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

/* ==========================================
   BENEFITS & FEATURES
   ========================================== */

.benefits {
  padding: 80px 20px;
  background-color: #ffffff;
}

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

.benefit-item,
.feature-item {
  flex: 1 1 100%;
  padding: 24px;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.benefit-item:hover,
.feature-item:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.benefit-item h3,
.feature-item h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
  font-size: 18px;
}

.benefit-item p {
  color: #4a4a4a;
  line-height: 1.7;
}

/* ==========================================
   TESTIMONIALS - READABLE DARK TEXT
   ========================================== */

.testimonials {
  padding: 80px 20px;
  background-color: #fafafa;
}

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

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

.testimonial-card {
  flex: 1 1 100%;
  max-width: 550px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.rating {
  text-align: center;
  font-size: 14px;
  color: #8B6F47;
  margin-top: 32px;
  font-weight: 600;
}

/* ==========================================
   CTA SECTIONS
   ========================================== */

.cta-final,
.cta-section {
  padding: 80px 20px;
  background-color: #2C5F7C;
  color: #ffffff;
  text-align: center;
}

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

.cta-final p,
.cta-section p {
  color: #E8F4F8;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 24px;
}

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

.cta-final .btn-primary:hover,
.cta-section .btn-primary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

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

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

.contact-info {
  margin-top: 24px;
  font-size: 14px;
  color: #E8F4F8;
}

/* ==========================================
   COMPARISON TABLE - FLEXBOX
   ========================================== */

.comparison {
  padding: 80px 20px;
  background-color: #ffffff;
}

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

.comparison > .container > p {
  text-align: center;
  margin-bottom: 48px;
  color: #7a7a7a;
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  overflow: hidden;
}

.comparison-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  border-bottom: 1px solid #e8e8e8;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-label,
.comparison-gastein,
.comparison-woerthersee {
  flex: 1 1 100%;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.6;
}

.comparison-label {
  font-weight: 600;
  background-color: #fafafa;
  color: #2C5F7C;
}

.comparison-gastein,
.comparison-woerthersee {
  background-color: #ffffff;
  color: #4a4a4a;
}

/* ==========================================
   TREATMENT & DETAIL PAGES
   ========================================== */

.treatment-overview,
.treatment-detail,
.destination-detail {
  padding: 60px 20px;
  background-color: #ffffff;
}

.treatment-detail.alt,
.destination-detail.alt {
  background-color: #fafafa;
}

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

.category-item {
  padding: 12px 24px;
  background-color: #f8f8f8;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  font-size: 14px;
  color: #2C5F7C;
  transition: all 0.3s ease;
}

.category-item:hover {
  background-color: #2C5F7C;
  color: #ffffff;
  border-color: #2C5F7C;
}

.indications {
  margin-top: 32px;
  padding: 24px;
  background-color: #E8F4F8;
  border-radius: 2px;
}

.indications h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

.indications ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.indications li {
  padding-left: 24px;
  position: relative;
  color: #2d3436;
}

.indications li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F7C;
  font-weight: 700;
}

.subtitle {
  font-size: 18px;
  color: #7a7a7a;
  margin-bottom: 24px;
}

.detail {
  font-weight: 600;
  color: #2C5F7C;
  margin-top: 8px;
}

.response-time,
.note {
  font-size: 13px;
  color: #7a7a7a;
  margin-top: 8px;
  font-style: italic;
}

/* ==========================================
   MASSAGE & TREATMENT TYPES
   ========================================== */

.massage-types,
.combos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.massage-item,
.combo-card {
  flex: 1 1 100%;
  padding: 24px;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}

.massage-item h3,
.combo-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.massage-item p,
.combo-card p {
  color: #4a4a4a;
  line-height: 1.6;
}

.massage-item .duration {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  background-color: #ffffff;
  font-size: 13px;
  color: #7a7a7a;
  border: 1px solid #e8e8e8;
}

.combo-treatments {
  font-size: 14px;
  color: #2C5F7C;
  font-weight: 600;
  margin-bottom: 8px;
}

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

.expert-note,
.quality-note,
.qualification {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: #7a7a7a;
  font-style: italic;
}

/* ==========================================
   COMPANY STORY & TEAM
   ========================================== */

.company-story,
.values,
.team,
.partnerships,
.location,
.facilities,
.medical-supervision {
  padding: 60px 20px;
  background-color: #ffffff;
}

.values,
.partnerships {
  background-color: #fafafa;
}

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

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

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2C5F7C;
  font-family: 'Lato', sans-serif;
}

.stat-label {
  font-size: 14px;
  color: #7a7a7a;
  text-align: center;
}

.values-grid {
  justify-content: center;
}

.value-card {
  flex: 1 1 100%;
  max-width: 550px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}

.value-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.team-member,
.contact-person {
  flex: 1 1 100%;
  max-width: 350px;
  padding: 24px;
  text-align: center;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}

.team-member h3,
.contact-person h3 {
  color: #2C5F7C;
  margin-bottom: 8px;
}

.position,
.specialty {
  font-size: 14px;
  color: #8B6F47;
  margin-bottom: 12px;
}

.team-member p,
.contact-person p {
  font-size: 14px;
  color: #6a6a6a;
  line-height: 1.6;
}

.partner-categories {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.partner-category {
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}

.partner-category h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.location-details {
  max-width: 600px;
  margin: 32px auto 0;
  padding: 32px;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}

.office-name {
  font-size: 18px;
  font-weight: 700;
  color: #2C5F7C;
  margin-bottom: 16px;
}

.hours {
  margin-top: 24px;
  font-weight: 600;
  color: #2d3436;
}

.parking,
.accessibility {
  margin-top: 16px;
  font-size: 14px;
  color: #7a7a7a;
}

.general-inquiry {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: #2C5F7C;
  font-weight: 600;
}

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

.contact-options,
.office-info,
.team-contacts {
  padding: 60px 20px;
  background-color: #ffffff;
}

.office-info {
  background-color: #fafafa;
}

.form-notice {
  max-width: 700px;
  margin: 32px auto;
  padding: 32px;
  background-color: #E8F4F8;
  border: 1px solid #2C5F7C;
  border-radius: 2px;
  text-align: center;
}

.form-notice p {
  margin-bottom: 12px;
  color: #2d3436;
}

.form-notice strong {
  color: #2C5F7C;
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq {
  padding: 60px 20px;
  background-color: #fafafa;
}

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

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.faq-item {
  flex: 1 1 100%;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}

.faq-item h3 {
  color: #2C5F7C;
  font-size: 16px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================
   LEGAL & THANK YOU PAGES
   ========================================== */

.legal-content,
.thank-you-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.legal-content h1,
.thank-you-section h1 {
  margin-bottom: 24px;
}

.last-updated {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 32px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: #2C5F7C;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #2d3436;
}

.legal-content ul {
  margin: 16px 0;
}

.legal-content li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #4a4a4a;
}

.legal-content li:before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #2C5F7C;
}

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

.success-message {
  font-size: 18px;
  color: #2C5F7C;
  margin-bottom: 40px;
  font-weight: 600;
}

.next-steps {
  margin: 40px 0;
  padding: 32px;
  background-color: #fafafa;
  border-radius: 2px;
  text-align: left;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 24px;
}

.next-steps ul {
  max-width: 600px;
  margin: 0 auto;
}

.next-steps li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #4a4a4a;
  font-size: 15px;
}

.next-steps li:before {
  content: '✓';
  position: absolute;
  left: 8px;
  color: #2C5F7C;
  font-weight: 700;
}

.thank-you-section .contact-info {
  margin: 40px 0;
  padding: 24px;
  background-color: #E8F4F8;
  border-radius: 2px;
}

.thank-you-section .contact-info h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

.thank-you-section .contact-info p {
  color: #2d3436;
  margin-bottom: 8px;
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
  background-color: #1a1a1a;
  color: #e8e8e8;
  padding: 60px 20px 24px;
}

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

.footer-info,
.footer-links {
  flex: 1 1 250px;
}

.footer-info img {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

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

.footer-links h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
}

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

.footer-links a {
  font-size: 14px;
  color: #b8b8b8;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.copyright {
  text-align: center;
  font-size: 13px;
  color: #7a7a7a;
  padding-top: 24px;
  border-top: 1px solid #333333;
  margin-bottom: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #e8e8e8;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px 20px;
  z-index: 150;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
  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;
}

.cookie-text p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 0;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cookie-accept {
  background-color: #2C5F7C;
  color: #ffffff;
  border: 1px solid #2C5F7C;
}

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

.cookie-reject {
  background-color: #f8f8f8;
  color: #2d3436;
  border: 1px solid #e8e8e8;
}

.cookie-reject:hover {
  background-color: #e8e8e8;
}

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

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

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

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

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

.cookie-modal h2 {
  color: #2C5F7C;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}

.cookie-category h3 {
  font-size: 16px;
  color: #2d3436;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle {
  width: 48px;
  height: 24px;
  background-color: #e8e8e8;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

.cookie-modal-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}

/* ==========================================
   RESPONSIVE DESIGN - TABLET
   ========================================== */

@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .mobile-menu-toggle {
    display: none;
  }

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

  .destination-card,
  .service-card,
  .facility-card {
    flex: 1 1 calc(50% - 16px);
  }

  .benefit-item,
  .feature-item {
    flex: 1 1 calc(50% - 16px);
  }

  .faq-item {
    flex: 1 1 calc(50% - 12px);
  }

  .comparison-label,
  .comparison-gastein,
  .comparison-woerthersee {
    flex: 1 1 calc(33.333% - 8px);
  }

  .massage-item {
    flex: 1 1 calc(50% - 12px);
  }

  .combo-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ==========================================
   RESPONSIVE DESIGN - DESKTOP
   ========================================== */

@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }

  .hero {
    padding: 120px 20px;
  }

  .section {
    padding: 60px 20px;
  }

  .destination-card,
  .service-card {
    flex: 1 1 calc(50% - 16px);
  }

  .benefit-item {
    flex: 1 1 calc(25% - 24px);
  }

  .feature-item {
    flex: 1 1 calc(33.333% - 22px);
  }

  .value-item {
    flex: 1 1 calc(25% - 24px);
  }

  .facility-card {
    flex: 1 1 calc(33.333% - 22px);
  }

  .massage-item {
    flex: 1 1 calc(50% - 12px);
  }

  .combo-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .team-member,
  .contact-person {
    flex: 1 1 calc(33.333% - 22px);
  }

  .option-card {
    flex: 1 1 calc(33.333% - 22px);
  }

  .cookie-content {
    flex-wrap: nowrap;
  }
}

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

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

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

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus,
.cookie-toggle:focus {
  outline: 2px solid #2C5F7C;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  .container {
    max-width: 100%;
  }
}