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

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, 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 {
  list-style: none;
}

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

/* ============================================
   TYPOGRAPHY - PROFESSIONAL CORPORATE
   ============================================ */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

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

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

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

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

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

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 0;
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  padding: 12px 20px;
  color: #2C3E50;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 20px;
  right: 20px;
  height: 2px;
  background-color: #8B7BA8;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  color: #8B7BA8;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

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

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #2C3E50;
  color: #FFFFFF;
  font-size: 24px;
  border-radius: 4px;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #8B7BA8;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #2C3E50;
  z-index: 1100;
  padding: 80px 20px 40px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  padding: 16px 20px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

/* ============================================
   BUTTONS - PROFESSIONAL CORPORATE
   ============================================ */

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

.btn-primary {
  background-color: #8B7BA8;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(139, 123, 168, 0.25);
}

.btn-primary:hover {
  background-color: #7A6A97;
  box-shadow: 0 6px 16px rgba(139, 123, 168, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #2C3E50;
  border: 2px solid #2C3E50;
}

.btn-secondary:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
}

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

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

.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #3D5A80 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

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

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

.hero-internal {
  background-color: #F0F4F8;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 3px solid #8B7BA8;
}

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

.hero-internal .subheadline {
  font-size: 18px;
  color: #4A5568;
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs {
  font-size: 14px;
  color: #718096;
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: #8B7BA8;
  font-weight: 600;
}

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

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

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

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

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

/* ============================================
   VALUE PROPOSITION - FLEXBOX GRID
   ============================================ */

.value-proposition {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.value-card {
  flex: 1 1 280px;
  max-width: 320px;
  background-color: #F8F9FA;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(139, 123, 168, 0.15);
  border-color: #8B7BA8;
}

.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2C3E50;
}

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

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

.services-preview,
.services-detailed {
  padding: 60px 20px;
  background-color: #F8F9FA;
  margin-bottom: 60px;
}

.services-grid,
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.service-expanded {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.service-expanded:hover {
  box-shadow: 0 8px 24px rgba(139, 123, 168, 0.15);
  transform: translateY(-4px);
}

.service-card h3,
.service-expanded h3 {
  font-size: 22px;
  color: #2C3E50;
  margin-bottom: 12px;
}

.service-card p,
.service-expanded p {
  flex-grow: 1;
  color: #4A5568;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #E2E8F0;
  margin-top: 16px;
}

.service-meta .price {
  font-weight: 700;
  font-size: 20px;
  color: #8B7BA8;
}

.service-meta .duration {
  font-size: 14px;
  color: #718096;
}

.service-details {
  background-color: #F8F9FA;
  padding: 20px;
  border-radius: 4px;
  margin: 16px 0;
}

.service-details p {
  margin-bottom: 12px;
  font-size: 15px;
}

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

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

.process-steps,
.stages,
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step,
.stage,
.timeline-step {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: #F8F9FA;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover,
.stage:hover,
.timeline-step:hover {
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(139, 123, 168, 0.12);
}

.step-number {
  display: inline-block;
  width: 56px;
  height: 56px;
  background-color: #8B7BA8;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3,
.stage h3,
.timeline-step h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.timing {
  display: block;
  font-size: 13px;
  color: #8B7BA8;
  font-weight: 600;
  margin-top: 12px;
}

/* ============================================
   TESTIMONIALS - FLEXBOX WITH PROPER CONTRAST
   ============================================ */

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

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

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

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid #E2E8F0;
}

.testimonial-author strong {
  font-size: 16px;
  color: #2C3E50;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 14px;
  color: #718096;
}

/* ============================================
   CONTACT METHODS - FLEXBOX GRID
   ============================================ */

.contact-methods {
  padding: 60px 20px;
  background-color: #F8F9FA;
  margin-bottom: 60px;
}

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

.contact-card,
.contact-item {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-card:hover,
.contact-item:hover {
  box-shadow: 0 6px 20px rgba(139, 123, 168, 0.15);
  transform: translateY(-4px);
}

.contact-card img,
.contact-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.contact-card h3,
.contact-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2C3E50;
}

.contact-detail {
  font-weight: 700;
  font-size: 16px;
  color: #8B7BA8;
  margin-bottom: 8px;
}

.availability {
  font-size: 13px;
  color: #718096;
  margin-top: 8px;
}

/* ============================================
   STATS & ACHIEVEMENTS - FLEXBOX
   ============================================ */

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

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

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

.stat-card {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background-color: rgba(139, 123, 168, 0.2);
  transform: scale(1.05);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #E8C468;
  margin-bottom: 12px;
}

.stat-card p {
  font-size: 16px;
  color: #E0E7EE;
}

/* ============================================
   BLOG & ARTICLES - FLEXBOX GRID
   ============================================ */

.blog-grid,
.blog-categories {
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

.article-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(139, 123, 168, 0.15);
  transform: translateY(-4px);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.article-meta .category {
  background-color: #8B7BA8;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.article-meta .date {
  font-size: 13px;
  color: #718096;
}

.article-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.read-more {
  color: #8B7BA8;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
  display: inline-block;
}

.read-more:hover {
  color: #7A6A97;
  text-decoration: underline;
}

/* ============================================
   CATEGORIES - FLEXBOX
   ============================================ */

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

.category-tag {
  padding: 10px 20px;
  background-color: #FFFFFF;
  color: #2C3E50;
  border: 2px solid #E2E8F0;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-tag:hover,
.category-tag.active {
  background-color: #8B7BA8;
  color: #FFFFFF;
  border-color: #8B7BA8;
}

/* ============================================
   FORMS - PROFESSIONAL STYLING
   ============================================ */

.contact-form-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  font-size: 14px;
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-field {
  padding: 14px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #F8F9FA;
}

.input-field:focus {
  outline: none;
  border-color: #8B7BA8;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(139, 123, 168, 0.1);
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

.checkbox-field {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-field input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-field label {
  text-transform: none;
  font-weight: 400;
  flex: 1;
}

.checkbox-field a {
  color: #8B7BA8;
  text-decoration: underline;
}

/* ============================================
   NEWSLETTER - FLEXBOX
   ============================================ */

.newsletter {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.newsletter h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.newsletter p {
  color: #E0E7EE;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto 16px;
}

.email-input {
  flex: 1 1 280px;
  padding: 14px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 4px;
  font-size: 16px;
}

.privacy-note {
  font-size: 13px;
  color: #CBD5E0;
  margin-top: 12px;
}

/* ============================================
   FAQ - FLEXBOX
   ============================================ */

.faq {
  padding: 60px 20px;
  background-color: #F8F9FA;
  margin-bottom: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  border-left: 4px solid #8B7BA8;
}

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

.faq-item p {
  color: #4A5568;
}

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

.cta-section {
  background: linear-gradient(135deg, #8B7BA8 0%, #7A6A97 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-section h2 {
  color: #FFFFFF;
  font-size: 32px;
  margin-bottom: 16px;
}

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

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

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

.legal-content .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
}

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

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

.legal-content li {
  margin-bottom: 8px;
  color: #4A5568;
}

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

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

.thank-you-section {
  padding: 100px 20px;
  text-align: center;
  background-color: #F8F9FA;
  margin-bottom: 60px;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #48BB78;
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thank-you-content h1 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #2C3E50;
}

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

.what-happens-next {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

.next-steps {
  margin-top: 32px;
  padding: 24px;
  background-color: #F0F4F8;
  border-radius: 8px;
  border-left: 4px solid #8B7BA8;
}

.explore-content {
  padding: 60px 20px;
  background-color: #F8F9FA;
  margin-bottom: 60px;
}

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

.suggestion-card {
  flex: 1 1 280px;
  max-width: 340px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.reassurance-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background-color: #E8F4F8;
  border-left: 4px solid #8B7BA8;
  border-radius: 8px;
}

.reassurance-box p {
  color: #2C3E50;
  margin-bottom: 12px;
}

/* ============================================
   METHODS & PRINCIPLES - FLEXBOX
   ============================================ */

.methods,
.principles {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.methods-grid,
.principles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.method-card,
.principle,
.approach-card {
  flex: 1 1 260px;
  max-width: 300px;
  background-color: #FFFFFF;
  padding: 28px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.method-card:hover,
.principle:hover,
.approach-card:hover {
  box-shadow: 0 6px 20px rgba(139, 123, 168, 0.15);
  transform: translateY(-4px);
}

.approach {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.approaches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* ============================================
   ALERTS & INFO BOXES
   ============================================ */

.alert-box,
.emergency-info {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.alert-box {
  background-color: #FFF3CD;
  border: 2px solid #FFC107;
  border-radius: 8px;
  padding: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.alert-box h2 {
  color: #2C3E50;
  font-size: 22px;
  margin-bottom: 16px;
}

.alert-box ul {
  list-style: disc;
  margin-left: 32px;
  margin-top: 16px;
}

.alert-box li {
  margin-bottom: 8px;
  color: #2C3E50;
}

/* ============================================
   LOCATION & MAP
   ============================================ */

.location-map {
  padding: 60px 20px;
  background-color: #F8F9FA;
  margin-bottom: 60px;
}

.location-details {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
}

.location-details ul {
  list-style: disc;
  margin-left: 32px;
  margin-top: 16px;
}

.location-details li {
  margin-bottom: 8px;
  color: #4A5568;
}

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

footer {
  background-color: #2C3E50;
  color: #E0E7EE;
  padding: 60px 20px 20px;
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 400px;
}

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

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

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

.cookie-btn-accept {
  background-color: #48BB78;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background-color: #38A169;
}

.cookie-btn-reject {
  background-color: #E53E3E;
  color: #FFFFFF;
}

.cookie-btn-reject:hover {
  background-color: #C53030;
}

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

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

/* ============================================
   COOKIE 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;
  animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  font-size: 24px;
  color: #718096;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #2C3E50;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2C3E50;
}

.cookie-category {
  padding: 16px;
  background-color: #F8F9FA;
  border-radius: 4px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  font-size: 16px;
  color: #2C3E50;
}

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

.cookie-toggle.active {
  background-color: #48BB78;
}

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

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

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

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

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    gap: 8px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 36px;
  }

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

  .hero .subheadline {
    font-size: 20px;
  }

  .values-grid,
  .services-grid,
  .process-steps,
  .contact-grid,
  .stats-grid,
  .articles-grid {
    justify-content: space-between;
  }

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

  .step,
  .stage {
    flex: 1 1 calc(25% - 18px);
  }

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

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */

@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }

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

  .value-card {
    flex: 1 1 calc(25% - 18px);
  }

  .service-card,
  .article-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .footer-content {
    justify-content: flex-start;
  }

  .footer-section {
    flex: 0 1 300px;
  }
}

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

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

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

  .hero .subheadline {
    font-size: 16px;
  }

  .hero {
    padding: 60px 20px;
  }

  .section {
    padding: 32px 20px;
  }

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

  .btn {
    width: 100%;
  }

  .value-card,
  .service-card,
  .step,
  .contact-card,
  .stat-card,
  .article-card,
  .testimonial-card,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .email-input {
    width: 100%;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

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

  .footer-section {
    width: 100%;
  }
}

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

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

.value-card,
.service-card,
.testimonial-card,
.article-card {
  animation: fadeInUp 0.6s ease backwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

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

:focus-visible {
  outline: 3px solid #8B7BA8;
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 3px solid #E8C468;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }

  header {
    position: static;
  }

  body {
    background-color: #FFFFFF;
  }

  .btn {
    border: 2px solid #2C3E50;
  }
}

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