/* ========================================
   BRIGHT LANTERN - MODERN BOLD CSS
   Modern Bold Design Style
   ======================================== */

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ========================================
   TYPOGRAPHY - MODERN BOLD STYLE
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #000000;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  color: #C4670A;
}

h2 {
  font-size: 32px;
  text-transform: uppercase;
  color: #000000;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2a;
}

strong {
  font-weight: 700;
  color: #000000;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

/* ========================================
   BUTTONS - MODERN BOLD STYLE
   ======================================== */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: #C4670A;
  color: #ffffff;
  border-color: #C4670A;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background-color: #A07000;
  border-color: #A07000;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: #ffffff;
  color: #C4670A;
  border-color: #C4670A;
  box-shadow: 4px 4px 0 rgba(196, 103, 10, 0.2);
}

.btn-secondary:hover {
  background-color: #C4670A;
  color: #ffffff;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(196, 103, 10, 0.2);
}

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

header {
  background-color: #ffffff;
  border-bottom: 4px solid #C4670A;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

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

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: #C4670A;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  border: 3px solid #000000;
  border-radius: 0;
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #A07000;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #ffffff;
  border-left: 4px solid #C4670A;
  z-index: 1999;
  transition: right 0.4s ease;
  box-shadow: -8px 0 24px 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: #000000;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  border: none;
  border-radius: 0;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 0;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  padding: 20px 0;
  border-bottom: 3px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C4670A;
  padding-left: 16px;
  background-color: #fff8f0;
}

/* ========================================
   HERO SECTIONS - MODERN BOLD STYLE
   ======================================== */

.hero {
  background: linear-gradient(135deg, #C4670A 0%, #A07000 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 32px;
  color: #ffffff;
  line-height: 1.6;
}

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

.hero-internal {
  background: linear-gradient(135deg, #2A9D8F 0%, #1a7a6f 100%);
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.hero-internal h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.hero-internal p {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 0;
}

/* ========================================
   SECTIONS - MODERN BOLD SPACING
   ======================================== */

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 20px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #C4670A;
}

/* ========================================
   CARDS & GRIDS - FLEXBOX LAYOUTS
   ======================================== */

.benefits-grid,
.services-grid,
.team-grid,
.posts-grid,
.stats-grid,
.contact-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card,
.service-card,
.team-member,
.post-card,
.contact-card,
.suggestion-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  border: 4px solid #000000;
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.benefit-card:hover,
.service-card:hover,
.team-member:hover,
.post-card:hover,
.contact-card:hover,
.suggestion-card:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.benefit-card h3,
.service-card h3,
.team-member h3,
.post-card h3,
.contact-card h3,
.suggestion-card h3 {
  color: #C4670A;
  font-size: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.benefit-card p,
.service-card p,
.team-member p,
.post-card p,
.contact-card p,
.suggestion-card p {
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.6;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #C4670A;
  margin-top: 20px;
  margin-bottom: 0;
}

/* ========================================
   PROCESS STEPS
   ======================================== */

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

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background-color: #ffffff;
  border: 4px solid #2A9D8F;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 8px 8px 0 rgba(42, 157, 143, 0.2);
}

.step-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #C4670A;
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-size: 20px;
  color: #000000;
  margin-bottom: 12px;
  text-transform: uppercase;
}

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

/* ========================================
   TESTIMONIALS - HIGH CONTRAST
   ======================================== */

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #fff8f0;
  border: 4px solid #C4670A;
  border-left: 12px solid #C4670A;
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 8px 8px 0 rgba(196, 103, 10, 0.2);
}

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

.testimonial-card .author {
  color: #000000;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats {
  background-color: #2A9D8F;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.stat {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background-color: #ffffff;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-number,
.stat .number,
.stat .value {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #C4670A;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label,
.stat .label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.cta-section {
  background: linear-gradient(135deg, #C4670A 0%, #A07000 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 20px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.cta-section h2::after {
  display: none;
}

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

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* ========================================
   PORTFOLIO & PROJECT CARDS
   ======================================== */

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

.project-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  border: 4px solid #2A9D8F;
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 8px 8px 0 rgba(42, 157, 143, 0.2);
}

.project-card h3 {
  color: #000000;
  font-size: 22px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.project-card .category {
  display: inline-block;
  background-color: #C4670A;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.project-card .result {
  color: #2A9D8F;
  font-weight: 700;
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 2px solid #f0f0f0;
}

/* ========================================
   WORKSHOPS & SCHEDULE
   ======================================== */

.workshops-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.workshop-card {
  background-color: #ffffff;
  border: 4px solid #000000;
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.workshop-card h3 {
  color: #C4670A;
  font-size: 24px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.workshop-card .level {
  color: #2A9D8F;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.date-card {
  background-color: #fff8f0;
  border: 4px solid #C4670A;
  border-left: 12px solid #C4670A;
  padding: 24px;
  box-shadow: 6px 6px 0 rgba(196, 103, 10, 0.2);
}

.date-card .workshop-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.date-card .availability {
  color: #C4670A;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* ========================================
   BLOG & POSTS
   ======================================== */

.featured-posts {
  background-color: #f8f8f8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.post-card {
  background-color: #ffffff;
  border: 4px solid #000000;
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.post-card h3 {
  color: #000000;
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.post-card .meta {
  color: #666666;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-methods {
  margin-bottom: 60px;
}

.contact-card h3 {
  color: #2A9D8F;
  font-size: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.contact-card .detail {
  color: #C4670A;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #2A9D8F 0%, #1a7a6f 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  display: inline-block;
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  color: #2A9D8F;
  font-size: 64px;
  font-weight: 800;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 32px;
  border: 6px solid #000000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

.thank-you-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

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

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

.steps-grid .step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
}

.timeframe {
  color: #C4670A;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: 0;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h2 {
  color: #C4670A;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
  padding-bottom: 12px;
  border-bottom: 4px solid #C4670A;
}

.legal-content h2::after {
  display: none;
}

.legal-content h3 {
  color: #2A9D8F;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 24px;
}

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

/* ========================================
   FOOTER - MODERN BOLD STYLE
   ======================================== */

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 20px;
  border-top: 6px solid #C4670A;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-column h3 {
  color: #C4670A;
  font-size: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

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

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

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #C4670A;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid #333333;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  border-top: 4px solid #C4670A;
  z-index: 1998;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-banner-text {
  flex: 1 1 300px;
}

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

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

.cookie-banner button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: 3px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.cookie-accept-all {
  background-color: #C4670A;
  color: #ffffff;
  border-color: #C4670A;
}

.cookie-accept-all:hover {
  background-color: #A07000;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.cookie-reject-all {
  background-color: #666666;
  color: #ffffff;
  border-color: #666666;
}

.cookie-reject-all:hover {
  background-color: #555555;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.cookie-settings {
  background-color: #ffffff;
  color: #1a1a1a;
  border-color: #ffffff;
}

.cookie-settings:hover {
  background-color: #f0f0f0;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  border: 4px solid #000000;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #000000;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #C4670A;
}

.cookie-modal h2 {
  color: #C4670A;
  font-size: 28px;
  margin-bottom: 24px;
  text-align: left;
}

.cookie-modal h2::after {
  display: none;
}

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

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

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

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #cccccc;
  border: 3px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border: 2px solid #000000;
  transition: all 0.3s ease;
}

.cookie-toggle.active::after {
  left: 26px;
}

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

.cookie-modal-buttons button {
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.cookie-save-preferences {
  background-color: #2A9D8F;
  color: #ffffff;
  border-color: #2A9D8F;
  flex: 1;
}

.cookie-save-preferences:hover {
  background-color: #1a7a6f;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-internal h1 { font-size: 32px; }
  .hero-internal p { font-size: 16px; }
  
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Hero sections */
  .hero {
    padding: 60px 16px;
  }
  
  .hero-internal {
    padding: 40px 16px;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Cards - full width on mobile */
  .benefit-card,
  .service-card,
  .team-member,
  .post-card,
  .project-card,
  .contact-card,
  .suggestion-card,
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Steps */
  .step,
  .steps-grid .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Stats */
  .stat {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .stat-number,
  .stat .number,
  .stat .value {
    font-size: 40px;
  }
  
  /* Footer */
  .footer-column {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-banner button {
    width: 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Thank you page */
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
    line-height: 80px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablets */
  .benefit-card,
  .service-card,
  .team-member,
  .post-card,
  .project-card,
  .contact-card,
  .suggestion-card,
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 24px);
  }
  
  .footer-column {
    flex: 1 1 calc(50% - 40px);
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .btn {
    border: 2px solid #000;
    box-shadow: none;
  }
}