/* ============================================
   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', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FAF9F7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* ============================================
   TYPOGRAPHY - SCANDINAVIAN CLEAN STYLE
   ============================================ */

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #2C5F6F;
  line-height: 1.2;
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #4A5568;
  font-size: 16px;
}

strong {
  font-weight: 600;
  color: #2C5F6F;
}

blockquote {
  border-left: 4px solid #A8DADC;
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #4A5568;
}

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

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

/* ============================================
   BUTTONS - SCANDINAVIAN MINIMALIST
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #2C5F6F;
  color: #FFFFFF;
  border-color: #2C5F6F;
}

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

.btn-secondary {
  background-color: transparent;
  color: #2C5F6F;
  border-color: #2C5F6F;
}

.btn-secondary:hover {
  background-color: #2C5F6F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 111, 0.15);
}

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

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-menu {
  display: none;
}

.nav-menu li {
  display: inline-block;
  margin-left: 32px;
}

.nav-menu a {
  color: #2C5F6F;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
}

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

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

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

.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 150;
  background-color: #2C5F6F;
  color: #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 200;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: #2C5F6F;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px 0;
  color: #2C5F6F;
  font-weight: 500;
  font-size: 18px;
  border-bottom: 1px solid #E8D5C4;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #234A56;
  padding-left: 8px;
}

/* ============================================
   HERO SECTION - SCANDINAVIAN AESTHETIC
   ============================================ */

.hero {
  background: linear-gradient(135deg, #E8D5C4 0%, #A8DADC 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #2C5F6F;
  margin-bottom: 24px;
  font-size: 42px;
}

.hero-subheadline {
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.trust-badge {
  font-size: 14px;
  color: #2C5F6F;
  font-weight: 600;
  margin-top: 16px;
}

/* ============================================
   HERO INTERNAL PAGES
   ============================================ */

.hero-internal {
  background: linear-gradient(135deg, #E8D5C4 0%, #A8DADC 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.hero-internal h1 {
  color: #2C5F6F;
  margin-bottom: 16px;
  font-size: 38px;
}

.hero-internal p {
  font-size: 18px;
  color: #4A5568;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SECTIONS - CONSISTENT SPACING
   ============================================ */

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

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2C5F6F;
}

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

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

.benefit-card,
.service-card,
.team-member,
.blog-post-card,
.stat-card,
.contact-method {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 280px;
  max-width: 360px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.team-member:hover,
.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-card h3,
.service-card h3,
.team-member h3,
.blog-post-card h3 {
  color: #2C5F6F;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p,
.service-card p,
.team-member p,
.blog-post-card p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
}

.price {
  font-size: 24px;
  font-weight: 600;
  color: #2C5F6F;
  margin-top: 12px;
}

/* ============================================
   PROCESS STEPS - FLEXBOX LAYOUT
   ============================================ */

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

.step {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

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

.step p {
  color: #4A5568;
  font-size: 15px;
}

/* ============================================
   TESTIMONIALS - READABLE CONTRAST
   ============================================ */

.testimonials {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.testimonial-card {
  background-color: #F7F9FA;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #A8DADC;
  flex: 1 1 280px;
  max-width: 500px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.testimonial-card .author {
  color: #2C5F6F;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
}

.stats {
  text-align: center;
  color: #4A5568;
  font-size: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #E8D5C4;
}

/* ============================================
   BLOG POSTS - FLEXBOX LAYOUT
   ============================================ */

.blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.post-meta {
  color: #718096;
  font-size: 14px;
  margin-top: 12px;
}

/* ============================================
   CTA SECTIONS - SCANDINAVIAN CLEAN
   ============================================ */

.cta-final,
.cta-section {
  background: linear-gradient(135deg, #E8D5C4 0%, #A8DADC 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 0;
}

.cta-final h2,
.cta-section h2 {
  color: #2C5F6F;
  margin-bottom: 16px;
  font-size: 32px;
}

.cta-final p,
.cta-section p {
  color: #4A5568;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.guarantee {
  font-size: 14px;
  color: #2C5F6F;
  font-weight: 600;
  margin-top: 24px;
}

/* ============================================
   SERVICE DETAILS - FLEXBOX LAYOUTS
   ============================================ */

.service-detailed .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-item {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.service-item h2 {
  color: #2C5F6F;
  text-align: left;
  margin-bottom: 16px;
}

.service-item .price {
  font-size: 20px;
  color: #2C5F6F;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

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

.service-item ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4A5568;
}

.service-item ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #A8DADC;
  font-weight: bold;
}

.service-item.featured {
  border: 2px solid #A8DADC;
  position: relative;
}

.badge {
  background-color: #A8DADC;
  color: #2C5F6F;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}

.savings {
  background-color: #F7F9FA;
  padding: 16px;
  border-radius: 4px;
  color: #2C5F6F;
  font-weight: 600;
  margin: 16px 0;
}

/* ============================================
   CONTENT SECTIONS - FLEXBOX LAYOUTS
   ============================================ */

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.mission-vision .container,
.story .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mission-block,
.vision-block,
.values-block {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.values-block ul {
  list-style: none;
  margin-top: 16px;
}

.values-block ul li {
  padding: 12px 0;
  border-bottom: 1px solid #E8D5C4;
  color: #4A5568;
}

.values-block ul li:last-child {
  border-bottom: none;
}

.milestones {
  background-color: #F7F9FA;
  padding: 24px;
  border-radius: 8px;
  margin-top: 24px;
}

.milestones p {
  color: #2C5F6F;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ============================================
   CASE STUDIES - FLEXBOX LAYOUT
   ============================================ */

.case-study .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.case-item {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.project-type {
  color: #718096;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* ============================================
   STATISTICS - FLEXBOX LAYOUT
   ============================================ */

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

.stats-row p {
  flex: 1 1 200px;
  text-align: center;
  font-size: 16px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2C5F6F;
  margin-bottom: 8px;
}

/* ============================================
   BLOG SECTIONS - FLEXBOX LAYOUTS
   ============================================ */

.blog-featured {
  background-color: #FFFFFF;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.featured-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: #F7F9FA;
  border-radius: 8px;
}

.blog-categories {
  padding: 32px 20px;
  background-color: #FFFFFF;
}

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

.category {
  padding: 10px 20px;
  background-color: #E8D5C4;
  color: #2C5F6F;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category:hover {
  background-color: #A8DADC;
  transform: translateY(-2px);
}

.popular-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.popular-list li {
  padding: 16px 0;
  border-bottom: 1px solid #E8D5C4;
  color: #4A5568;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popular-list li:hover {
  color: #2C5F6F;
  padding-left: 8px;
}

/* ============================================
   CONTACT PAGE - FLEXBOX LAYOUTS
   ============================================ */

.contact-method h3 {
  color: #2C5F6F;
  margin-bottom: 12px;
  font-size: 20px;
}

.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: #2C5F6F;
  margin-bottom: 8px;
}

.contact-value a {
  color: #2C5F6F;
}

.contact-value a:hover {
  color: #234A56;
  text-decoration: underline;
}

.consultation-info,
.service-area,
.office-hours,
.faq-contact {
  background-color: #FFFFFF;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.consultation-info h3,
.service-area h3,
.office-hours h3 {
  color: #2C5F6F;
  margin-top: 24px;
  margin-bottom: 16px;
}

.consultation-info ul,
.service-area ul {
  list-style: none;
  margin: 16px 0;
}

.consultation-info ul li,
.service-area ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4A5568;
}

.consultation-info ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #A8DADC;
  font-weight: bold;
}

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

.hours-block {
  flex: 1 1 280px;
  max-width: 450px;
  background-color: #F7F9FA;
  padding: 24px;
  border-radius: 8px;
}

.faq-item {
  background-color: #F7F9FA;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 16px;
}

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

/* ============================================
   LEGAL PAGES - CONTENT FORMATTING
   ============================================ */

.legal-content {
  background-color: #FFFFFF;
  padding: 40px 20px;
}

.legal-content h2 {
  text-align: left;
  color: #2C5F6F;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

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

.legal-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  padding: 6px 0;
  color: #4A5568;
}

.last-updated {
  color: #718096;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 24px;
}

.cert-list {
  list-style: none;
  margin: 24px 0;
}

.cert-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  color: #4A5568;
  border-bottom: 1px solid #E8D5C4;
}

.cert-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #A8DADC;
  font-weight: bold;
  font-size: 18px;
}

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

.thank-you-content,
.next-steps-suggestions,
.social-follow,
.back-to-home {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.thank-you-content {
  background-color: #FFFFFF;
}

.urgent-section {
  background-color: #F7F9FA;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #A8DADC;
  margin-top: 32px;
}

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

.suggestion-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 260px;
  max-width: 340px;
  text-align: center;
  margin-bottom: 20px;
}

/* ============================================
   FOOTER - SCANDINAVIAN CLEAN
   ============================================ */

footer {
  background-color: #2C5F6F;
  color: #FFFFFF;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 240px;
  max-width: 340px;
}

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

.footer-section h4 {
  color: #A8DADC;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #E8E8E8;
  font-size: 14px;
  line-height: 1.8;
}

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

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

.footer-nav a:hover {
  color: #A8DADC;
}

.copyright {
  text-align: center;
  color: #E8E8E8;
  font-size: 14px;
  padding-top: 32px;
  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: #FFFFFF;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 300;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

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

.cookie-btn-accept {
  background-color: #2C5F6F;
  color: #FFFFFF;
  border: 2px solid #2C5F6F;
}

.cookie-btn-accept:hover {
  background-color: #234A56;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #2C5F6F;
  border: 2px solid #2C5F6F;
}

.cookie-btn-reject:hover {
  background-color: #2C5F6F;
  color: #FFFFFF;
}

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

.cookie-btn-settings:hover {
  border-color: #2C5F6F;
  color: #2C5F6F;
}

/* ============================================
   COOKIE MODAL
   ============================================ */

#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  font-size: 24px;
  color: #718096;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cookie-modal-close:hover {
  color: #2C5F6F;
}

.cookie-category {
  padding: 20px;
  background-color: #F7F9FA;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-category h3 {
  color: #2C5F6F;
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #CBD5E0;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

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

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

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

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

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

/* Tablet - 768px and up */
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-internal h1 {
    font-size: 44px;
  }

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

  .nav-menu {
    display: flex;
  }

  .hero-cta {
    flex-wrap: nowrap;
  }

  .benefits-grid,
  .services-grid {
    justify-content: space-between;
  }

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

  .process-steps {
    flex-wrap: nowrap;
  }

  .testimonials-grid {
    flex-wrap: nowrap;
  }

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

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

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
  .benefit-card,
  .service-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .team-grid {
    justify-content: space-between;
  }

  .team-member {
    flex: 1 1 calc(50% - 12px);
  }

  .blog-posts,
  .posts-grid {
    justify-content: space-between;
  }

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

  .stats-grid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .contact-grid {
    flex-wrap: nowrap;
  }

  .contact-method {
    flex: 1 1 calc(25% - 18px);
  }
}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .benefit-card,
  .service-card {
    flex: 1 1 calc(33.333% - 16px);
    max-width: 360px;
  }

  .team-member {
    flex: 1 1 calc(25% - 18px);
  }
}

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

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

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

/* Stagger animation for cards */
.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   ACCESSIBILITY & FOCUS STATES
   ============================================ */

a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #A8DADC;
  outline-offset: 2px;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .hero-cta,
  .cta-buttons,
  footer {
    display: none;
  }

  body {
    background-color: #FFFFFF;
  }

  * {
    box-shadow: none !important;
  }
}