/* ===================================
   VitalTrier - Professional Corporate CSS
   Professional blue/gray palette with structured layout
   =================================== */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

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

/* Typography - Professional Corporate Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  color: #1a365d;
  line-height: 1.2;
  margin-bottom: 16px;
}

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

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

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

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #1a4d8f;
}

ul {
  list-style: none;
}

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

/* Header - Professional Corporate */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  font-weight: 600;
  font-size: 14px;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #2b6cb0;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 1999;
  transition: right 0.4s ease;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #e53e3e;
  color: white;
  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: #c53030;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  color: #2b6cb0;
  border-left-color: #2b6cb0;
  background-color: #f7fafc;
}

/* Hero Section - Professional Corporate */
.hero {
  background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero .subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  color: #e6f2ff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-primary,
.cta-secondary,
.cta-button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
}

.cta-primary {
  background-color: #f4a261;
  color: #1a365d;
  border-color: #f4a261;
}

.cta-primary:hover {
  background-color: #e89350;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(244, 162, 97, 0.3);
}

.cta-secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.cta-secondary:hover {
  background-color: white;
  color: #2b6cb0;
  transform: translateY(-2px);
}

.cta-button {
  background-color: #2b6cb0;
  color: white;
  border-color: #2b6cb0;
}

.cta-button:hover {
  background-color: #1a4d8f;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(43, 108, 176, 0.3);
}

.trust-badge {
  font-size: 14px;
  color: #e6f2ff;
  margin-top: 24px;
}

/* Page Hero - Professional Corporate */
.page-hero {
  background: linear-gradient(135deg, #2c5282 0%, #2b6cb0 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: white;
  font-size: 42px;
}

.page-hero .subheadline {
  font-size: 18px;
  color: #e6f2ff;
  margin-bottom: 16px;
}

/* Section Spacing - Professional Layout */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section h2,
section h2 {
  text-align: center;
  margin-bottom: 16px;
  color: #1a365d;
}

.section > .container > p,
section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: #787f8c;
  font-size: 18px;
}

/* Value Proposition Section */
.value-proposition {
  background-color: #ffffff;
  padding: 60px 20px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.benefit {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 24px;
  background-color: #f7fafc;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.benefit:hover {
  border-color: #2b6cb0;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(43, 108, 176, 0.15);
}

.benefit h3 {
  color: #2b6cb0;
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit p {
  color: #4a5568;
  font-size: 14px;
}

/* Services Overview - Card Grid */
.services-overview {
  background-color: #f7fafc;
  padding: 60px 20px;
}

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

.service-card {
  flex: 1 1 260px;
  max-width: 280px;
  background-color: white;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(43, 108, 176, 0.15);
  border-color: #2b6cb0;
}

.service-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.service-card h3 {
  color: #1a365d;
  font-size: 20px;
  margin-bottom: 12px;
}

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

.service-card a {
  color: #2b6cb0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Service Detailed - Text-Image Layout */
.service-detailed {
  background-color: white;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.service-detailed:nth-child(even) {
  background-color: #f7fafc;
}

.service-detailed.featured {
  background: linear-gradient(135deg, #f7fafc 0%, #e6f2ff 100%);
  border: 3px solid #2b6cb0;
  border-radius: 12px;
  position: relative;
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.service-content img {
  width: 80px;
  height: 80px;
}

.service-content h2 {
  text-align: center;
  margin-bottom: 12px;
}

.service-content .tagline {
  font-size: 18px;
  color: #2b6cb0;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.service-content .badge {
  display: inline-block;
  background-color: #f4a261;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.service-content ul li {
  padding-left: 28px;
  position: relative;
  color: #4a5568;
}

.service-content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2b6cb0;
  font-weight: bold;
}

.service-content .duration,
.service-content .price {
  font-weight: 600;
  color: #2c3e50;
  margin: 8px 0;
}

.service-content .price {
  font-size: 24px;
  color: #2b6cb0;
}

/* How It Works - Steps Layout */
.how-it-works {
  background-color: white;
  padding: 60px 20px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.step {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 24px;
  background-color: #f7fafc;
  border-radius: 8px;
  border-left: 4px solid #2b6cb0;
  position: relative;
}

.step h3 {
  color: #2b6cb0;
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  color: #4a5568;
  font-size: 14px;
}

/* Featured Program */
.featured-program {
  background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.featured-program h2,
.featured-program h3 {
  color: white;
}

.featured-program .program {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 40px 32px;
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.featured-program .price {
  font-size: 32px;
  font-weight: 700;
  color: #f4a261;
  margin: 16px 0;
}

/* Testimonials Section */
.testimonials {
  background-color: #f7fafc;
  padding: 60px 20px;
}

.testimonial-card {
  background-color: white;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2b6cb0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.testimonial-card .author {
  color: #4a5568;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
}

.testimonials .rating {
  text-align: center;
  color: #f4a261;
  font-weight: 700;
  font-size: 18px;
  margin-top: 32px;
}

/* Local Connection */
.local-connection {
  background-color: white;
  padding: 60px 20px;
  text-align: center;
}

.local-connection ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 32px auto;
}

.local-connection ul li {
  padding: 12px 16px;
  background-color: #f7fafc;
  border-radius: 6px;
  color: #2c3e50;
  border-left: 3px solid #2b6cb0;
}

.local-connection .location {
  font-weight: 600;
  color: #2b6cb0;
  margin-top: 24px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-section p {
  color: #e6f2ff;
  margin-bottom: 16px;
}

/* Tips Section */
.tips-section {
  background-color: white;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.tips-section:nth-child(even) {
  background-color: #f7fafc;
}

.tip {
  background-color: white;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tips-section:nth-child(even) .tip {
  background-color: #f7fafc;
}

.tip h3 {
  color: #2b6cb0;
  margin-bottom: 12px;
  font-size: 20px;
}

.tip p {
  color: #4a5568;
}

.cta-link {
  display: inline-block;
  margin-top: 32px;
  color: #2b6cb0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border: 2px solid #2b6cb0;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-link:hover {
  background-color: #2b6cb0;
  color: white;
}

/* Quick Wins */
.quick-wins {
  background-color: #f7fafc;
  padding: 60px 20px;
  text-align: center;
}

.quick-wins ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
}

.quick-wins ul li {
  padding: 16px 20px;
  background-color: white;
  border-radius: 6px;
  color: #2c3e50;
  border-left: 4px solid #2b6cb0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Pricing Section */
.pricing-table {
  background-color: #f7fafc;
  padding: 60px 20px;
}

.price-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.price-card {
  flex: 1 1 260px;
  max-width: 300px;
  background-color: white;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(43, 108, 176, 0.15);
  border-color: #2b6cb0;
}

.price-card h3 {
  color: #1a365d;
  font-size: 20px;
  margin-bottom: 16px;
}

.price-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #2b6cb0;
  margin: 16px 0;
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  flex-grow: 1;
}

.price-card ul li {
  color: #4a5568;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

/* Featured Package */
.featured-package {
  background: linear-gradient(135deg, #f7fafc 0%, #e6f2ff 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 40px 0;
  border: 3px solid #2b6cb0;
  position: relative;
}

.featured-package .badge {
  display: inline-block;
  background-color: #f4a261;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.featured-package .price-large {
  font-size: 48px;
  font-weight: 700;
  color: #2b6cb0;
  margin: 16px 0;
}

.featured-package .original-price {
  text-decoration: line-through;
  color: #718096;
  font-size: 18px;
}

.featured-package .savings {
  color: #f4a261;
  font-weight: 700;
  font-size: 20px;
  margin: 8px 0 24px;
}

.featured-package ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 24px auto;
  text-align: left;
}

.featured-package ul li {
  padding-left: 28px;
  position: relative;
  color: #2c3e50;
}

.featured-package ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2b6cb0;
  font-weight: bold;
}

.featured-package .testimonial {
  font-style: italic;
  color: #4a5568;
  margin: 24px 0;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  border-left: 4px solid #2b6cb0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Payment Options */
.payment-options {
  background-color: white;
  padding: 60px 20px;
  text-align: center;
}

.payment-options ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 32px auto;
}

.payment-options ul li {
  padding: 12px 16px;
  background-color: #f7fafc;
  border-radius: 6px;
  color: #2c3e50;
  border-left: 3px solid #2b6cb0;
}

/* Blog Section */
.blog-categories {
  background-color: white;
  padding: 60px 20px;
}

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

.category {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  padding: 24px;
  background-color: #f7fafc;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category:hover {
  border-color: #2b6cb0;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(43, 108, 176, 0.15);
}

.category img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.category h3 {
  color: #1a365d;
  font-size: 18px;
  margin-bottom: 8px;
}

.category p {
  color: #718096;
  font-size: 14px;
}

/* Blog Grid */
.blog-grid {
  background-color: #f7fafc;
  padding: 60px 20px;
}

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

.post-card {
  flex: 1 1 300px;
  max-width: 360px;
  background-color: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(43, 108, 176, 0.15);
  border-color: #2b6cb0;
}

.post-card h3 {
  color: #1a365d;
  font-size: 20px;
  margin-bottom: 12px;
}

.post-card p {
  color: #4a5568;
  font-size: 14px;
  flex-grow: 1;
}

.post-card .category-badge {
  display: inline-block;
  background-color: #e6f2ff;
  color: #2b6cb0;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.post-card a {
  color: #2b6cb0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Featured Post */
.featured-post {
  background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.featured-post h2 {
  color: white;
}

.featured-post .badge {
  display: inline-block;
  background-color: #f4a261;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.featured-post .meta {
  color: #e6f2ff;
  font-size: 14px;
  margin: 16px 0;
}

/* Popular Posts */
.popular-posts {
  background-color: white;
  padding: 60px 20px;
}

.popular-posts ol {
  list-style: decimal;
  list-style-position: inside;
  max-width: 700px;
  margin: 32px auto;
}

.popular-posts ol li {
  padding: 16px;
  margin-bottom: 12px;
  background-color: #f7fafc;
  border-radius: 6px;
  color: #2c3e50;
  border-left: 4px solid #2b6cb0;
}

/* Contact Section */
.contact-methods {
  background-color: white;
  padding: 60px 20px;
}

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

.method {
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
  padding: 32px;
  background-color: #f7fafc;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.method:hover {
  border-color: #2b6cb0;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(43, 108, 176, 0.15);
}

.method img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.method h3 {
  color: #2b6cb0;
  margin-bottom: 12px;
}

.method p {
  color: #4a5568;
  margin-bottom: 8px;
}

/* Contact Form */
.contact-form-section {
  background-color: #f7fafc;
  padding: 60px 20px;
}

.form-placeholder {
  background-color: white;
  border: 2px dashed #cbd5e0;
  border-radius: 8px;
  padding: 60px 40px;
  text-align: center;
  max-width: 700px;
  margin: 40px auto;
}

.form-placeholder p {
  color: #4a5568;
  margin-bottom: 16px;
}

.form-placeholder .note {
  font-size: 14px;
  color: #718096;
  font-style: italic;
}

/* Location Info */
.location-info {
  background-color: white;
  padding: 60px 20px;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
  justify-content: center;
}

.address {
  flex: 1 1 300px;
  max-width: 400px;
}

.address h3,
.address h4 {
  color: #2b6cb0;
  margin-bottom: 12px;
  margin-top: 24px;
}

.address h3:first-child {
  margin-top: 0;
}

.map-placeholder {
  flex: 1 1 400px;
  max-width: 600px;
  background-color: #f7fafc;
  border: 2px dashed #cbd5e0;
  border-radius: 8px;
  padding: 100px 40px;
  text-align: center;
  color: #718096;
}

/* Transport Options */
.public-transport {
  background-color: #f7fafc;
  padding: 60px 20px;
}

.transport-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.transport {
  flex: 1 1 260px;
  max-width: 320px;
  text-align: center;
  padding: 24px;
  background-color: white;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
}

.transport h3 {
  color: #2b6cb0;
  margin-bottom: 12px;
}

/* FAQ Section */
.faq-contact {
  background-color: white;
  padding: 60px 20px;
}

.faq-item {
  background-color: #f7fafc;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
  border-left: 4px solid #2b6cb0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.faq-item p {
  color: #4a5568;
}

/* Legal Content */
.legal-content {
  background-color: white;
  padding: 60px 20px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 24px;
}

.text-section h2 {
  color: #1a365d;
  text-align: left;
  margin-bottom: 16px;
  font-size: 24px;
}

.text-section h3 {
  color: #2b6cb0;
  margin-top: 24px;
  margin-bottom: 12px;
}

.text-section p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 16px;
}

.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.text-section ul li {
  padding-left: 24px;
  position: relative;
  color: #4a5568;
}

.text-section ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2b6cb0;
  font-weight: bold;
}

/* Rights Overview */
.rights-overview {
  background-color: #f7fafc;
  padding: 60px 20px;
}

.rights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.right {
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
  background-color: white;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
}

.right img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.right h3 {
  color: #2b6cb0;
  margin-bottom: 12px;
}

/* Thank You / Danke Page */
.thank-you-hero,
.error-hero {
  background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #48bb78;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  margin: 0 auto 24px;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  margin-bottom: 20px;
}

.thank-you-hero h1,
.error-hero h1 {
  color: white;
}

.thank-you-hero .subheadline,
.error-hero .subheadline {
  color: #e6f2ff;
}

.next-steps {
  background-color: white;
  padding: 60px 20px;
}

.while-waiting {
  background-color: #f7fafc;
  padding: 60px 20px;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.suggestion-card {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 24px;
  background-color: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
  color: #2b6cb0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  border-color: #2b6cb0;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(43, 108, 176, 0.15);
}

.contact-reminder {
  background-color: white;
  padding: 60px 20px;
  text-align: center;
}

.contact-reminder .headline {
  font-size: 20px;
  font-weight: 600;
  color: #2b6cb0;
  margin-bottom: 16px;
}

.contact-reminder .note {
  font-size: 14px;
  color: #718096;
  margin-top: 16px;
}

/* Error Navigation */
.error-navigation {
  background-color: white;
  padding: 60px 20px;
}

.help-section {
  background-color: #f7fafc;
  padding: 60px 20px;
  text-align: center;
}

/* Quick Links */
.quick-links {
  background-color: #f7fafc;
  padding: 60px 20px;
}

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

.link-card {
  flex: 1 1 240px;
  max-width: 300px;
  padding: 24px;
  background-color: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
  color: #2b6cb0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: #2b6cb0;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(43, 108, 176, 0.15);
}

/* Mission Statement */
.mission-statement,
.story,
.approach,
.local-commitment,
.value-statement,
.free-consultation-cta,
.contact-dpo {
  background-color: white;
  padding: 60px 20px;
}

.mission-statement:nth-of-type(odd),
.story:nth-of-type(odd) {
  background-color: #f7fafc;
}

.approach .tagline {
  font-size: 20px;
  color: #2b6cb0;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.pillar {
  flex: 1 1 260px;
  max-width: 320px;
  text-align: center;
  padding: 32px 24px;
  background-color: #f7fafc;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
}

.pillar h3 {
  color: #2b6cb0;
  margin-bottom: 12px;
}

/* Footer - Professional Corporate */
footer {
  background-color: #1a365d;
  color: white;
  padding: 60px 20px 20px;
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

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

footer h3 {
  color: white;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a,
.footer-legal a {
  display: block;
  color: #cbd5e0;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #f4a261;
}

.copyright {
  text-align: center;
  color: #cbd5e0;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a365d;
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1 1 300px;
  color: #e6f2ff;
  font-size: 14px;
}

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

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

.cookie-btn-accept {
  background-color: #48bb78;
  color: white;
}

.cookie-btn-accept:hover {
  background-color: #38a169;
}

.cookie-btn-reject {
  background-color: #e53e3e;
  color: white;
}

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

.cookie-btn-settings {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-btn-settings:hover {
  background-color: white;
  color: #1a365d;
}

/* Cookie Settings Modal */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #e53e3e;
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-modal-content h2 {
  color: #1a365d;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background-color: #f7fafc;
  border-radius: 8px;
  border-left: 4px solid #2b6cb0;
}

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

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e0;
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #48bb78;
}

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

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

.cookie-always-on {
  color: #718096;
  font-size: 12px;
  font-style: italic;
}

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

.cookie-btn-save {
  flex: 1;
  padding: 12px 24px;
  background-color: #2b6cb0;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-save:hover {
  background-color: #1a4d8f;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero .subheadline {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-primary,
  .cta-secondary,
  .cta-button {
    width: 100%;
  }
  
  /* Sections */
  section,
  .section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  
  /* Cards and Grid Layouts */
  .benefits,
  .services,
  .steps,
  .methods,
  .categories,
  .post-grid,
  .price-cards,
  .pillars,
  .transport-options,
  .rights,
  .suggestions,
  .links {
    gap: 16px;
  }
  
  .benefit,
  .service-card,
  .step,
  .method,
  .category,
  .post-card,
  .price-card,
  .pillar,
  .transport,
  .right,
  .suggestion-card,
  .link-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Service Detailed */
  .service-content {
    padding: 0;
  }
  
  /* Location Details */
  .location-details {
    flex-direction: column;
  }
  
  .address,
  .map-placeholder {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-info,
  .footer-links,
  .footer-legal {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 100px;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-btn-save {
    width: 100%;
  }
  
  /* Featured Package */
  .featured-package .price-large {
    font-size: 36px;
  }
  
  /* Thank You Page */
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
  
  .error-code {
    font-size: 80px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
  
  h1 {
    font-size: 40px;
  }
  
  .benefit,
  .service-card,
  .step {
    flex: 1 1 calc(50% - 12px);
  }
  
  .post-card,
  .price-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-settings-modal,
  .cta-buttons,
  .cta-button,
  .cta-section {
    display: none !important;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* Accessibility Improvements */
*:focus-visible {
  outline: 3px solid #2b6cb0;
  outline-offset: 2px;
}

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

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

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  body {
    background-color: white;
    color: black;
  }
  
  .hero,
  .page-hero,
  .cta-section,
  .featured-program,
  .featured-post,
  footer {
    background: black;
    color: white;
  }
  
  .benefit,
  .service-card,
  .testimonial-card,
  .tip,
  .faq-item {
    border: 2px solid black;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

/* Loading State */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Success/Error States */
.success-message {
  background-color: #48bb78;
  color: white;
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.error-message {
  background-color: #e53e3e;
  color: white;
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 20px;
}