/* ===================================
   TIERFREUND BREMEN - GEOMETRIC STRUCTURED DESIGN
   CSS Reset & Base Styles
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f5f5f5;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ===================================
   GEOMETRIC STRUCTURED TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #1F3D2A;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-transform: uppercase;
  border-left: 8px solid #D4761A;
  padding-left: 20px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #D4761A 0%, #1F3D2A 100%);
  clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

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

p {
  margin-bottom: 16px;
  line-height: 1.8;
}

strong {
  font-weight: 700;
  color: #1F3D2A;
}

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

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

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

/* ===================================
   GEOMETRIC STRUCTURED HEADER
   =================================== */

header {
  background: #1F3D2A;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

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

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

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

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

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #D4761A;
  transition: width 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.main-nav a:hover::before {
  width: 100%;
}

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

.cta-button {
  background: linear-gradient(135deg, #D4761A 0%, #B86315 100%);
  color: #FFFFFF;
  padding: 12px 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button:hover {
  background: #1F3D2A;
  border-color: #D4761A;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 118, 26, 0.4);
}

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

.mobile-menu-toggle {
  display: none;
  background: #D4761A;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #1F3D2A;
  transform: rotate(90deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1F3D2A 0%, #2D5A3D 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #D4761A;
  color: #FFFFFF;
  border: none;
  font-size: 32px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(212, 118, 26, 0.2);
  border-left-color: #D4761A;
  transform: translateX(10px);
}

/* ===================================
   GEOMETRIC HERO SECTION
   =================================== */

.hero {
  background: linear-gradient(135deg, #1F3D2A 0%, #2D5A3D 50%, #1F3D2A 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(212, 118, 26, 0.1);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  transform: rotate(45deg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-30px); }
}

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

.hero h1 {
  color: #FFFFFF;
  border-left-color: #D4761A;
  font-size: 48px;
}

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

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: #D4761A;
  text-decoration: underline;
}

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

/* ===================================
   GEOMETRIC CTA BUTTONS
   =================================== */

.cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #D4761A 0%, #B86315 100%);
  color: #FFFFFF;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  box-shadow: 0 6px 20px rgba(212, 118, 26, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #B86315 0%, #D4761A 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 118, 26, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: #1F3D2A;
  transform: translateY(-3px);
}

.btn {
  background: #1F3D2A;
  color: #FFFFFF;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.btn:hover {
  background: #D4761A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ===================================
   TRUST BADGES - GEOMETRIC
   =================================== */

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

.trust-badges span {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  border-left: 3px solid #D4761A;
  backdrop-filter: blur(10px);
}

/* ===================================
   SERVICE GRID - GEOMETRIC CARDS
   =================================== */

.services {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

.service-card, .category-card, .benefit, .topic-card, .article-card {
  background: #f9f9f9;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #D4761A 0%, #1F3D2A 100%);
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(31, 61, 42, 0.15);
  border-color: #D4761A;
}

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

.service-card p {
  color: #444;
  margin-bottom: 16px;
  line-height: 1.7;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #D4761A;
  margin: 20px 0;
  font-family: 'Merriweather', serif;
}

/* ===================================
   CATEGORY CARDS - GEOMETRIC
   =================================== */

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

.category-card, .category-item, .species-card {
  background: #FFFFFF;
  padding: 40px 28px;
  text-align: center;
  border: 3px solid #1F3D2A;
  clip-path: polygon(0 5%, 5% 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover, .category-item:hover, .species-card:hover {
  background: #1F3D2A;
  color: #FFFFFF;
  transform: scale(1.05);
  border-color: #D4761A;
}

.category-card h3, .category-item h3, .species-card h3 {
  margin: 16px 0;
  transition: color 0.3s ease;
}

.category-card:hover h3, .category-item:hover h3, .species-card:hover h3 {
  color: #D4761A;
}

.category-card img, .category-item img, .species-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.category-card:hover img, .category-item:hover img, .species-card:hover img {
  filter: grayscale(0%) brightness(1.2);
  transform: scale(1.1);
}

/* ===================================
   BENEFITS SECTION - GEOMETRIC GRID
   =================================== */

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

.benefit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 32px;
  border-left: 5px solid #D4761A;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.benefit img {
  width: 60px;
  height: 60px;
  filter: brightness(0) saturate(100%) invert(24%) sepia(47%) saturate(1047%) hue-rotate(85deg) brightness(95%) contrast(92%);
}

.benefit h3 {
  color: #1F3D2A;
  font-size: 20px;
}

.benefit p {
  color: #555;
  margin: 0;
}

/* ===================================
   TESTIMONIALS - GEOMETRIC CARDS
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #1F3D2A 0%, #2D5A3D 100%);
  padding: 60px 20px;
  color: #FFFFFF;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.testimonials h2 {
  color: #FFFFFF;
}

.testimonials h2::after {
  background: linear-gradient(90deg, #D4761A 0%, #FFFFFF 100%);
}

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

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  border: 2px solid rgba(212, 118, 26, 0.3);
  clip-path: polygon(0 5%, 5% 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.testimonial-card:hover {
  background: rgba(212, 118, 26, 0.2);
  border-color: #D4761A;
  transform: translateY(-5px);
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #D4761A;
  font-style: normal;
  margin: 0;
}

/* ===================================
   CTA BANNER - GEOMETRIC
   =================================== */

.cta-banner {
  background: linear-gradient(135deg, #D4761A 0%, #B86315 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  position: relative;
  overflow: hidden;
}

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

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 36px;
}

.cta-banner h2::after {
  background: #FFFFFF;
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background: #FFFFFF;
  color: #1F3D2A;
  border: 2px solid #FFFFFF;
}

.cta-banner .btn-primary:hover {
  background: #1F3D2A;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* ===================================
   TIPS LIST - GEOMETRIC
   =================================== */

.tips {
  background: #FFFFFF;
  padding: 60px 20px;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.tips-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  border-left: 5px solid #D4761A;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 98% 100%, 0 100%);
  transition: all 0.3s ease;
}

.tips-list li:hover {
  background: linear-gradient(135deg, #1F3D2A 0%, #2D5A3D 100%);
  color: #FFFFFF;
  transform: translateX(10px);
}

.tips-list li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ===================================
   FAQ SECTION - GEOMETRIC
   =================================== */

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

.faq-item {
  background: #FFFFFF;
  padding: 28px;
  margin-bottom: 20px;
  border: 2px solid #e0e0e0;
  border-left: 6px solid #1F3D2A;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 98% 100%, 0 100%);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: #D4761A;
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

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

/* ===================================
   LOCATION SECTION
   =================================== */

.location {
  background: #FFFFFF;
  padding: 60px 20px;
}

.location-info {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 40px;
  margin-top: 32px;
  border: 3px solid #1F3D2A;
  clip-path: polygon(0 5%, 5% 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}

.location-info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===================================
   ARTICLE CARDS
   =================================== */

.articles {
  background: #FFFFFF;
  padding: 60px 20px;
}

.article-card {
  position: relative;
  padding-top: 20px;
}

.article-card .category {
  position: absolute;
  top: 0;
  left: 0;
  background: #D4761A;
  color: #FFFFFF;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.article-card h3 {
  margin-top: 16px;
  color: #1F3D2A;
}

/* ===================================
   STORY & VALUES SECTIONS
   =================================== */

.story, .values, .stats {
  background: #FFFFFF;
  padding: 60px 20px;
}

.intro {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}

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

.milestone, .value-card, .stat, .method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 32px;
  text-align: center;
  border: 3px solid #1F3D2A;
  clip-path: polygon(0 5%, 5% 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.milestone:hover, .value-card:hover, .stat:hover, .method-card:hover {
  background: linear-gradient(135deg, #1F3D2A 0%, #2D5A3D 100%);
  color: #FFFFFF;
  transform: translateY(-5px);
}

.milestone strong, .stat strong {
  font-size: 48px;
  color: #D4761A;
  display: block;
  margin-bottom: 12px;
  font-family: 'Merriweather', serif;
}

.milestone:hover strong, .stat:hover strong {
  color: #FFFFFF;
}

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

/* ===================================
   CONTACT FORMS & METHODS
   =================================== */

.contact-methods, .contact-form {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

.form-wrapper {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 40px;
  margin-top: 32px;
  border: 3px solid #1F3D2A;
  clip-path: polygon(0 5%, 5% 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}

.form-note {
  font-size: 16px;
  margin-bottom: 20px;
  color: #444;
}

.form-note strong {
  color: #D4761A;
}

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

.thank-you {
  background: linear-gradient(135deg, #1F3D2A 0%, #2D5A3D 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #D4761A;
  color: #FFFFFF;
  font-size: 64px;
  line-height: 100px;
  border-radius: 0;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  margin: 0 auto 32px;
  box-shadow: 0 10px 30px rgba(212, 118, 26, 0.4);
}

.thank-you h1 {
  color: #FFFFFF;
  font-size: 48px;
  border-left: none;
  padding-left: 0;
}

.lead {
  font-size: 20px;
  margin-bottom: 32px;
}

.next-steps, .suggestions, .contact-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  margin: 32px auto;
  max-width: 800px;
  border: 2px solid rgba(212, 118, 26, 0.3);
  clip-path: polygon(0 5%, 5% 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
  backdrop-filter: blur(10px);
}

.next-steps h2, .suggestions h2, .contact-info h2 {
  color: #D4761A;
  margin-bottom: 24px;
}

.next-steps ol {
  list-style: decimal;
  list-style-position: inside;
  text-align: left;
  margin: 20px 0;
}

.next-steps li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.estimate {
  background: #D4761A;
  padding: 12px 24px;
  margin-top: 24px;
  font-weight: 700;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

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

.suggestion-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border: 2px solid rgba(212, 118, 26, 0.3);
  clip-path: polygon(0 5%, 5% 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}

.suggestion-card h3 {
  color: #D4761A;
  font-size: 20px;
  margin-bottom: 12px;
}

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

.legal-page {
  background: #FFFFFF;
  padding: 60px 20px;
}

.legal-content {
  max-width: 900px;
  margin: 40px auto;
  line-height: 1.8;
}

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

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

.legal-content p {
  margin-bottom: 16px;
  color: #444;
}

.legal-links {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 3px solid #D4761A;
}

.legal-links h3 {
  color: #1F3D2A;
  margin-bottom: 20px;
}

.legal-links a {
  display: block;
  padding: 12px 0;
  color: #D4761A;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #1F3D2A;
  padding-left: 10px;
}

/* ===================================
   FOOTER - GEOMETRIC
   =================================== */

footer {
  background: #1F3D2A;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

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

.footer-col {
  flex: 1 1 250px;
}

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

.footer-col h4 {
  color: #D4761A;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 10px;
}

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

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 2px solid rgba(212, 118, 26, 0.3);
  padding-top: 24px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #D4761A;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1F3D2A 0%, #2D5A3D 100%);
  color: #FFFFFF;
  padding: 24px;
  z-index: 1998;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.cookie-accept {
  background: #D4761A;
  color: #FFFFFF;
  border-color: #D4761A;
}

.cookie-accept:hover {
  background: #B86315;
  transform: scale(1.05);
}

.cookie-reject {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

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

.cookie-settings {
  background: transparent;
  color: #D4761A;
  border-color: #D4761A;
}

.cookie-settings:hover {
  background: rgba(212, 118, 26, 0.1);
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  padding: 40px;
  z-index: 2001;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  border: 4px solid #1F3D2A;
  clip-path: polygon(0 5%, 5% 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

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

.cookie-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
}

.cookie-overlay.active {
  display: block;
}

.cookie-modal h3 {
  color: #1F3D2A;
  margin-bottom: 20px;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 16px;
  background: #f9f9f9;
  border-left: 4px solid #D4761A;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  cursor: pointer;
}

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

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

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

@media (max-width: 768px) {
  /* Mobile Menu Visible */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav, .cta-button {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
    border-left-width: 5px;
    padding-left: 15px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  /* CTA Group */
  .cta-group {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Cards - Full Width on Mobile */
  .service-card, .category-card, .benefit, .topic-card, .article-card,
  .testimonial-card, .milestone, .value-card, .stat, .method-card,
  .species-card, .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Trust Badges Stack */
  .trust-badges {
    flex-direction: column;
  }
  
  .trust-badges span {
    width: 100%;
  }
  
  /* Footer */
  .footer-grid {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Sections Padding */
  section {
    padding: 32px 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet Adjustments */
  .service-card, .category-card, .benefit, .topic-card, .article-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card, .milestone, .value-card, .stat {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

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

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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 3px solid #D4761A;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header, footer, .mobile-menu-toggle, .cookie-banner {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  * {
    border-color: currentColor !important;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}