/* ===================================
   MISTY VISTAS - NATURE ORGANIC DESIGN
   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;
  line-height: 1.7;
  color: #2c3e2e;
  background-color: #fdfcf8;
  overflow-x: hidden;
}

/* ===================================
   NATURE ORGANIC TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a3d52;
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #3d4f3f;
}

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

a:hover {
  color: #d67d2e;
}

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

li {
  margin-bottom: 8px;
  color: #3d4f3f;
}

strong {
  font-weight: 600;
  color: #1a3d52;
}

em {
  font-style: italic;
  color: #5a6b5c;
}

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

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

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

header {
  background-color: rgba(253, 252, 248, 0.97);
  box-shadow: 0 2px 8px rgba(26, 61, 82, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #e8f5e1;
}

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

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

.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #2c3e2e;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  color: #4a7fa3;
  background-color: #e8f5e1;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #d67d2e;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.header-cta {
  display: flex;
  align-items: center;
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #4a7fa3;
  color: #fdfcf8;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(74, 127, 163, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #d67d2e;
  transform: scale(1.1);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #4a7fa3 0%, #2c5f7c 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.mobile-nav a {
  color: #fdfcf8;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background-color: #d67d2e;
  color: #fdfcf8;
  transform: translateX(8px);
}

/* ===================================
   BUTTONS - ORGANIC STYLE
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #4a7fa3;
  color: #fdfcf8;
  border-color: #4a7fa3;
}

.btn-primary:hover {
  background-color: #2c5f7c;
  border-color: #2c5f7c;
  color: #fdfcf8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 127, 163, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #4a7fa3;
  border-color: #4a7fa3;
}

.btn-secondary:hover {
  background-color: #4a7fa3;
  color: #fdfcf8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 127, 163, 0.3);
}

/* ===================================
   HERO SECTIONS
   =================================== */

.hero {
  background: linear-gradient(135deg, #e8f5e1 0%, #d4e8d0 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 50% 50% / 0 0 30px 30px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(74, 127, 163, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background-color: rgba(214, 125, 46, 0.08);
  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: #1a3d52;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

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

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

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 16px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  color: #3d4f3f;
  backdrop-filter: blur(10px);
}

.badge strong {
  display: block;
  font-size: 24px;
  color: #4a7fa3;
  margin-bottom: 4px;
}

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

.hero-internal {
  background: linear-gradient(135deg, #d4e8d0 0%, #c5dfc2 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-radius: 0 0 30px 30px;
  position: relative;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: #5a6b5c;
}

.breadcrumb a {
  color: #4a7fa3;
}

.breadcrumb a:hover {
  color: #d67d2e;
}

.last-updated {
  font-size: 14px;
  color: #5a6b5c;
  font-style: italic;
  margin-top: 8px;
}

/* ===================================
   SECTIONS - ORGANIC SPACING
   =================================== */

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5a6b5c;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===================================
   VALUE PROPOSITION
   =================================== */

.value-proposition {
  background-color: #fdfcf8;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1a3d52;
}

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

.value-item {
  flex: 1 1 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(26, 61, 82, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #e8f5e1;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(74, 127, 163, 0.15);
  border-color: #4a7fa3;
}

.value-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(74, 127, 163, 0.3));
}

.value-item h3 {
  color: #1a3d52;
  margin-bottom: 12px;
  font-size: 20px;
}

.value-item p {
  color: #5a6b5c;
  font-size: 15px;
  line-height: 1.6;
}

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

.services-overview {
  background: linear-gradient(135deg, #f8fdf5 0%, #eef7eb 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

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

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  flex: 1 1 340px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4a7fa3 0%, #d67d2e 100%);
  border-radius: 20px 20px 0 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(74, 127, 163, 0.2);
  border-color: #4a7fa3;
}

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

.service-card p {
  color: #3d4f3f;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card .price {
  color: #d67d2e;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

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

.services-detailed {
  background-color: #fdfcf8;
}

.service-detail-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #4a7fa3;
}

.service-detail-card h2 {
  color: #1a3d52;
  margin-bottom: 20px;
}

.service-detail-card ul {
  margin: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-detail-card li {
  list-style: none;
  background-color: #e8f5e1;
  padding: 8px 16px;
  border-radius: 15px;
  color: #2c3e2e;
  font-size: 14px;
  margin-bottom: 0;
}

/* ===================================
   PROCESS SECTIONS
   =================================== */

.process-overview {
  background-color: #fdfcf8;
}

.process-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.process-step {
  flex: 1 1 220px;
  background-color: #ffffff;
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  border-top: 4px solid #4a7fa3;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(74, 127, 163, 0.15);
}

.process-step h3 {
  color: #1a3d52;
  margin-bottom: 12px;
  font-size: 18px;
}

.process-step p {
  color: #5a6b5c;
  font-size: 15px;
  line-height: 1.6;
}

/* ===================================
   PROCESS DETAILED
   =================================== */

.process-detailed {
  background-color: #fdfcf8;
}

.phase-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #d67d2e;
  transition: all 0.3s ease;
}

.phase-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(214, 125, 46, 0.15);
}

.phase-card h3 {
  color: #1a3d52;
  margin-bottom: 12px;
}

.duration {
  color: #4a7fa3;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
  display: inline-block;
  background-color: #e8f5e1;
  padding: 4px 12px;
  border-radius: 12px;
}

/* ===================================
   DUAL AUDIENCE SECTION
   =================================== */

.dual-audience {
  background: linear-gradient(135deg, #e8f5e1 0%, #d4e8d0 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.audience-column {
  flex: 1 1 400px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.audience-column:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(74, 127, 163, 0.2);
}

.audience-column h2 {
  color: #1a3d52;
  margin-bottom: 20px;
}

.audience-column ul {
  margin: 24px 0;
}

.audience-column li {
  background-color: #e8f5e1;
  padding: 10px 16px;
  border-radius: 15px;
  margin-bottom: 12px;
  list-style: none;
}

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

.testimonials {
  background: linear-gradient(135deg, #f8fdf5 0%, #eef7eb 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1a3d52;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.testimonial-card {
  flex: 1 1 450px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #4a7fa3;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 64px;
  color: #e8f5e1;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: #2c3e2e;
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.testimonial-author {
  color: #1a3d52;
  font-weight: 600;
  font-size: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #e8f5e1;
  font-style: normal;
}

.testimonial-author strong {
  display: block;
  color: #1a3d52;
  font-size: 16px;
  margin-bottom: 4px;
}

/* ===================================
   STATS BAR
   =================================== */

.stats-bar {
  background: linear-gradient(135deg, #4a7fa3 0%, #2c5f7c 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

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

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  padding: 20px;
}

.stat-item strong {
  display: block;
  font-size: 48px;
  color: #fdfcf8;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-item p {
  color: #e8f5e1;
  font-size: 16px;
  margin-bottom: 0;
}

/* ===================================
   STATS ACHIEVEMENTS
   =================================== */

.stats-achievements {
  background: linear-gradient(135deg, #e8f5e1 0%, #d4e8d0 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

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

/* ===================================
   COMPANY SECTIONS
   =================================== */

.company-story,
.mission-vision-values,
.methodology {
  background-color: #fdfcf8;
}

.mvv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.mvv-item {
  flex: 1 1 450px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #4a7fa3;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.methodology-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.method-item {
  flex: 1 1 240px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #e8f5e1;
}

.method-item:hover {
  transform: translateY(-4px);
  border-color: #4a7fa3;
  box-shadow: 0 8px 20px rgba(74, 127, 163, 0.15);
}

/* ===================================
   BUSINESS SECTIONS
   =================================== */

.business-challenges,
.solutions-business,
.business-benefits {
  background-color: #fdfcf8;
}

.solution-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #d67d2e;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-item {
  flex: 1 1 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(74, 127, 163, 0.15);
}

/* ===================================
   CANDIDATE SECTIONS
   =================================== */

.value-candidates,
.candidate-journey,
.services-candidates,
.candidate-profiles {
  background-color: #fdfcf8;
}

.journey-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.journey-step {
  flex: 1 1 180px;
  background-color: #ffffff;
  padding: 24px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 4px solid #d67d2e;
  position: relative;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.service-item {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #4a7fa3;
}

.profiles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.profile-category {
  flex: 1 1 300px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ===================================
   CONTACT SECTIONS
   =================================== */

.contact-options {
  background-color: #fdfcf8;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.contact-option {
  flex: 1 1 280px;
  background-color: #ffffff;
  padding: 40px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(74, 127, 163, 0.15);
}

.contact-option img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.contact-form-section {
  background: linear-gradient(135deg, #f8fdf5 0%, #eef7eb 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.form-note {
  background-color: #e8f5e1;
  padding: 16px 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  color: #2c3e2e;
  border-left: 4px solid #4a7fa3;
}

.office-location {
  background-color: #fdfcf8;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.location-info {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.team-contacts {
  background: linear-gradient(135deg, #e8f5e1 0%, #d4e8d0 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.department {
  flex: 1 1 240px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* ===================================
   INDUSTRIES
   =================================== */

.industries {
  background: linear-gradient(135deg, #f8fdf5 0%, #eef7eb 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.industry-list span {
  background-color: #4a7fa3;
  color: #fdfcf8;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.industry-list span:hover {
  background-color: #d67d2e;
  transform: scale(1.05);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
  background-color: #fdfcf8;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background-color: #ffffff;
  padding: 28px 32px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #4a7fa3;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 16px rgba(74, 127, 163, 0.15);
  transform: translateX(4px);
}

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

.faq-item p {
  color: #3d4f3f;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===================================
   LEGAL CONTENT
   =================================== */

.legal-content {
  background-color: #fdfcf8;
}

.legal-section {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.legal-section h2 {
  color: #1a3d52;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-section h3 {
  color: #4a7fa3;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-section ul {
  margin: 20px 0;
}

.legal-section li {
  margin-bottom: 12px;
  padding-left: 8px;
}

/* ===================================
   QUALITY ASSURANCE
   =================================== */

.quality-assurance {
  background: linear-gradient(135deg, #e8f5e1 0%, #d4e8d0 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

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

.quality-assurance ul {
  max-width: 700px;
  margin: 0 auto;
}

.quality-assurance li {
  background-color: #ffffff;
  padding: 16px 20px;
  border-radius: 15px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  list-style: none;
  border-left: 4px solid #4a7fa3;
}

/* ===================================
   CONFIRMATION SECTIONS
   =================================== */

.confirmation-icon {
  width: 80px;
  height: 80px;
  background-color: #4a7fa3;
  color: #fdfcf8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(74, 127, 163, 0.3);
}

.confirmation-message,
.next-steps,
.while-you-wait,
.contact-reminder {
  background-color: #fdfcf8;
}

.steps-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step-item,
.suggestion {
  flex: 1 1 240px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.cta-home {
  text-align: center;
  margin-top: 40px;
}

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

.final-cta {
  background: linear-gradient(135deg, #4a7fa3 0%, #2c5f7c 100%);
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.final-cta h2 {
  color: #fdfcf8;
  margin-bottom: 20px;
}

.final-cta p {
  color: #e8f5e1;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.trust-line,
.contact-info,
.response-time {
  color: #e8f5e1;
  font-size: 14px;
  margin-top: 24px;
}

/* ===================================
   FOOTER - ORGANIC STYLE
   =================================== */

footer {
  background: linear-gradient(135deg, #2c3e2e 0%, #1a3d52 100%);
  color: #e8f5e1;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

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

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

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

.footer-section p {
  color: #c5dfc2;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

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

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

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

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

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

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

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e2e 0%, #1a3d52 100%);
  color: #fdfcf8;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}

#cookie-consent.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 400px;
}

.cookie-text p {
  color: #e8f5e1;
  margin-bottom: 8px;
  font-size: 15px;
}

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

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

.cookie-btn-accept {
  background-color: #4a7fa3;
  color: #fdfcf8;
}

.cookie-btn-accept:hover {
  background-color: #2c5f7c;
  transform: scale(1.05);
}

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

.cookie-btn-reject:hover {
  background-color: rgba(232, 245, 225, 0.1);
}

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

.cookie-btn-settings:hover {
  background-color: #d67d2e;
  color: #fdfcf8;
}

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

#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 62, 46, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
}

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

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

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

.cookie-modal-header h3 {
  color: #1a3d52;
  font-size: 24px;
}

.cookie-modal-close {
  background-color: transparent;
  border: none;
  font-size: 28px;
  color: #5a6b5c;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #e8f5e1;
  color: #1a3d52;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 15px;
  border: 2px solid #e8f5e1;
}

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

.cookie-category h4 {
  color: #1a3d52;
  font-size: 18px;
  margin-bottom: 0;
}

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

.cookie-toggle.active {
  background-color: #4a7fa3;
}

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

.cookie-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #fdfcf8;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.cookie-category p {
  color: #5a6b5c;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-modal-btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.cookie-modal-btn-save {
  background-color: #4a7fa3;
  color: #fdfcf8;
}

.cookie-modal-btn-save:hover {
  background-color: #2c5f7c;
  transform: translateY(-2px);
}

.cookie-modal-btn-accept-all {
  background-color: #d67d2e;
  color: #fdfcf8;
}

.cookie-modal-btn-accept-all:hover {
  background-color: #c56d25;
  transform: translateY(-2px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
  }
  
  /* Grids */
  .value-grid,
  .services-grid,
  .stats-grid,
  .benefits-grid,
  .contact-grid {
    gap: 20px;
  }
  
  .value-item,
  .service-card,
  .benefit-item,
  .contact-option {
    flex: 1 1 100%;
  }
  
  /* Process Timeline */
  .process-timeline {
    flex-direction: column;
  }
  
  .process-step {
    flex: 1 1 100%;
  }
  
  /* Dual Audience */
  .audience-column {
    flex: 1 1 100%;
  }
  
  /* Testimonials */
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-modal-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  
  .container {
    padding: 0 32px;
  }
  
  .value-item,
  .service-card {
    flex: 1 1 45%;
  }
  
  .benefit-item,
  .contact-option {
    flex: 1 1 45%;
  }
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ===================================
   ACCESSIBILITY
   =================================== */

:focus {
  outline: 3px solid #4a7fa3;
  outline-offset: 2px;
}

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

/* Skip to main content */
.skip-to-main {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 24px;
  background-color: #4a7fa3;
  color: #fdfcf8;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-to-main:focus {
  left: 0;
}

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  .btn {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}

/* ===================================
   END OF STYLES
   =================================== */