/* Modern Design System */
:root {
  /* Natural Bio Olive Color Palette */
  --color-primary: #4a5d23;
  --color-primary-dark: #3a4a1b;
  --color-primary-light: #6b8e23;
  --color-secondary: #8fbc8f;
  --color-accent: #cd853f;
  --color-accent-warm: #daa520;
  --color-accent-earth: #a0522d;
  --color-text: #0f172a;
  --color-text-secondary: #475569;
  --color-text-light: #64748b;
  --color-background: #ffffff;
  --color-surface: #f8fafc;
  --color-surface-elevated: #ffffff;
  --color-border: #e2e8f0;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  
  /* Balanced Typography */
  --font-family-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2rem;
  
  /* Harmonious Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Modern Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Modern Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Natural Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-warm) 100%);
  --gradient-success: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-success) 100%);
}

/* Reset und Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--spacing-lg) 0;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { 
  font-size: var(--font-size-4xl); 
  color: #202020;
}

h2 { 
  font-size: var(--font-size-3xl); 
  color: #202020;
}

h3 { 
  font-size: var(--font-size-xl); 
  color: #202020;
}

p {
  margin: 0 0 var(--spacing-lg) 0;
  line-height: 1.6;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Top Navigation */
.top-nav {
  background: #4b524a;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.top-nav .nav {
  display: flex;
  justify-content: center;
}

.top-nav .nav a {
  color: white;
  font-weight: 500;
}

.top-nav .nav a:hover {
  color: #f0f0f0;
}

/* Header */
.header {
  background: #A1BFB4;
  padding: var(--spacing-lg) 0;
}

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

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

.logo-image {
  width: 250px !important;
  height: auto !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-lg);
}

.nav a {
  color: var(--color-text);
  font-weight: 500;
}

.nav a:hover {
  color: var(--color-secondary);
}

/* Hero Section */
.hero {
  background: url('assets/hero-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  padding: var(--spacing-3xl) 0;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}


.hero h1 {
  margin-bottom: var(--spacing-lg);
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 1;
  font-size: 4rem;
}

.hero p {
  font-size: var(--font-size-lg);
  color: white;
  max-width: 600px;
  margin: 0 auto var(--spacing-xl) auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 1;
}

/* Main Content */
.main {
  padding: var(--spacing-2xl) 0;
}

/* Ranking Table */
.ranking-table {
  background: var(--color-background);
  overflow: hidden;
  margin: var(--spacing-xl) 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: var(--spacing-sm) var(--spacing-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

/* Details-Spalte mit kleinerer Schrift */
.table td:nth-child(7) {
  font-size: 13px;
}

/* Anbieter-Name Links */
.table td:nth-child(2) a {
  font-size: 18px;
  color: #596759;
  font-weight: normal;
}

/* Top 3 Anbieter-Namen in dunkler Farbe */
.table tr:nth-child(1) td:nth-child(2) a,
.table tr:nth-child(2) td:nth-child(2) a,
.table tr:nth-child(3) td:nth-child(2) a {
  color: #202020 !important;
  font-weight: 500;
}

.table th {
  background: var(--color-surface);
  font-weight: 600;
  color: #202020;
  position: sticky;
  top: 0;
  z-index: 1;
}

.table tr:hover {
  background: var(--color-surface);
}

/* Table Controls */
.table-controls {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
  align-items: center;
}

.filter-input,
.country-filter {
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid var(--color-border);

  font-size: var(--font-size-base);
}

.show-more-btn {
  background: var(--color-secondary);
  color: white;
  border: none;
  padding: var(--spacing-md) var(--spacing-lg);

  cursor: pointer;
  font-size: var(--font-size-base);
  font-weight: 500;
  transition: background-color 0.2s;
}

.show-more-btn:hover {
  background: #27ae60;
  opacity: 0.9;
}

.results-info {
  color: var(--color-text-light);
  font-size: var(--font-size-small);
  margin-left: auto;
}

/* Bio und Geschenk Icons */
.bio-cell, .gift-cell {
  text-align: center;
}

.bio-icon {
  font-size: 1.2rem;
  font-weight: bold;
}

.bio-yes {
  color: var(--color-success);
}

.bio-no {
  color: var(--color-error);
}

.gift-icon {
  font-size: 1.2rem;
  font-weight: bold;
}

.gift-yes {
  color: var(--color-success);
  border-color: var(--color-success);
}

.gift-no {
  color: var(--color-error);
  border-color: var(--color-error);
}

/* Badges und Labels */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: calc(var(--border-radius) / 2);
  font-size: var(--font-size-small);
  font-weight: 500;
}

.badge--success {
  background: #27ae60;
  color: white;
  font-weight: 600;
}

.badge--warning {
  background: #f39c12;
  color: white;
  font-weight: 600;
}

.badge--error {
  background: #e74c3c;
  color: white;
  font-weight: 600;
}

/* Country Flag */
.country-flag {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  margin-right: var(--spacing-sm);
}

/* Icons */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
}

/* Rating Stars */
.rating {
  display: flex;
  gap: var(--spacing-xs);
}

/* Top 3 Rankings - Badge Only Highlighting */
.top-ranking .badge {
  background: #27ae60 !important;
  color: white !important;
  font-weight: 500 !important;
}

.star {
  color: var(--color-accent);
}

.star--empty {
  color: var(--color-border);
}

/* Modern Cards */
.card {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-light);
}

.card h3 {
  margin-top: 0;
}

/* Modern Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  font-size: var(--font-size-base);
}

.btn--primary {
  background: #4b524a;
  color: white;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: #697467;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: var(--color-surface);
  color: #202020;
  border: 1px solid var(--color-border);
}

.btn--secondary:hover {
  background: var(--color-border);
  text-decoration: none;
}

/* Anbieter Detail Styles */
.anbieter-header h1 {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.anbieter-location {
  color: var(--color-text-light);
  font-size: var(--font-size-large);
  margin-bottom: var(--spacing-xl);
}

.anbieter-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.summary-card {
  background: var(--color-surface);
  padding: var(--spacing-lg);
  text-align: center;
  border: 2px solid var(--color-border);
}

.summary-card h3 {
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-base);
}

.rating-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.badge--large {
  font-size: var(--font-size-xl);
  padding: var(--spacing-sm) var(--spacing-md);
}

.price-large {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-secondary);
}

.rating-details div {
  margin-bottom: var(--spacing-xs);
  text-align: left;
}

.anbieter-content {
  display: grid;
  gap: var(--spacing-lg);
}

/* Provider Header Image */
.provider-header-image {
  position: relative;
  height: 300px;
  margin-bottom: var(--spacing-lg);
  overflow: hidden;
}

.header-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-overlay .anbieter-header {
  text-align: center;
  color: white;
}

.header-overlay .anbieter-header h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: var(--spacing-sm);
}

.header-overlay .anbieter-location {
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  margin-bottom: var(--spacing-md);
}

/* Google Rating Stars */
.google-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-md);
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 1.2rem;
  line-height: 1;
}

.star-full {
  color: #ffd700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.star-half {
  color: #ffd700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  position: relative;
}

.star-half::after {
  content: '★';
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #ddd;
}

.star-empty {
  color: #ddd;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.rating-text {
  font-size: var(--font-size-small);
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Detailseiten-spezifische Styles */
.detailed-description {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-lg);
  background-color: var(--color-surface);

  border-left: 4px solid var(--color-secondary);
}

.detailed-description h4 {
  color: #202020;
  margin-bottom: var(--spacing-md);
}

.detailed-description p {
  margin-bottom: var(--spacing-md);
}

.pros-cons-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

.pros-card {
  border-left: 4px solid var(--color-success);
}

.cons-card {
  border-left: 4px solid var(--color-error);
}

.pros-card h3 {
  color: var(--color-success);
}

.cons-card h3 {
  color: var(--color-error);
}

.co2-analysis {
  margin: var(--spacing-lg) 0;
}

.co2-positive {
  padding: var(--spacing-md);
  background-color: #f0f8f0;

  border-left: 4px solid var(--color-success);
}

.co2-warning {
  padding: var(--spacing-md);
  background-color: #fff8f0;

  border-left: 4px solid var(--color-warning);
}

.co2-positive p strong,
.co2-warning p strong {
  color: #202020;
}

/* Footer */
.footer {
  background: #4b524a;
  color: white;
  padding: var(--spacing-xl) 0;
  margin-top: var(--spacing-2xl);
}

.footer a {
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.footer-logo {
  margin-bottom: var(--spacing-md);
}

.footer-logo-image {
  height: 60px;
  width: auto;
}

.footer-bottom {
  margin-top: var(--spacing-lg);
}

/* FAQ Accordion Styling */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: var(--color-card);
  border: none;
  padding: var(--spacing-lg);
  text-align: left;
  font-size: var(--font-size-lg);
  font-weight: 400;
  color: #202020;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--color-light);
}

.faq-question[aria-expanded="true"] {
  background: var(--color-light);
}

.faq-icon {
  font-size: 1.2em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #202020;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-answer.open {
  max-height: 200px;
  padding: var(--spacing-lg);
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--color-text);
}

/* Kundenbewertungen Styling */
.customer-reviews {
  margin: 1rem 0;
}

.review {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--background-light);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.review-header strong {
  color: var(--primary-color);
  font-weight: 600;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-text {
  margin: 0;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Bewertungsmethodik Styling */
.methodology-card {
  background: linear-gradient(135deg, var(--background-light) 0%, #f8fffe 100%);
  border: 2px solid var(--accent-color);
}

.methodology-content {
  line-height: 1.6;
}

.methodology-section {
  margin: 1.5rem 0;
  padding: 1rem;
  background: white;
  border-radius: 6px;
  border-left: 4px solid var(--accent-color);
}

.methodology-section h4 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.methodology-section ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.methodology-section li {
  margin-bottom: 0.4rem;
}

.methodology-note {
  background: var(--background-light);
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
  border-left: 4px solid var(--secondary-color);
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .header-content {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero {
    padding: var(--spacing-xl) 0;
  }
  
  .table {
    font-size: var(--font-size-small);
  }
  
  .table th,
  .table td {
    padding: var(--spacing-sm);
  }
  
  .pros-cons-container {
    grid-template-columns: 1fr;
  }
  
  .anbieter-summary {
    grid-template-columns: 1fr;
  }
}

/* Bewertungs-Ergebnisse Styles */
.bewertungs-ergebnisse {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
  border: 2px solid var(--accent-color);
  margin: 2rem 0;
}

.bewertungs-ergebnisse h3 {
  color: var(--primary-color);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.bewertung-intro {
  font-style: italic;
  color: #666;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
}

.bewertung-kategorien {
  margin-bottom: 2rem;
}

.kategorie {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.kategorie h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.bewertung-detail {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  font-family: 'Courier New', monospace;
  background: #f0f0f0;
  padding: 0.5rem;
  border-radius: 4px;
  margin: 0;
}

.gesamtbewertung-rechnung {
  background: rgba(81, 105, 96, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid var(--accent-color);
}

.gesamtbewertung-rechnung h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.gesamtbewertung-rechnung p {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin: 0;
}

.echte-kundenbewertungen {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.echte-kundenbewertungen h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.bewertungen-liste {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bewertungen-liste li {
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  background: #f8f9fa;
  border-left: 3px solid var(--accent-color);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: #444;
  line-height: 1.5;
}

.bewertungen-liste li:last-child {
  margin-bottom: 0;
}

.bewertung-footer {
  background: rgba(81, 105, 96, 0.05);
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
}

.bewertung-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f8fffe 0%, #ecf4f0 100%);
  padding: var(--spacing-2xl) 0;
  margin-top: var(--spacing-2xl);
  border-top: 1px solid var(--color-border);
}

.contact-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.contact-header h2 {
  color: #202020;
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-3xl);
}

.contact-subline {
  color: var(--color-text-light);
  font-size: var(--font-size-large);
  font-style: italic;
  margin: 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

.contact-email {
  background: var(--color-surface);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-accent);
  text-align: center;
}

.contact-email h3 {
  color: #202020;
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-xl);
}

.email-link {
  display: inline-block;
  background: #4b524a;
  color: white;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.email-link:hover {
  background: #697467;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.contact-form-container {
  background: var(--color-surface);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
  color: #202020;
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.form-group label {
  font-weight: 500;
  color: #202020;
  font-size: var(--font-size-base);
}

.form-group input,
.form-group textarea {
  padding: var(--spacing-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4b524a;
  box-shadow: 0 0 0 3px rgba(81, 105, 96, 0.1);
}

.captcha-group {
  background: #f0f8f0;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-accent);
}

.captcha-group label {
  font-weight: 600;
  color: #202020;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.captcha-group input {
  max-width: 100px;
  text-align: center;
  font-weight: 600;
  font-size: var(--font-size-large);
}

/* Contact Form Mobile */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-header h2 {
    font-size: var(--font-size-2xl);
  }
  
  .contact-subline {
    font-size: var(--font-size-base);
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .nav {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card,
  .ranking-table {
    box-shadow: none;
    border: 1px solid #000;
  }
}