/* ============================================
   VITABALANCE - INDUSTRIAL MODERN DESIGN
   Complete CSS Styles for All Pages
   ============================================ */

/* === CSS RESET & BASE === */
* {
  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: #1a1a1a;
  background-color: #f5f5f5;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

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

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

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

li {
  margin-bottom: 8px;
}

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

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

/* === HEADER === */
header {
  background: linear-gradient(135deg, #1a4d2e 0%, #2D7A4F 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #D68A3D;
  border-bottom-color: #D68A3D;
  transform: translateY(-2px);
}

/* === MOBILE MENU TOGGLE === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 2000;
  background: #1a4d2e;
  color: #ffffff;
  border: none;
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1a4d2e 0%, #2D7A4F 100%);
  z-index: 1999;
  padding: 80px 24px 24px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #ffffff;
  color: #1a4d2e;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D68A3D;
  border-left-color: #D68A3D;
  padding-left: 24px;
  background: rgba(255, 255, 255, 0.1);
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #1a4d2e 0%, #2D7A4F 50%, #52B788 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #D68A3D;
  color: #ffffff;
  border-color: #D68A3D;
}

.btn-primary:hover {
  background: #b97530;
  border-color: #b97530;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(214, 138, 61, 0.4);
}

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

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

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

.trust-badge {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px;
}

/* === SECTIONS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

section h2 {
  text-align: center;
  color: #1a4d2e;
  margin-bottom: 16px;
  font-size: 32px;
}

/* === VALUE PROPOSITION === */
.value-proposition {
  background: #ffffff;
}

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

.benefit-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 32px 24px;
  border-left: 4px solid #D68A3D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #1a4d2e;
  transition: height 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-card h3 {
  color: #1a4d2e;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

/* === SERVICES PREVIEW === */
.services-preview {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

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

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px 24px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D68A3D 0%, #1a4d2e 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: #D68A3D;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(214, 138, 61, 0.2);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card h3 {
  color: #1a4d2e;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* === SERVICES DETAIL === */
.services-detail {
  background: #ffffff;
}

.service-item {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 40px 32px;
  margin-bottom: 32px;
  border-left: 6px solid #D68A3D;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(26, 77, 46, 0.1);
  font-family: 'Montserrat', sans-serif;
}

.service-item h2 {
  color: #1a4d2e;
  text-align: left;
  margin-bottom: 12px;
  font-size: 28px;
}

.service-price {
  color: #D68A3D;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.service-item .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* === PROCESS / STEPS === */
.process {
  background: #ffffff;
}

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

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid #D68A3D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-top-color: #1a4d2e;
}

.step h3 {
  color: #1a4d2e;
  font-size: 18px;
  margin-bottom: 8px;
}

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

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(135deg, #1a4d2e 0%, #2D7A4F 100%);
  color: #ffffff;
  padding: 60px 20px;
}

.testimonials h2 {
  color: #ffffff;
}

.testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #D68A3D;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #1a1a1a;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
}

.testimonial-card .author {
  color: #1a4d2e;
  font-weight: 700;
  font-style: normal;
  margin-top: 8px;
  font-size: 14px;
}

/* === STATS === */
.stats {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 60px 20px;
}

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

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

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #D68A3D;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.stat-label {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #1a4d2e 0%, #2D7A4F 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

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

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* === STORY & MISSION === */
.story,
.mission-vision,
.values {
  background: #ffffff;
}

.story p,
.mission-card p,
.value-card p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.mission-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.mission-card,
.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 32px 24px;
  border-top: 4px solid #D68A3D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.mission-card h3,
.value-card h3 {
  color: #1a4d2e;
  font-size: 22px;
  margin-bottom: 12px;
  text-align: left;
}

.mission-card p,
.value-card p {
  text-align: left;
  margin: 0;
}

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

/* === TEAM === */
.team {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

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

.team-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.team-card:hover {
  border-color: #D68A3D;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(214, 138, 61, 0.2);
}

.team-card h3 {
  color: #1a4d2e;
  font-size: 22px;
  margin-bottom: 4px;
}

.team-card .role {
  color: #D68A3D;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

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

/* === TIPS & BLOG === */
.tips-categories,
.blog-categories {
  background: #ffffff;
}

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

.category-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background: linear-gradient(135deg, #1a4d2e 0%, #2D7A4F 100%);
  color: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(214, 138, 61, 0.3);
}

.category-card h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 8px;
}

.category-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

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

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

.category-tag:hover,
.category-tag.active {
  background: #D68A3D;
  color: #ffffff;
  border-color: #D68A3D;
  transform: translateY(-2px);
}

/* === FEATURED TIPS & POSTS === */
.featured-tips,
.featured-post {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 60px 20px;
}

.tips-grid,
.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.tip-card,
.post-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

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

.tip-category,
.post-category {
  display: inline-block;
  padding: 6px 12px;
  background: #D68A3D;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  align-self: flex-start;
}

.post-label {
  display: inline-block;
  padding: 8px 16px;
  background: #1a4d2e;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.tip-card h3,
.post-card h3 {
  color: #1a4d2e;
  font-size: 20px;
  margin-bottom: 8px;
}

.tip-card p,
.post-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.post-meta {
  color: #999;
  font-size: 13px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}

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

.featured-post h2 {
  text-align: left;
  color: #1a4d2e;
  font-size: 32px;
  margin-bottom: 16px;
}

.featured-post .post-category {
  margin-bottom: 16px;
}

/* === QUICK TIPS === */
.quick-tips {
  background: #ffffff;
}

.quick-tips-list {
  max-width: 700px;
  margin: 32px auto;
  padding-left: 0;
  list-style: none;
}

.quick-tips-list li {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 16px 20px 16px 52px;
  margin-bottom: 16px;
  border-left: 4px solid #D68A3D;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.quick-tips-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: #D68A3D;
  font-size: 20px;
  font-weight: 900;
}

/* === SUCCESS STORIES === */
.featured-story,
.success-stories-grid {
  background: #ffffff;
}

.story-label {
  display: inline-block;
  padding: 8px 16px;
  background: #D68A3D;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.story-meta {
  margin-bottom: 32px;
  padding: 16px;
  background: #f5f5f5;
  border-left: 4px solid #1a4d2e;
}

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

.story-content h3 {
  color: #1a4d2e;
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.story-content ul {
  margin-top: 16px;
  margin-bottom: 24px;
}

.story-content li {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

blockquote {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-left: 4px solid #D68A3D;
  padding: 24px 24px 24px 32px;
  margin: 32px 0;
  font-style: italic;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.story-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 32px 24px;
  border-top: 4px solid #D68A3D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.story-card h3 {
  color: #1a4d2e;
  font-size: 20px;
  margin-bottom: 8px;
}

.story-goal {
  color: #D68A3D;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* === CONTACT === */
.contact-methods,
.contact-info,
.faq {
  background: #ffffff;
}

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

.contact-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 40px 32px;
  text-align: center;
  border-top: 4px solid #D68A3D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

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

.contact-card h3 {
  color: #1a4d2e;
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.location-details {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-left: 4px solid #1a4d2e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-details h3 {
  color: #1a4d2e;
  margin-top: 24px;
  margin-bottom: 12px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 24px;
  padding: 24px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-left: 4px solid #D68A3D;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.faq-item p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

/* === THANK YOU PAGE === */
.thank-you-hero {
  background: linear-gradient(135deg, #1a4d2e 0%, #2D7A4F 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #D68A3D;
  color: #ffffff;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(214, 138, 61, 0.4);
}

.confirmation-details,
.next-steps,
.testimonial {
  background: #ffffff;
}

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

.action-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid #D68A3D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.action-card h3 {
  color: #1a4d2e;
  font-size: 22px;
}

.action-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.note {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 16px;
  background: #fff3cd;
  border-left: 4px solid #D68A3D;
  color: #856404;
  font-size: 14px;
}

/* === LEGAL CONTENT === */
.legal-content {
  background: #ffffff;
  padding: 60px 20px;
}

.legal-content h1 {
  color: #1a4d2e;
  margin-bottom: 24px;
}

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

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

.legal-content p,
.legal-content li {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  max-width: 900px;
}

.legal-content ul {
  margin-top: 16px;
  margin-bottom: 24px;
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, #1a4d2e 0%, #2D7A4F 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-section h3 {
  color: #D68A3D;
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
}

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

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

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

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

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

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a4d2e 0%, #2D7A4F 100%);
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner p {
  flex: 1 1 300px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  margin: 0;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}

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

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

.cookie-modal h2 {
  color: #1a4d2e;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-modal h3 {
  color: #2D7A4F;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #f5f5f5;
  margin-bottom: 12px;
  border-radius: 4px;
}

.cookie-toggle label {
  color: #333;
  font-weight: 600;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

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

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  /* Typography scaling */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  header {
    padding: 12px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Section padding */
  section {
    margin-bottom: 40px;
    padding: 32px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Grids to single column */
  .benefits-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .mission-grid,
  .values-grid,
  .team-grid,
  .categories-grid,
  .tips-grid,
  .posts-grid,
  .contact-grid,
  .stories-grid,
  .actions-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .mission-card,
  .value-card,
  .team-card,
  .category-card,
  .tip-card,
  .post-card,
  .contact-card,
  .story-card,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Stats grid */
  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Service items */
  .service-number {
    font-size: 32px;
    top: 12px;
    right: 12px;
  }
  
  .service-item {
    padding: 24px 16px;
  }
  
  /* Story content */
  .story-content,
  .featured-post .post-content {
    padding: 0 16px;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
    margin: 16px;
  }
  
  /* Legal content */
  .legal-content {
    padding: 40px 16px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 { font-size: 28px; }
  
  .stat-number { font-size: 36px; }
  
  .service-price { font-size: 20px; }
  
  .cookie-modal-content {
    padding: 20px;
  }
}

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

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

/* === PRINT STYLES === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header,
  footer {
    background: #ffffff;
    color: #000000;
  }
  
  a {
    color: #000000;
  }
}