/* ============================================
   BRIGHTIX CLEAN - GEOMETRIC STRUCTURED DESIGN
   Modern, Structured, Angular, Precise
   ============================================ */

/* === CSS RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

/* === GEOMETRIC TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #1E5235;
  text-transform: uppercase;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

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

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

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

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

a:hover {
  color: #1E5235;
}

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

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

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

/* === GEOMETRIC BUTTONS === */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

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

.btn-primary:hover {
  background-color: #1E5235;
  border-color: #1E5235;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 122, 79, 0.3);
}

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

.btn-secondary:hover {
  background-color: #2D7A4F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 122, 79, 0.2);
}

/* === HEADER - GEOMETRIC STRUCTURE === */
header {
  background-color: #ffffff;
  border-bottom: 4px solid #2D7A4F;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1E5235;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  border-bottom-color: #D4A500;
  color: #2D7A4F;
}

.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: #2D7A4F;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #1E5235;
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #ffffff;
  color: #1E5235;
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

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

/* === HERO SECTION - GEOMETRIC === */
.hero {
  background: linear-gradient(135deg, #1E5235 0%, #2D7A4F 100%);
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(212, 165, 0, 0.1);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  font-size: 14px;
  opacity: 0.9;
  font-style: italic;
}

/* === BENEFITS SECTION === */
.benefits {
  padding: 60px 20px;
  background-color: #ffffff;
}

.section-subtitle {
  font-size: 18px;
  color: #555555;
  margin-bottom: 40px;
  text-align: center;
}

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

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

.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: #f8f9fa;
  padding: 32px 24px;
  border: 3px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

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

.benefit-card:hover {
  border-color: #2D7A4F;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 122, 79, 0.15);
}

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

.benefit-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

.benefit-card p {
  color: #555555;
  line-height: 1.6;
}

/* === SERVICES SECTIONS === */
.services-preview,
.services-grid-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  border: 3px solid #e0e0e0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.service-card:hover {
  border-color: #2D7A4F;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(45, 122, 79, 0.2);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.service-card h3 {
  color: #1E5235;
  font-size: 22px;
}

.service-card p {
  color: #555555;
  flex-grow: 1;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2D7A4F;
  margin: 8px 0;
}

.service-card .duration {
  font-size: 14px;
  color: #888888;
  margin-bottom: 16px;
}

.view-all {
  display: inline-block;
  margin-top: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #2D7A4F;
  border-bottom: 2px solid #2D7A4F;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.view-all:hover {
  color: #1E5235;
  border-bottom-color: #D4A500;
}

/* === IMPACT METRICS === */
.impact-metrics {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2D7A4F 0%, #1E5235 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.impact-metrics::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.impact-metrics h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 16px;
}

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

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

.metric {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.metric:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #D4A500;
  transform: scale(1.05);
}

.metric-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #D4A500;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 16px;
  opacity: 0.95;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #f8f9fa;
  padding: 32px;
  border-left: 6px solid #2D7A4F;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial-card .quote {
  font-size: 18px;
  line-height: 1.6;
  color: #1a1a1a;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1E5235;
  margin-bottom: 4px;
}

.testimonial-card .role {
  font-size: 14px;
  color: #888888;
}

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

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(212, 165, 0, 0.1);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* === MISSION & VALUES === */
.mission,
.values,
.story {
  padding: 60px 20px;
}

.mission {
  background-color: #ffffff;
}

.mission h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.mission p {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  max-width: 900px;
  margin-bottom: 24px;
}

.values {
  background-color: #f8f9fa;
}

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

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

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-top: 4px solid #2D7A4F;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-top-color: #D4A500;
}

.value-card h3 {
  color: #1E5235;
  margin-bottom: 12px;
}

.value-card p {
  color: #555555;
}

.story {
  background-color: #ffffff;
}

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

.story p {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  max-width: 900px;
  margin-bottom: 20px;
}

/* === TEAM === */
.team {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

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

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

.team-member {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px 24px;
  border: 3px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.team-member:hover {
  border-color: #2D7A4F;
  box-shadow: 0 8px 24px rgba(45, 122, 79, 0.15);
  transform: translateY(-4px);
}

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

.team-member .role {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #2D7A4F;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-member p {
  color: #555555;
  font-size: 15px;
}

/* === PHILOSOPHY & CATEGORIES === */
.philosophy,
.categories {
  padding: 60px 20px;
}

.philosophy {
  background-color: #ffffff;
}

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

.philosophy .section-subtitle {
  text-align: center;
  margin-bottom: 24px;
}

.philosophy > .container > p {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

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

.criterion,
.category-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: #f8f9fa;
  padding: 32px 24px;
  border: 3px solid #e0e0e0;
  transition: all 0.3s ease;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.criterion:hover,
.category-card:hover {
  border-color: #2D7A4F;
  box-shadow: 0 8px 24px rgba(45, 122, 79, 0.15);
  transform: translateY(-4px);
}

.criterion h3,
.category-card h3 {
  color: #1E5235;
  margin-bottom: 12px;
}

.criterion p,
.category-card p {
  color: #555555;
}

.category-card .risk,
.category-card .return {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

.category-card .risk {
  color: #888888;
}

.category-card .return {
  color: #2D7A4F;
}

.categories {
  background-color: #f8f9fa;
}

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

.categories .category-card .articles {
  font-size: 14px;
  color: #888888;
  margin-top: 12px;
}

/* === RESOURCES & WORKSHOPS === */
.resources,
.workshops {
  padding: 60px 20px;
}

.resources {
  background-color: #ffffff;
}

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

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

.resource-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background-color: #f8f9fa;
  padding: 32px 24px;
  border: 3px solid #e0e0e0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.resource-card:hover {
  border-color: #2D7A4F;
  box-shadow: 0 8px 24px rgba(45, 122, 79, 0.15);
  transform: translateY(-4px);
}

.resource-card .resource-type {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #D4A500;
  letter-spacing: 1px;
}

.resource-card h3 {
  color: #1E5235;
}

.resource-card p {
  color: #555555;
  flex-grow: 1;
}

.workshops {
  background-color: #f8f9fa;
}

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

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

.workshop-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #ffffff;
  padding: 32px 24px;
  border: 3px solid #e0e0e0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.workshop-card:hover {
  border-color: #2D7A4F;
  box-shadow: 0 8px 24px rgba(45, 122, 79, 0.15);
  transform: translateY(-4px);
}

.workshop-card h3 {
  color: #1E5235;
}

.workshop-card p {
  color: #555555;
}

.workshop-card .duration,
.workshop-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.workshop-card .duration {
  color: #888888;
}

.workshop-card .price {
  color: #2D7A4F;
  font-size: 24px;
  margin-top: 8px;
}

/* === NEWSLETTER === */
.newsletter {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2D7A4F 0%, #1E5235 100%);
  color: #ffffff;
  text-align: center;
}

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

.newsletter p {
  font-size: 18px;
  margin-bottom: 24px;
  opacity: 0.95;
}

.newsletter-benefits {
  margin: 32px auto;
  max-width: 600px;
  text-align: left;
}

.newsletter-benefits p {
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 8px;
}

.subscriber-count {
  font-size: 14px;
  font-style: italic;
  opacity: 0.9;
  margin-top: 24px;
}

/* === CONTACT SECTIONS === */
.contact-options,
.office-info,
.team-contact {
  padding: 60px 20px;
}

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

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

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

.contact-option {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background-color: #f8f9fa;
  padding: 32px 24px;
  border: 3px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.contact-option:hover {
  border-color: #2D7A4F;
  box-shadow: 0 8px 24px rgba(45, 122, 79, 0.15);
  transform: translateY(-4px);
}

.contact-option img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.contact-option h3 {
  color: #1E5235;
  margin-bottom: 12px;
}

.contact-option p {
  color: #555555;
  margin-bottom: 12px;
}

.contact-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #2D7A4F;
  font-size: 16px;
  margin-top: 16px;
}

.office-info {
  background-color: #f8f9fa;
}

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

.office-info > .container > p {
  text-align: center;
  color: #555555;
  margin-bottom: 40px;
}

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

.detail {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
}

.detail h3 {
  color: #1E5235;
  margin-bottom: 12px;
}

.detail p {
  color: #555555;
  line-height: 1.8;
}

.team-contact {
  background-color: #ffffff;
}

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

/* === DISCLAIMER === */
.disclaimer {
  padding: 60px 20px;
  background-color: #fff9e6;
  border-top: 4px solid #D4A500;
  border-bottom: 4px solid #D4A500;
}

.disclaimer h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #1E5235;
}

.disclaimer p {
  color: #333333;
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

/* === SERVICE BENEFITS === */
.service-benefits {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.benefit {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: #f8f9fa;
  padding: 32px 24px;
  border-left: 6px solid #2D7A4F;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.benefit h3 {
  color: #1E5235;
  margin-bottom: 12px;
}

.benefit p {
  color: #555555;
}

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

.legal-content h1 {
  margin-bottom: 32px;
  border-bottom: 4px solid #2D7A4F;
  padding-bottom: 16px;
}

.legal-content .section-subtitle {
  text-align: left;
  font-size: 18px;
  color: #555555;
  margin-bottom: 32px;
}

.legal-content .last-updated {
  font-size: 14px;
  color: #888888;
  font-style: italic;
  margin-bottom: 32px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: #1E5235;
}

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

.legal-content p {
  color: #333333;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content a {
  color: #2D7A4F;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #1E5235;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #D4A500;
  color: #ffffff;
  font-size: 48px;
  line-height: 80px;
  margin: 0 auto 24px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

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

.thank-you-hero .hero-subtitle {
  font-size: 20px;
  opacity: 0.95;
}

.next-steps {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

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

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #f8f9fa;
  padding: 32px 24px;
  border-top: 4px solid #2D7A4F;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.step h3 {
  color: #1E5235;
  margin-bottom: 12px;
}

.step p {
  color: #555555;
}

.contact-info {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-details {
  margin: 32px 0;
}

.contact-details p {
  font-size: 16px;
  color: #333333;
  margin-bottom: 12px;
}

/* === FOOTER - GEOMETRIC === */
footer {
  background-color: #1E5235;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-top: 4px solid #D4A500;
}

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

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #D4A500;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

.footer-col a {
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 2px solid transparent;
}

.footer-col a:hover {
  color: #D4A500;
  padding-left: 8px;
  border-left-color: #D4A500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #D4A500;
}

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

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

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

.cookie-banner p {
  flex: 1 1 60%;
  min-width: 250px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.cookie-buttons .accept-all {
  background-color: #D4A500;
  color: #1E5235;
  border-color: #D4A500;
}

.cookie-buttons .accept-all:hover {
  background-color: #ffffff;
  color: #1E5235;
  border-color: #ffffff;
}

.cookie-buttons .reject-all {
  background-color: transparent;
  color: #ffffff;
}

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

.cookie-buttons .cookie-settings {
  background-color: transparent;
  color: #ffffff;
}

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

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

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #1E5235;
  cursor: pointer;
  width: 36px;
  height: 36px;
  line-height: 1;
  transition: all 0.3s ease;
}

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

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f8f9fa;
  border-left: 4px solid #2D7A4F;
}

.cookie-category h3 {
  color: #1E5235;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category p {
  color: #555555;
  margin-bottom: 12px;
  font-size: 14px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1E5235;
}

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

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

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

.cookie-modal-buttons button {
  flex: 1 1 auto;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border: 3px solid #2D7A4F;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.cookie-modal-buttons .save-preferences {
  background-color: #2D7A4F;
  color: #ffffff;
}

.cookie-modal-buttons .save-preferences:hover {
  background-color: #1E5235;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 122, 79, 0.3);
}

.cookie-modal-buttons .cancel {
  background-color: transparent;
  color: #2D7A4F;
}

.cookie-modal-buttons .cancel:hover {
  background-color: #f8f9fa;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .benefit-card,
  .service-card,
  .value-card,
  .team-member {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Layout */
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  /* Cards - Full Width on Mobile */
  .benefit-card,
  .service-card,
  .value-card,
  .category-card,
  .criterion,
  .resource-card,
  .workshop-card,
  .testimonial-card,
  .team-member,
  .contact-option,
  .detail,
  .step,
  .metric {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Grids */
  .benefits-grid,
  .services-grid,
  .values-grid,
  .criteria-grid,
  .categories-grid,
  .resources-grid,
  .workshops-grid,
  .testimonials-grid,
  .team-grid,
  .contact-grid,
  .office-details,
  .steps-grid,
  .metrics-grid {
    gap: 16px;
  }
  
  /* Buttons */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  
  /* Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-banner p {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 13px;
  }
  
  .cta-banner h2 {
    font-size: 28px;
  }
  
  .cta-banner p {
    font-size: 16px;
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

/* Apply animations */
.benefit-card,
.service-card,
.value-card,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

.mobile-menu.active {
  animation: slideInRight 0.4s ease forwards;
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* === ACCESSIBILITY === */
:focus {
  outline: 3px solid #D4A500;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #D4A500;
  outline-offset: 2px;
}

/* Skip to main content */
.skip-to-main {
  position: absolute;
  top: -100px;
  left: 0;
  background: #2D7A4F;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  z-index: 9999;
}

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

/* === PRINT STYLES === */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}