/* ===================================
   WissensPfad - Geometric Structured Design
   Modern Educational Platform
   =================================== */

/* CSS Reset & Base */
* {
  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: #1a1a1a;
  background-color: #f5f5f5;
  overflow-x: hidden;
}

/* Typography - Geometric Structured */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

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

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

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

/* Sections - Geometric Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section {
  margin-bottom: 60px;
  padding: 60px 0;
}

/* Header - Angular & Structured */
.site-header {
  background: linear-gradient(135deg, #1D4A6F 0%, #2D5F8D 100%);
  padding: 16px 0;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Main Navigation - Geometric Structure */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #F7C548;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.main-nav a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #2D5F8D;
  color: #FFFFFF;
  border: 2px solid #F7C548;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1D4A6F 0%, #2D5F8D 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #F7C548;
  padding: 8px 12px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

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

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: #F7C548;
  padding-left: 24px;
}

/* Hero Section - Geometric & Bold */
.hero {
  background: linear-gradient(135deg, #2D5F8D 0%, #1D4A6F 100%);
  color: #FFFFFF;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(247, 197, 72, 0.1) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(247, 197, 72, 0.1) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(247, 197, 72, 0.1) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(247, 197, 72, 0.1) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #e8e8e8;
}

/* CTA Buttons - Angular Design */
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-primary,
.cta-secondary,
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-primary {
  background-color: #E85D35;
  color: #FFFFFF;
  border-color: #E85D35;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.cta-primary:hover {
  background-color: #d14a25;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 93, 53, 0.4);
}

.cta-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #F7C548;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.cta-secondary:hover {
  background-color: #F7C548;
  color: #1D4A6F;
  transform: translateY(-2px);
}

.cta-button {
  background-color: #2D5F8D;
  color: #FFFFFF;
  border-color: #2D5F8D;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.cta-button:hover {
  background-color: #1D4A6F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 95, 141, 0.3);
}

.trust-badge {
  font-size: 14px;
  color: #F7C548;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Value Proposition - Geometric Grid */
.value-proposition {
  background-color: #FFFFFF;
  padding: 80px 0;
}

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

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

.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: #f9f9f9;
  padding: 32px 24px;
  border-left: 6px solid #E85D35;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  position: relative;
}

.benefit-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-left-color: #F7C548;
}

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

/* Services Overview - Structured Cards */
.services-overview {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 80px 0;
}

.services-overview h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 16px;
}

.services-overview > .container > p {
  text-align: center;
  color: #555;
  font-size: 18px;
  margin-bottom: 48px;
}

.services-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card,
.card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border: 3px solid #e0e0e0;
  transition: all 0.3s ease;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.card:hover {
  border-color: #2D5F8D;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-card h3,
.card h3 {
  color: #1D4A6F;
  margin-bottom: 16px;
}

.service-card p,
.card p {
  color: #333;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #E85D35;
  margin-top: 16px;
}

/* How It Works - Angular Steps */
.how-it-works {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.how-it-works h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 48px;
}

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

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  background-color: #f9f9f9;
  border-top: 4px solid #F7C548;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: #2D5F8D;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  border-radius: 0;
  margin-bottom: 16px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

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

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

/* Testimonials - Geometric Cards */
.testimonials {
  background: linear-gradient(135deg, #1D4A6F 0%, #2D5F8D 100%);
  padding: 80px 0;
  color: #FFFFFF;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  background-color: #FFFFFF;
  color: #1a1a1a;
  padding: 32px;
  border-left: 6px solid #F7C548;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

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

.testimonial-card .author {
  font-weight: 600;
  color: #2D5F8D;
  font-style: normal;
  margin-bottom: 0;
}

/* Stats Section - Bold Numbers */
.stats {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.stats h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
}

.stat {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border: 3px solid #2D5F8D;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.stat:hover {
  background-color: #2D5F8D;
  transform: scale(1.05);
}

.stat h3 {
  font-size: 48px;
  color: #E85D35;
  margin-bottom: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.stat:hover h3 {
  color: #F7C548;
}

.stat p {
  color: #555;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.stat:hover p {
  color: #FFFFFF;
}

/* CTA Banner - Angular & Bold */
.cta-banner {
  background: linear-gradient(135deg, #E85D35 0%, #d14a25 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.05) 35px, rgba(255, 255, 255, 0.05) 70px);
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .cta-buttons {
  justify-content: center;
  position: relative;
  z-index: 1;
}

.guarantee {
  font-size: 14px;
  color: #F7C548;
  font-weight: 600;
  margin-top: 16px;
}

/* Features Section */
.features {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.features h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 48px;
}

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

.feature-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background-color: #f9f9f9;
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid #2D5F8D;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-top-color: #E85D35;
}

.feature-card h3 {
  color: #1D4A6F;
  margin-bottom: 12px;
  font-size: 18px;
}

.feature-card p {
  color: #555;
  font-size: 14px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: #f9f9f9;
  margin-bottom: 20px;
}

/* Course Categories */
.course-categories {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.course-categories h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 48px;
}

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

.category-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-left: 6px solid #2D5F8D;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.category-card:hover {
  border-left-color: #E85D35;
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.category-card h3 {
  color: #1D4A6F;
  margin-bottom: 12px;
}

.category-card p {
  color: #555;
  margin-bottom: 16px;
}

.count {
  font-weight: 700;
  color: #E85D35;
  font-size: 14px;
}

/* Pricing Section */
.pricing {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.pricing h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 48px;
}

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

.price-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 350px;
  background-color: #f9f9f9;
  padding: 40px 32px;
  text-align: center;
  border: 3px solid #e0e0e0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
  position: relative;
}

.price-card.popular {
  background-color: #FFFFFF;
  border-color: #2D5F8D;
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.price-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.price-card h3 {
  color: #1D4A6F;
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  background-color: #E85D35;
  color: #FFFFFF;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.price-card .price {
  font-size: 36px;
  color: #2D5F8D;
  margin: 16px 0;
}

.price-card ul {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.price-card li {
  padding: 8px 0;
  color: #555;
  border-bottom: 1px solid #e0e0e0;
}

.price-card li:last-child {
  border-bottom: none;
}

/* Languages Section */
.languages {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.languages h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 16px;
}

.languages > .container > p {
  text-align: center;
  color: #555;
  font-size: 18px;
  margin-bottom: 48px;
}

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

.language-item {
  background-color: #FFFFFF;
  padding: 16px 24px;
  border-left: 4px solid #2D5F8D;
  font-weight: 600;
  color: #1D4A6F;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.language-item:hover {
  background-color: #2D5F8D;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Benefits Section */
.benefits {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.benefits h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 48px;
}

/* Packages Section */
.pricing-packages {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 80px 0;
}

.pricing-packages h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 48px;
}

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

.package-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 40px 32px;
  text-align: center;
  border: 3px solid #e0e0e0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.package-card.popular {
  border-color: #E85D35;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* Blog Section */
.featured-post {
  background-color: #FFFFFF;
  padding: 60px 0;
}

.featured-card {
  background: linear-gradient(135deg, #2D5F8D 0%, #1D4A6F 100%);
  color: #FFFFFF;
  padding: 48px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.featured-card h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.featured-card p {
  margin-bottom: 16px;
}

.meta {
  font-size: 14px;
  color: #F7C548;
  margin-bottom: 24px;
}

.blog-categories {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.blog-categories h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 32px;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.category-item {
  background-color: #FFFFFF;
  padding: 12px 24px;
  border: 2px solid #2D5F8D;
  font-weight: 600;
  color: #1D4A6F;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.category-item:hover {
  background-color: #2D5F8D;
  color: #FFFFFF;
}

.blog-grid {
  background-color: #FFFFFF;
  padding: 60px 0;
}

.blog-grid h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 48px;
}

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

.article-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #f9f9f9;
  padding: 32px;
  border-left: 6px solid #E85D35;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.article-card:hover {
  background-color: #fff;
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-card h3 {
  color: #1D4A6F;
  margin-bottom: 12px;
}

.article-card .meta {
  color: #777;
}

/* Resources Section */
.resources {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.resources h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 16px;
}

.resources > .container > p {
  text-align: center;
  color: #555;
  margin-bottom: 48px;
}

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

.resource-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 450px;
  background-color: #FFFFFF;
  padding: 40px;
  text-align: center;
  border: 3px solid #2D5F8D;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.resource-card h3 {
  color: #1D4A6F;
  margin-bottom: 16px;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, #1D4A6F 0%, #2D5F8D 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.newsletter h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.newsletter p {
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1 1 300px;
  padding: 14px 20px;
  border: 2px solid #F7C548;
  background-color: #FFFFFF;
  font-size: 16px;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #E85D35;
}

.privacy {
  font-size: 12px;
  color: #e8e8e8;
  margin-bottom: 8px;
}

.subscribers {
  font-size: 14px;
  color: #F7C548;
  font-weight: 600;
}

/* Contact Section */
.contact-options {
  background-color: #FFFFFF;
  padding: 60px 0;
}

.contact-options h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 48px;
}

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

.option-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #f9f9f9;
  padding: 32px;
  text-align: center;
  border-top: 4px solid #2D5F8D;
  transition: all 0.3s ease;
}

.option-card:hover {
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-top-color: #E85D35;
}

.option-card h3 {
  color: #1D4A6F;
  margin-bottom: 12px;
}

.option-card p {
  color: #555;
  margin-bottom: 20px;
}

.contact-form-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.contact-form-section h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 48px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border: 3px solid #e0e0e0;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  color: #1D4A6F;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  background-color: #f9f9f9;
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2D5F8D;
  background-color: #FFFFFF;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.form-note {
  color: #555;
  font-size: 14px;
  margin-top: 16px;
}

.location-info {
  background-color: #FFFFFF;
  padding: 60px 0;
}

.location-info h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 48px;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.address,
.contact-details {
  flex: 1 1 300px;
}

.address p,
.contact-details p {
  color: #555;
  margin-bottom: 8px;
}

.address strong,
.contact-details strong {
  color: #1D4A6F;
}

/* Mission & Vision */
.mission-vision {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}

.mission,
.vision {
  flex: 1 1 calc(50% - 48px);
  min-width: 300px;
}

.mission h2,
.vision h2 {
  color: #1D4A6F;
  margin-bottom: 16px;
}

.mission p,
.vision p {
  color: #555;
  line-height: 1.8;
}

/* Our Story */
.our-story {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.our-story h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 24px;
}

.our-story > .container > p {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  color: #555;
  font-size: 18px;
  line-height: 1.8;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
}

.milestone {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #FFFFFF;
  border-top: 4px solid #E85D35;
}

.milestone h3 {
  font-size: 36px;
  color: #2D5F8D;
  margin-bottom: 8px;
}

.milestone p {
  color: #555;
  font-weight: 600;
}

/* Values Section */
.values {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.values h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 48px;
}

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

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #f9f9f9;
  padding: 32px;
  border-left: 6px solid #F7C548;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  transition: all 0.3s ease;
}

.value-card:hover {
  background-color: #fff;
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
  color: #1D4A6F;
  margin-bottom: 12px;
}

.value-card p {
  color: #555;
}

/* Team Section */
.team {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.team h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 16px;
}

.team > .container > p {
  text-align: center;
  color: #555;
  font-size: 18px;
  margin-bottom: 48px;
}

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

.team-member {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  text-align: center;
  border: 3px solid #e0e0e0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.team-member:hover {
  border-color: #2D5F8D;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  color: #1D4A6F;
  margin-bottom: 8px;
  font-size: 20px;
}

.team-member p {
  color: #E85D35;
  font-weight: 600;
  font-size: 14px;
}

/* Services Detail */
.services-intro {
  background-color: #FFFFFF;
  padding: 60px 0;
}

.services-intro h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 16px;
}

.services-intro p {
  text-align: center;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
}

.services-detail {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.service-block {
  background-color: #FFFFFF;
  padding: 48px;
  margin-bottom: 40px;
  border-left: 6px solid #2D5F8D;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.service-block h2 {
  color: #1D4A6F;
  margin-bottom: 16px;
}

.service-block .price {
  display: inline-block;
  background-color: #E85D35;
  color: #FFFFFF;
  padding: 8px 20px;
  margin-bottom: 16px;
  font-size: 20px;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.service-block ul {
  list-style: none;
  margin: 24px 0;
}

.service-block li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #555;
}

.service-block li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E85D35;
  font-weight: 700;
}

.service-block strong {
  color: #2D5F8D;
  display: block;
  margin-top: 16px;
}

/* Error Pages */
.error-hero {
  background: linear-gradient(135deg, #2D5F8D 0%, #1D4A6F 100%);
  color: #FFFFFF;
  padding: 120px 0 80px;
  text-align: center;
}

.error-content h1.error-code {
  font-size: 120px;
  color: #F7C548;
  margin-bottom: 16px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.error-content h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.error-content p {
  font-size: 18px;
  color: #e8e8e8;
}

.helpful-links {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.helpful-links h3 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 48px;
}

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

.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  max-width: 300px;
  background-color: #f9f9f9;
  padding: 24px;
  text-align: center;
  border: 2px solid #2D5F8D;
  font-weight: 600;
  color: #1D4A6F;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.link-card:hover {
  background-color: #2D5F8D;
  color: #FFFFFF;
  transform: translateY(-4px);
}

.contact-support {
  background-color: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

.contact-support h3 {
  color: #1D4A6F;
  margin-bottom: 16px;
}

.contact-support p {
  color: #555;
  margin-bottom: 24px;
}

.contact-support a {
  color: #2D5F8D;
  font-weight: 600;
}

.contact-support a:hover {
  color: #E85D35;
}

/* Thank You Pages */
.thank-you-hero {
  background: linear-gradient(135deg, #E85D35 0%, #d14a25 100%);
  color: #FFFFFF;
  padding: 120px 0 80px;
  text-align: center;
}

.thank-you-content h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 56px;
}

.thank-you-content p {
  font-size: 20px;
  color: #FFFFFF;
}

.confirmation {
  background-color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.confirmation h2 {
  color: #1D4A6F;
  margin-bottom: 32px;
}

.confirmation .steps {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.confirmation .steps p {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #555;
  font-size: 16px;
  margin-bottom: 12px;
}

.next-steps {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.next-steps h2 {
  text-align: center;
  color: #1D4A6F;
  margin-bottom: 48px;
}

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

.action-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 450px;
  background-color: #FFFFFF;
  padding: 40px;
  text-align: center;
  border-top: 4px solid #2D5F8D;
  transition: all 0.3s ease;
}

.action-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.action-card h3 {
  color: #1D4A6F;
  margin-bottom: 12px;
}

.action-card p {
  color: #555;
  margin-bottom: 24px;
}

.contact-alt {
  background-color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

.contact-alt h2 {
  color: #1D4A6F;
  margin-bottom: 16px;
}

.contact-alt p {
  color: #555;
  font-size: 16px;
}

.return-home {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

/* Legal Content */
.legal-content {
  background-color: #FFFFFF;
  padding: 60px 0;
}

.legal-content .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: block;
}

.legal-content h2 {
  color: #1D4A6F;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p,
.legal-content ul {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style-position: outside;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.last-updated {
  font-size: 14px;
  color: #777;
  font-style: italic;
}

/* Footer - Geometric & Structured */
.site-footer {
  background: linear-gradient(135deg, #1D4A6F 0%, #0d2a3f 100%);
  color: #FFFFFF;
  padding: 60px 0 24px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F7C548 0%, #E85D35 50%, #2D5F8D 100%);
}

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

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

.footer-col h4 {
  color: #F7C548;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #e8e8e8;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-col a {
  display: block;
  color: #e8e8e8;
  padding: 8px 0;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 16px;
}

.footer-col a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #F7C548;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #F7C548;
  padding-left: 20px;
}

.footer-col a:hover::before {
  opacity: 1;
}

.footer-bottom {
  border-top: 2px solid rgba(247, 197, 72, 0.2);
  padding-top: 24px;
  text-align: center;
}

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1D4A6F 0%, #2D5F8D 100%);
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-consent-text a {
  color: #F7C548;
  text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 10px 20px;
  border: 2px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.cookie-accept {
  background-color: #E85D35;
  color: #FFFFFF;
  border-color: #E85D35;
}

.cookie-accept:hover {
  background-color: #d14a25;
}

.cookie-reject {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.cookie-settings:hover {
  background-color: rgba(247, 197, 72, 0.1);
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #555;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

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

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 4px solid #2D5F8D;
}

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

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

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

.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: #ccc;
  transition: 0.4s;
}

.cookie-toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #2D5F8D;
}

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

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

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

.cookie-save,
.cookie-accept-all,
.cookie-reject-all {
  flex: 1 1 150px;
  padding: 12px 24px;
  border: 2px solid transparent;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.cookie-save {
  background-color: #2D5F8D;
  color: #FFFFFF;
}

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

.cookie-accept-all {
  background-color: #E85D35;
  color: #FFFFFF;
}

.cookie-accept-all:hover {
  background-color: #d14a25;
}

.cookie-reject-all {
  background-color: transparent;
  color: #555;
  border-color: #555;
}

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Mobile menu width */
  .mobile-menu {
    width: 280px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  /* Sections */
  section {
    padding: 40px 0;
  }
  
  /* Flexbox grids to single column */
  .benefits-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .stats-grid,
  .features-grid,
  .categories-grid,
  .pricing-grid,
  .packages-grid,
  .articles-grid,
  .resources-grid,
  .options-grid,
  .values-grid,
  .team-grid,
  .card-container {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .stat,
  .feature-card,
  .category-card,
  .price-card,
  .package-card,
  .article-card,
  .resource-card,
  .option-card,
  .value-card,
  .team-member,
  .card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* CTA buttons stack */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-primary,
  .cta-secondary,
  .cta-button {
    width: 100%;
    text-align: center;
  }
  
  /* Footer columns stack */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Error code smaller */
  .error-content h1.error-code {
    font-size: 72px;
  }
  
  /* Thank you heading */
  .thank-you-content h1 {
    font-size: 36px;
  }
  
  /* Form wrapper padding */
  .form-wrapper {
    padding: 24px;
  }
  
  /* Newsletter form stack */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    flex: 1 1 100%;
  }
  
  /* Cookie consent stack */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    flex: 1 1 auto;
  }
  
  /* Modal padding */
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Text-image sections stack */
  .text-image-section {
    flex-direction: column;
  }
  
  .content-wrapper {
    flex-direction: column;
  }
  
  .mission,
  .vision {
    flex: 1 1 100%;
  }
  
  .location-details {
    flex-direction: column;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .benefit-card,
  .service-card,
  .category-card,
  .article-card,
  .value-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step,
  .feature-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 32px);
  }
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
  
  .site-header {
    position: static;
  }
  
  body {
    background-color: #FFFFFF;
  }
  
  a {
    color: #1D4A6F;
  }
}