/* ========================================
   FINANZKOMPASS STUTTGART - GEOMETRIC STRUCTURED DESIGN
   Geometric and structured design approach
   ======================================== */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: #F5F5F5;
  overflow-x: hidden;
}

/* TYPOGRAPHY - GEOMETRIC & STRUCTURED */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1A4D7C;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  border-left: 6px solid #E8B547;
  padding-left: 20px;
}

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

h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40px;
  height: 3px;
  background: #E8B547;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

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

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

a:hover {
  color: #1A4D7C;
}

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

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

strong {
  font-weight: 700;
  color: #1A4D7C;
}

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

/* HEADER & NAVIGATION - GEOMETRIC STRUCTURE */
header {
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #E8B547;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1A4D7C;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #E8B547;
  transition: width 0.3s ease;
}

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

.nav-menu a:hover {
  color: #E8B547;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* MOBILE MENU - GEOMETRIC SLIDE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #1A4D7C;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #E8B547;
  transform: rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #1A4D7C;
  z-index: 3000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #FFFFFF;
  padding: 16px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E8B547;
  padding-left: 12px;
}

/* BUTTONS - GEOMETRIC SHAPES */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: 0;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #1A4D7C;
  color: #FFFFFF;
  border-color: #1A4D7C;
}

.btn-primary:hover {
  background: #2C7A9F;
  border-color: #2C7A9F;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 77, 124, 0.3);
}

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

.btn-secondary:hover {
  background: #1A4D7C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 77, 124, 0.3);
}

/* HERO SECTION - GEOMETRIC GRID */
.hero {
  background: linear-gradient(135deg, #1A4D7C 0%, #2C7A9F 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(232, 181, 71, 0.1);
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

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

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

.hero-subheadline {
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-cta .btn-primary {
  background: #E8B547;
  border-color: #E8B547;
  color: #1A4D7C;
}

.hero-cta .btn-primary:hover {
  background: #FFC857;
  border-color: #FFC857;
}

.hero-cta .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.hero-cta .btn-secondary:hover {
  background: #FFFFFF;
  color: #1A4D7C;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-indicators p {
  font-size: 14px;
  margin: 0;
  padding-left: 8px;
  color: #FFFFFF;
}

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

.value-proposition,
.services-overview,
.testimonials,
.cta-banner,
.location-info,
.mission-vision,
.story,
.team,
.certifications,
.services-detail,
.process-overview,
.workshop-benefits,
.upcoming-workshops,
.workshop-formats,
.featured-resources,
.calculators,
.templates,
.guides,
.featured-posts,
.categories,
.popular-posts,
.newsletter,
.contact-info,
.contact-methods,
.location,
.faq,
.legal-page,
.thank-you-section,
.helpful-resources,
.navigation-options {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.value-proposition {
  background: #FFFFFF;
  border-top: 6px solid #E8B547;
}

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

/* GRID LAYOUTS - FLEXBOX ONLY */
.benefits-grid,
.services-grid,
.testimonials-grid,
.team-grid,
.workshop-grid,
.resources-grid,
.templates-grid,
.posts-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

/* CARDS - GEOMETRIC STRUCTURE */
.benefit-card,
.service-card,
.testimonial-card,
.team-member,
.workshop-card,
.resource-card,
.template-item,
.post-card,
.contact-card,
.service-detail-card {
  background: #FFFFFF;
  padding: 32px;
  border: 3px solid #E5E5E5;
  position: relative;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.benefit-card::before,
.service-card::before,
.workshop-card::before,
.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #E8B547;
  transition: width 0.3s ease;
}

.benefit-card:hover::before,
.service-card:hover::before,
.workshop-card:hover::before,
.resource-card:hover::before {
  width: 100%;
  opacity: 0.1;
}

.benefit-card:hover,
.service-card:hover,
.workshop-card:hover,
.resource-card:hover,
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: #E8B547;
}

.benefit-card h3,
.service-card h3,
.workshop-card h3,
.resource-card h3,
.post-card h3,
.team-member h3 {
  color: #1A4D7C;
  margin-bottom: 16px;
}

.benefit-card p,
.service-card p,
.workshop-card p,
.resource-card p,
.post-card p {
  color: #4A4A4A;
  line-height: 1.8;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #E8B547;
  margin: 16px 0;
}

.format,
.meta {
  font-size: 14px;
  color: #666666;
  font-style: italic;
}

/* STATISTICS - GEOMETRIC BOXES */
.statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  padding: 40px 20px;
  background: #F8F9FA;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: #FFFFFF;
  border: 3px solid #E8B547;
  min-width: 150px;
  position: relative;
}

.stat::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #E8B547, #2C7A9F);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.stat:hover::before {
  opacity: 0.1;
}

.stat strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  color: #1A4D7C;
  display: block;
  margin-bottom: 8px;
}

.stat p {
  font-size: 14px;
  color: #666666;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TESTIMONIALS - STRUCTURED CARDS */
.testimonials {
  background: #F8F9FA;
  padding: 60px 20px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-left: 6px solid #E8B547;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  position: relative;
}

.testimonial-card p {
  color: #1A1A1A;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.author {
  font-weight: 700;
  color: #1A4D7C;
  font-size: 14px;
  text-align: right;
  margin-top: 16px;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: #E8B547;
  margin-top: 32px;
}

/* CTA BANNER - BOLD GEOMETRIC */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1A4D7C 0%, #2C7A9F 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: rgba(232, 181, 71, 0.1);
  transform: translate(-50%, -50%) rotate(45deg);
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
  border: none;
  padding: 0;
}

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

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

/* TIMELINE - STRUCTURED VERTICAL */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
  position: relative;
  margin-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #E8B547;
}

.timeline-item {
  padding: 16px 24px;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #E8B547;
  border: 4px solid #FFFFFF;
  box-shadow: 0 0 0 4px #E8B547;
}

.timeline-item:hover {
  transform: translateX(8px);
  border-color: #E8B547;
}

.timeline-item strong {
  font-size: 20px;
  color: #1A4D7C;
  display: block;
  margin-bottom: 8px;
}

/* VALUES & LISTS - STRUCTURED */
.values ul,
.workshop-benefits ul,
.certifications ul,
.workshop-formats ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.values li,
.workshop-benefits li,
.certifications li,
.workshop-formats li {
  padding: 16px 24px;
  background: #FFFFFF;
  border-left: 4px solid #E8B547;
  position: relative;
  transition: all 0.3s ease;
}

.values li::before,
.workshop-benefits li::before,
.certifications li::before,
.workshop-formats li::before {
  content: '▸';
  position: absolute;
  left: 8px;
  color: #E8B547;
  font-size: 18px;
}

.values li:hover,
.workshop-benefits li:hover,
.certifications li:hover,
.workshop-formats li:hover {
  background: #F8F9FA;
  padding-left: 32px;
}

/* CATEGORY LIST - GEOMETRIC TAGS */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.category-list li {
  padding: 12px 24px;
  background: #1A4D7C;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid #1A4D7C;
}

.category-list li:hover {
  background: #E8B547;
  border-color: #E8B547;
  color: #1A4D7C;
  transform: translateY(-2px);
}

/* FAQ - ACCORDION STYLE */
.faq-item {
  background: #FFFFFF;
  padding: 24px;
  margin-bottom: 16px;
  border: 2px solid #E5E5E5;
  border-left: 6px solid #E8B547;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: #1A4D7C;
}

.faq-item h4 {
  color: #1A4D7C;
  margin-bottom: 12px;
}

/* SERVICE DETAIL CARD */
.service-detail-card {
  flex: 1 1 100%;
  padding: 40px;
  margin-bottom: 40px;
  border: 4px solid #E5E5E5;
  background: #FFFFFF;
}

.service-detail-card ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-detail-card li {
  margin-bottom: 12px;
  position: relative;
}

.service-detail-card li::marker {
  color: #E8B547;
  font-weight: bold;
}

/* PROCESS OVERVIEW - ORDERED LIST */
.process-overview ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.process-overview li {
  padding: 20px 24px 20px 70px;
  background: #FFFFFF;
  border: 3px solid #E5E5E5;
  position: relative;
  counter-increment: step-counter;
  transition: all 0.3s ease;
}

.process-overview li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #E8B547;
  color: #1A4D7C;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}

.process-overview li:hover {
  border-color: #1A4D7C;
  transform: translateX(8px);
}

/* THANK YOU PAGE - SUCCESS INDICATOR */
.thank-you-content {
  text-align: center;
  padding: 60px 20px;
  background: #FFFFFF;
  border: 4px solid #E8B547;
  margin: 40px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #E8B547;
  color: #1A4D7C;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-weight: 700;
}

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

.confirmation-message h3 {
  color: #1A4D7C;
  margin: 24px 0 16px;
}

.confirmation-message ol {
  padding-left: 24px;
}

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

.resource-link {
  padding: 16px 32px;
  background: #1A4D7C;
  color: #FFFFFF;
  border: 3px solid #1A4D7C;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background: #E8B547;
  border-color: #E8B547;
  color: #1A4D7C;
  transform: translateY(-2px);
}

/* FOOTER - STRUCTURED GRID */
footer {
  background: #1A4D7C;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  border-top: 6px solid #E8B547;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: #E8B547;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-section a:hover {
  color: #E8B547;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* COOKIE CONSENT BANNER - FIXED BOTTOM */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A4D7C;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 4000;
  display: none;
  border-top: 4px solid #E8B547;
}

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

.cookie-banner p {
  flex: 1 1 400px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: 2px solid #FFFFFF;
  background: transparent;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-buttons button:first-child {
  background: #E8B547;
  border-color: #E8B547;
  color: #1A4D7C;
}

.cookie-buttons button:first-child:hover {
  background: #FFC857;
  border-color: #FFC857;
}

.cookie-buttons button:hover {
  background: #FFFFFF;
  color: #1A4D7C;
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border: 4px solid #E8B547;
  position: relative;
}

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

.cookie-category {
  padding: 20px;
  background: #F8F9FA;
  margin-bottom: 16px;
  border-left: 4px solid #E8B547;
}

.cookie-category h3 {
  color: #1A4D7C;
  font-size: 18px;
  margin-bottom: 12px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
}

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

.cookie-category input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

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

.cookie-modal-buttons button {
  padding: 12px 24px;
  border: 2px solid #1A4D7C;
  background: #1A4D7C;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-modal-buttons button:hover {
  background: #2C7A9F;
  border-color: #2C7A9F;
}

/* LEGAL PAGES - DOCUMENT STYLE */
.legal-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 60px 40px;
  background: #FFFFFF;
  border: 3px solid #E5E5E5;
  border-top: 6px solid #E8B547;
}

.legal-page h1 {
  border-bottom: 4px solid #E8B547;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.legal-page h2 {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid #E5E5E5;
}

.last-updated {
  font-style: italic;
  color: #666666;
  margin-bottom: 32px;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  p {
    font-size: 14px;
  }
  
  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }
  
  .cta-buttons {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Card grids - stack on mobile */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .team-grid,
  .workshop-grid,
  .resources-grid,
  .templates-grid,
  .posts-grid,
  .contact-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .team-member,
  .workshop-card,
  .resource-card,
  .template-item,
  .post-card,
  .contact-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Statistics - 2 columns on mobile */
  .statistics {
    gap: 16px;
  }
  
  .stat {
    flex: 1 1 calc(50% - 16px);
    min-width: 140px;
  }
  
  .stat strong {
    font-size: 36px;
  }
  
  /* Footer - stack sections */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner - stack on mobile */
  .cookie-banner {
    flex-direction: column;
    padding: 20px;
  }
  
  .cookie-banner p {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
    max-height: 90vh;
  }
  
  /* Legal pages */
  .legal-page {
    padding: 32px 20px;
    margin: 20px;
  }
  
  /* Timeline - smaller offset */
  .timeline {
    margin-left: 20px;
  }
  
  .timeline-item::before {
    left: -22px;
    width: 12px;
    height: 12px;
  }
  
  /* Service detail cards */
  .service-detail-card {
    padding: 24px;
  }
  
  /* Process overview */
  .process-overview li {
    padding: 16px 16px 16px 60px;
  }
  
  .process-overview li::before {
    left: 12px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* TABLET RESPONSIVE */
@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .workshop-card,
  .resource-card,
  .post-card {
    flex: 1 1 calc(50% - 24px);
    min-width: calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
}

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

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

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

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

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

.note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.lead {
  font-size: 20px;
  font-weight: 600;
  color: #1A4D7C;
  margin-bottom: 24px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000000;
    background: #FFFFFF;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  .legal-page {
    border: none;
    padding: 0;
  }
}