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

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

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

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

/* ===================================
   TYPOGRAPHY - MINIMALIST STYLE
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2C5F8D;
  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;
  line-height: 1.8;
}

blockquote {
  border-left: 4px solid #2C5F8D;
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: #555;
}

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

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

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

/* ===================================
   HEADER - MINIMALIST DESIGN
   =================================== */

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  color: #333;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

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

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

/* ===================================
   MOBILE MENU - BURGER NAVIGATION
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background-color: #2C5F8D;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(44, 95, 141, 0.3);
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #333;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

/* ===================================
   BUTTONS - MINIMALIST STYLE
   =================================== */

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

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

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

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

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

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

/* ===================================
   HERO SECTION - MINIMALIST
   =================================== */

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

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

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

.hero-subheadline {
  font-size: 20px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.6;
}

.trust-badge {
  margin-top: 32px;
  color: #777;
  font-size: 14px;
  font-weight: 500;
}

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

.hero-internal {
  background-color: #F4F1EA;
  padding: 80px 20px 60px;
  margin-bottom: 60px;
}

.hero-internal h1 {
  margin-bottom: 16px;
}

.hero-internal p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #777;
}

.breadcrumb a {
  color: #2C5F8D;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===================================
   PROBLEM-SOLUTION SECTION
   =================================== */

.problem-solution {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.problem-list {
  margin: 32px 0;
  padding-left: 24px;
}

.problem-list li {
  margin-bottom: 16px;
  padding-left: 16px;
  position: relative;
}

.problem-list li::before {
  content: '•';
  color: #E8505B;
  font-size: 24px;
  position: absolute;
  left: -8px;
  top: -4px;
}

/* ===================================
   SERVICES OVERVIEW - FLEXBOX GRID
   =================================== */

.services-overview {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #F4F1EA;
}

.section-subheadline {
  text-align: center;
  color: #555;
  font-size: 18px;
  margin-bottom: 48px;
}

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

.service-card {
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

.service-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p {
  color: #555;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card .price {
  color: #2C5F8D;
  font-weight: 600;
  font-size: 18px;
  margin-top: auto;
}

.services-overview > .container > .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ===================================
   BENEFITS SECTION - FLEXBOX
   =================================== */

.benefits {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.benefit-item {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.benefit-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.benefit-item p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

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

.testimonials {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #F4F1EA;
}

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

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

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 400px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  color: #2C5F8D;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: auto;
}

.testimonials > .container > .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

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

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

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: #E8E8E8;
  display: block;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  padding: 80px 20px;
  margin-bottom: 60px;
  background-color: #F4F1EA;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-buttons {
  justify-content: center;
}

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

/* ===================================
   SERVICES DETAILED PAGE
   =================================== */

.services-detailed {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.service-detail {
  background-color: #FFFFFF;
  padding: 48px 40px;
  margin-bottom: 40px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2C5F8D;
}

.service-detail h2 {
  margin-bottom: 8px;
}

.service-detail .tagline {
  color: #777;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
}

.service-detail .price {
  color: #E8505B;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 24px;
  display: block;
}

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

.service-detail ul li {
  margin-bottom: 12px;
  color: #555;
}

.service-detail .btn {
  margin-top: 24px;
}

/* ===================================
   STORY & CONTENT SECTIONS
   =================================== */

.story {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.story h2 {
  margin-bottom: 24px;
}

.story p {
  color: #555;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 16px;
}

.mission-vision {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #F4F1EA;
}

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

.content-item {
  flex: 1 1 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.content-item h3 {
  margin-bottom: 16px;
}

.content-item p {
  color: #555;
}

/* ===================================
   VALUES SECTION
   =================================== */

.values {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.values h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.value-item {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.value-item h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

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

/* ===================================
   TEAM SECTION
   =================================== */

.team {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #F4F1EA;
}

.team h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team .section-subheadline {
  text-align: center;
  margin-bottom: 48px;
}

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

.team-member {
  flex: 1 1 260px;
  max-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 20px;
}

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

.team-member .role {
  color: #2C5F8D;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.team-member p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* ===================================
   METHOD PAGE - PILLARS & PROCESS
   =================================== */

.method-overview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.method-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.method-overview > .container > p {
  text-align: center;
  color: #555;
  max-width: 700px;
  margin: 0 auto 48px;
}

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

.pillar-item {
  flex: 1 1 220px;
  max-width: 260px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.pillar-item:hover {
  border-color: #2C5F8D;
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.15);
}

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

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

.process {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #F4F1EA;
}

.process h2 {
  text-align: center;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2C5F8D;
  margin-bottom: 20px;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step .subtitle {
  color: #777;
  font-style: italic;
  margin-bottom: 16px;
  display: block;
}

.process-step ul {
  margin-top: 16px;
  padding-left: 24px;
}

.process-step ul li {
  margin-bottom: 8px;
  color: #555;
}

.techniques {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.techniques h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.technique-category {
  flex: 1 1 260px;
  max-width: 300px;
  background-color: #F4F1EA;
  padding: 32px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.technique-category h3 {
  margin-bottom: 16px;
  color: #2C5F8D;
}

.technique-category ul {
  padding-left: 24px;
}

.technique-category ul li {
  margin-bottom: 12px;
  color: #555;
  font-size: 14px;
}

/* ===================================
   SUCCESS STORIES PAGE
   =================================== */

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

.story-header {
  text-align: center;
  margin-bottom: 40px;
}

.story-header .category {
  display: inline-block;
  background-color: #2C5F8D;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.story-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.story-client {
  flex: 1 1 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.story-client h3 {
  margin-bottom: 8px;
}

.story-client p {
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
}

.story-details {
  flex: 2 1 400px;
  margin-bottom: 20px;
}

.story-details h4 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #2C5F8D;
}

.story-details p {
  color: #555;
  margin-bottom: 16px;
}

.story-details blockquote {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 4px;
  margin: 24px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.story-details ul {
  padding-left: 24px;
}

.story-details ul li {
  margin-bottom: 8px;
  color: #555;
}

.success-grid {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.success-grid h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.story-card {
  flex: 1 1 300px;
  max-width: 360px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

.story-card .category {
  display: inline-block;
  background-color: #E8505B;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 16px;
}

.story-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.story-card .client {
  color: #2C5F8D;
  font-weight: 600;
  margin-bottom: 12px;
}

.story-card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 12px;
}

.story-card .result {
  color: #E8505B;
  font-weight: 600;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #E8E8E8;
}

.metrics {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #2C5F8D;
  color: #FFFFFF;
}

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

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.metric-item {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.metric-item .number {
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
}

.metric-item .label {
  font-size: 14px;
  color: #E8E8E8;
  display: block;
  line-height: 1.4;
}

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

.contact-options {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.contact-option {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-option img {
  width: 64px;
  height: 64px;
}

.contact-option h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-option p {
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-option .contact-detail {
  margin-top: auto;
}

.contact-option .contact-detail a {
  color: #2C5F8D;
  font-weight: 600;
}

.contact-option .contact-detail a:hover {
  text-decoration: underline;
}

.office-info {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #F4F1EA;
}

.office-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.office-details {
  max-width: 600px;
  margin: 0 auto;
}

.office-address {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.office-address h3 {
  margin-bottom: 16px;
}

.office-address h4 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #2C5F8D;
}

.office-address p {
  color: #555;
  margin-bottom: 12px;
}

.contact-team {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-team h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.contact-person {
  flex: 1 1 280px;
  max-width: 360px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.contact-person h3 {
  margin-bottom: 8px;
}

.contact-person .role {
  color: #2C5F8D;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}

.contact-person p {
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-person a {
  color: #2C5F8D;
  font-weight: 500;
}

.contact-person a:hover {
  text-decoration: underline;
}

.next-steps {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #F4F1EA;
}

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

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

.step-item {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.step-item h3 {
  color: #2C5F8D;
  font-size: 18px;
  margin-bottom: 8px;
}

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

.trust-elements {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.trust-elements h2 {
  text-align: center;
  margin-bottom: 32px;
}

.trust-list {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 24px;
}

.trust-list li {
  margin-bottom: 16px;
  color: #555;
  font-size: 16px;
}

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

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

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

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.thank-you-content h1 {
  margin-bottom: 16px;
}

.thank-you-content .subheadline {
  font-size: 18px;
  color: #555;
  margin-bottom: 16px;
}

.thank-you-content .confirmation {
  color: #777;
  font-size: 14px;
}

.meanwhile {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #F4F1EA;
}

.meanwhile h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.resource-item {
  flex: 1 1 300px;
  max-width: 400px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.resource-item h3 {
  margin-bottom: 8px;
}

.resource-item p {
  color: #555;
  margin-bottom: 16px;
}

.contact-reminder {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.contact-reminder h2 {
  margin-bottom: 16px;
}

.contact-reminder > .container > p {
  color: #555;
  margin-bottom: 32px;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-option {
  flex: 1 1 280px;
  background-color: #F4F1EA;
  padding: 32px;
  border-radius: 4px;
  text-align: center;
}

.contact-option .label {
  font-weight: 600;
  color: #2C5F8D;
  margin-bottom: 8px;
  display: block;
}

.contact-option .detail {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-option .detail a {
  color: #2C5F8D;
  font-weight: 600;
}

.contact-option .availability {
  color: #777;
  font-size: 14px;
}

.social-proof {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #F4F1EA;
}

.social-proof h2 {
  text-align: center;
  margin-bottom: 8px;
}

.social-proof > .container > p {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.testimonial {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial .testimonial-card {
  max-width: 700px;
  margin: 0 auto;
}

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

.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h1 {
  margin-bottom: 24px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
}

.legal-content p {
  color: #555;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 32px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: #555;
  margin-bottom: 8px;
}

/* ===================================
   FOOTER - MINIMALIST
   =================================== */

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

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

.footer-col {
  flex: 1 1 200px;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 16px;
}

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

.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: #FFFFFF;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: #E8E8E8;
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C5F8D;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-banner-text {
  flex: 1 1 400px;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-banner-buttons .btn {
  padding: 10px 20px;
  font-size: 13px;
  white-space: nowrap;
}

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

.btn-accept-all:hover {
  background-color: #E8E8E8;
  border-color: #E8E8E8;
}

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

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

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

.btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  padding: 24px;
  border-bottom: 1px solid #E8E8E8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-body {
  padding: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E8E8;
}

.cookie-category:last-child {
  border-bottom: none;
}

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

.cookie-category-header h4 {
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.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.3s;
  border-radius: 26px;
}

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

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

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

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

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

.cookie-modal-footer {
  padding: 24px;
  border-top: 1px solid #E8E8E8;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  /* Header & Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hero Sections */
  .hero {
    padding: 80px 20px 60px;
  }
  
  .hero-internal {
    padding: 60px 20px 40px;
  }
  
  /* Sections */
  .section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  /* Grids - All use flexbox column on mobile */
  .service-grid,
  .benefits-grid,
  .testimonial-grid,
  .stats-grid,
  .values-grid,
  .team-grid,
  .pillars-grid,
  .techniques-grid,
  .stories-grid,
  .metrics-grid,
  .contact-grid,
  .team-contact-grid,
  .steps-grid,
  .resources-grid {
    flex-direction: column;
    align-items: center;
  }
  
  /* Cards full width on mobile */
  .service-card,
  .benefit-item,
  .testimonial-card,
  .stat-item,
  .value-item,
  .team-member,
  .pillar-item,
  .technique-category,
  .story-card,
  .metric-item,
  .contact-option,
  .contact-person,
  .step-item,
  .resource-item {
    max-width: 100%;
    width: 100%;
  }
  
  /* Story content stack */
  .story-content {
    flex-direction: column;
  }
  
  .story-client,
  .story-details {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    max-width: 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner-buttons .btn {
    width: 100%;
  }
  
  /* Process steps */
  .process-step {
    padding: 24px;
  }
  
  /* Service details */
  .service-detail {
    padding: 32px 24px;
  }
  
  /* Stats */
  .stat-number {
    font-size: 36px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  /* Adjust grid items for tablet */
  .service-card,
  .benefit-item,
  .value-item,
  .team-member,
  .pillar-item,
  .technique-category,
  .story-card {
    flex: 1 1 calc(50% - 16px);
  }
}

@media (min-width: 1025px) {
  /* Hover effects only on desktop */
  .service-card:hover,
  .value-item:hover,
  .contact-option:hover,
  .story-card:hover {
    transform: translateY(-4px);
  }
}

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

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

.service-card,
.benefit-item,
.testimonial-card,
.story-card,
.value-item {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scroll */
html {
  scroll-padding-top: 100px;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #2C5F8D;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}

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

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

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

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.p-8 { padding: 8px; }
.p-16 { padding: 16px; }
.p-24 { padding: 24px; }
.p-32 { padding: 32px; }

/* END OF CSS */