/* ===================================
   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: #2c3e50;
  background-color: #f8f9fa;
  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 - PROFESSIONAL CORPORATE
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a4a6d;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

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

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

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

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

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

/* ===================================
   HEADER - PROFESSIONAL CORPORATE
   =================================== */

header {
  background: linear-gradient(135deg, #1a4a6d 0%, #2c5f8d 100%);
  box-shadow: 0 2px 12px rgba(26, 74, 109, 0.15);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 16px 0;
}

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

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

.logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover,
.main-nav a.active {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* ===================================
   MOBILE MENU - PROFESSIONAL STYLE
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: #1a4a6d;
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 74, 109, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #2c5f8d;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1a4a6d 0%, #2c5f8d 100%);
  z-index: 1002;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

/* ===================================
   BUTTONS - CORPORATE STYLE
   =================================== */

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

.btn-primary {
  background: #1a4a6d;
  color: white;
  box-shadow: 0 4px 12px rgba(26, 74, 109, 0.3);
}

.btn-primary:hover {
  background: #2c5f8d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 74, 109, 0.4);
}

.btn-secondary {
  background: white;
  color: #1a4a6d;
  border: 2px solid #1a4a6d;
}

.btn-secondary:hover {
  background: #1a4a6d;
  color: white;
  transform: translateY(-2px);
}

.btn-link {
  color: #1a4a6d;
  font-weight: 600;
  padding: 8px 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-link:hover {
  border-bottom-color: #1a4a6d;
  transform: translateX(4px);
}

/* ===================================
   HERO SECTION - CORPORATE
   =================================== */

.hero {
  background: linear-gradient(135deg, #1a4a6d 0%, #2c5f8d 50%, #4a7ba7 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
  opacity: 0.3;
}

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

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

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

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-indicators span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ===================================
   PAGE HERO
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #2c5f8d 0%, #4a7ba7 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

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

.problem-solution {
  padding: 60px 20px;
  background: white;
}

.content-wrapper {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.problem,
.solution {
  flex: 1;
  min-width: 280px;
  padding: 32px;
  border-radius: 12px;
}

.problem {
  background: #f8f9fa;
  border-left: 4px solid #d67d2a;
}

.solution {
  background: #e8f4f8;
  border-left: 4px solid #1a4a6d;
}

/* ===================================
   SERVICES SECTIONS
   =================================== */

.services-overview,
.services-detailed {
  padding: 60px 20px;
  background: #f8f9fa;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  max-width: 700px;
  margin: 0 auto 48px;
}

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

.service-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  box-shadow: 0 2px 12px rgba(26, 74, 109, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}

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

.service-card h3 {
  color: #1a4a6d;
  margin-bottom: 16px;
  font-size: 22px;
}

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

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #d67d2a;
  margin: 16px 0;
}

.service-detail {
  background: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(26, 74, 109, 0.08);
}

.service-detail h2 {
  color: #1a4a6d;
  border-bottom: 3px solid #d67d2a;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.service-detail h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  color: #2c5f8d;
}

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

.service-detail ul li {
  margin-bottom: 12px;
  padding-left: 8px;
  position: relative;
}

.service-detail ul li::marker {
  color: #1a4a6d;
}

.service-price {
  display: inline-block;
  background: #e8f4f8;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  color: #1a4a6d;
  margin: 16px 0 24px;
}

/* ===================================
   PROCESS SECTION
   =================================== */

.process {
  padding: 60px 20px;
  background: white;
}

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

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

.step {
  flex: 1;
  min-width: 240px;
  padding: 32px 24px;
  background: #f8f9fa;
  border-radius: 12px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a4a6d 0%, #2c5f8d 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(26, 74, 109, 0.2);
}

.step h3 {
  margin-bottom: 16px;
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.benefits {
  padding: 60px 20px;
  background: #e8f4f8;
}

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

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

.benefit {
  flex: 1;
  min-width: 260px;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26, 74, 109, 0.08);
  margin-bottom: 20px;
}

.benefit h3 {
  color: #1a4a6d;
  margin-bottom: 16px;
  font-size: 20px;
}

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

.testimonials {
  padding: 60px 20px;
  background: white;
}

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

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

.testimonial-card {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  box-shadow: 0 4px 16px rgba(26, 74, 109, 0.1);
  border-left: 4px solid #d67d2a;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

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

.client-name {
  color: #1a4a6d;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  margin-top: auto;
}

.testimonial {
  background: #f8f9fa;
  border-left: 4px solid #d67d2a;
  padding: 24px;
  margin: 24px 0;
  font-style: italic;
  color: #2c3e50;
  border-radius: 8px;
}

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

.stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a4a6d 0%, #2c5f8d 100%);
  color: white;
}

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

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

.stat {
  flex: 1;
  min-width: 200px;
  padding: 24px;
}

.stat h3 {
  font-size: 48px;
  color: #d67d2a;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

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

.cta-final {
  padding: 80px 20px;
  text-align: center;
  background: #e8f4f8;
}

.cta-final h2 {
  margin-bottom: 24px;
}

.cta-final p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
  color: #5a6c7d;
}

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

.story,
.mission-vision,
.team,
.certifications,
.approach {
  padding: 60px 20px;
}

.story {
  background: white;
}

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

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.8;
}

.mission-vision {
  background: #f8f9fa;
}

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

.mvv-item {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26, 74, 109, 0.08);
}

.mvv-item h3 {
  color: #1a4a6d;
  margin-bottom: 16px;
  border-bottom: 2px solid #d67d2a;
  padding-bottom: 12px;
}

.mvv-item ul {
  margin-left: 20px;
}

.mvv-item ul li {
  margin-bottom: 8px;
}

.team {
  background: white;
}

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

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

.team-member {
  flex: 1;
  min-width: 260px;
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(26, 74, 109, 0.08);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 74, 109, 0.15);
}

.team-member h3 {
  color: #1a4a6d;
  margin-bottom: 8px;
}

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

.certifications {
  background: #e8f4f8;
}

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

.cert-list {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26, 74, 109, 0.08);
}

.cert-list li {
  padding: 16px;
  border-bottom: 1px solid #e8f4f8;
  font-weight: 500;
  color: #2c5f8d;
}

.cert-list li:last-child {
  border-bottom: none;
}

.approach {
  background: white;
}

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

.approach > p,
.approach h3 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.approach ul {
  max-width: 800px;
  margin: 24px auto;
  padding-left: 40px;
}

.approach ul li {
  margin-bottom: 12px;
  color: #34495e;
}

/* ===================================
   PORTFOLIO/CASE STUDIES
   =================================== */

.case-studies {
  padding: 60px 20px;
  background: #f8f9fa;
}

.case-study {
  background: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(26, 74, 109, 0.08);
  border-left: 4px solid #1a4a6d;
}

.case-study h2 {
  color: #1a4a6d;
  margin-bottom: 16px;
}

.client-type {
  color: #d67d2a;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.case-study p {
  margin-bottom: 16px;
}

.case-study strong {
  color: #1a4a6d;
  font-weight: 600;
}

/* ===================================
   BLOG SECTION
   =================================== */

.blog-grid {
  padding: 60px 20px;
  background: #f8f9fa;
}

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

.article-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  box-shadow: 0 2px 12px rgba(26, 74, 109, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 74, 109, 0.15);
}

.article-card h2 {
  font-size: 22px;
  color: #1a4a6d;
  margin-bottom: 16px;
}

.meta {
  color: #7f8c8d;
  font-size: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e8f4f8;
}

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

.contact-info {
  padding: 60px 20px;
  background: white;
}

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

.contact-card {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(26, 74, 109, 0.08);
}

.contact-card h3 {
  color: #1a4a6d;
  margin-bottom: 16px;
  font-size: 20px;
}

.contact-card p {
  margin-bottom: 8px;
}

.note {
  color: #7f8c8d;
  font-size: 14px;
  font-style: italic;
}

.contact-form-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26, 74, 109, 0.08);
}

.form-note {
  background: #e8f4f8;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #1a4a6d;
  font-weight: 500;
}

/* ===================================
   FAQ SECTIONS
   =================================== */

.faq,
.faq-short {
  padding: 60px 20px;
  background: white;
}

.faq h2,
.faq-short h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 4px solid #2c5f8d;
}

.faq-item h3 {
  color: #1a4a6d;
  margin-bottom: 16px;
  font-size: 20px;
}

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

.legal-content {
  padding: 60px 20px;
  background: white;
}

.legal-section {
  max-width: 800px;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e8f4f8;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  color: #1a4a6d;
  margin-bottom: 24px;
}

.legal-section h3 {
  color: #2c5f8d;
  margin-top: 24px;
  margin-bottom: 16px;
}

.legal-section ul {
  margin-left: 32px;
}

.legal-section ul li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-section a {
  color: #1a4a6d;
  text-decoration: underline;
}

.legal-section a:hover {
  color: #2c5f8d;
}

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

.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a4a6d 0%, #2c5f8d 100%);
  color: white;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  color: #d67d2a;
  font-weight: 700;
}

.thank-you-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.next-steps {
  padding: 60px 20px;
  background: white;
}

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

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

.steps-grid .step {
  background: #f8f9fa;
  flex: 1;
  min-width: 220px;
}

.additional-resources {
  padding: 60px 20px;
  background: #f8f9fa;
}

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

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

.resource-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(26, 74, 109, 0.08);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 74, 109, 0.15);
}

.resource-card h3 {
  margin-bottom: 16px;
}

/* ===================================
   FOOTER - PROFESSIONAL
   =================================== */

footer {
  background: linear-gradient(135deg, #1a4a6d 0%, #2c5f8d 100%);
  color: white;
  padding: 60px 20px 24px;
}

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

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 12px;
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a4a6d 0%, #2c5f8d 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: white;
  color: #1a4a6d;
}

.cookie-accept:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

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

.cookie-settings {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

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

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

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

.cookie-modal-content {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

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

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

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

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

.cookie-toggle.active {
  background: #1a4a6d;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  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-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

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

  /* Navigation */
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Header */
  .header-content {
    justify-content: space-between;
  }

  /* Hero */
  .hero {
    padding: 60px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  /* Content wrappers */
  .content-wrapper,
  .services-grid,
  .process-steps,
  .benefits-grid,
  .stats-grid,
  .team-grid,
  .mvv-grid,
  .contact-methods,
  .articles-grid,
  .steps-grid,
  .resources-grid {
    flex-direction: column;
  }

  /* Cards */
  .service-card,
  .step,
  .benefit,
  .stat,
  .team-member,
  .mvv-item,
  .contact-card,
  .article-card,
  .resource-card {
    min-width: 100%;
  }

  /* Sections */
  .section {
    padding: 32px 16px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  /* Modal */
  .cookie-modal-content {
    padding: 24px;
    margin: 20px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }

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

  .services-grid,
  .benefits-grid {
    justify-content: flex-start;
  }

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

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

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

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

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

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #1a4a6d;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }

  body {
    background: white;
  }

  .section,
  .hero {
    page-break-inside: avoid;
  }
}