:root {
  --primary: #1a9e7e;
  --secondary: #2d3436;
  --accent: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --border-light: #e8e8e8;
  --bg-light: #f9f9f9;
  --green-light: #e0f7df;
  --green-dark: #2c7a3e;
  --yellow-light: #fff4c4;
  --yellow-dark: #8a6d00;
  --red-light: #ffd6d6;
  --red-dark: #b71c1c;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
  background: var(--accent);
  line-height: 1.6;
}

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

/* Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 1000;
}

.skip-link:focus {
  position: static;
  padding: 12px 16px;
  background: var(--secondary);
  color: var(--accent);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

/* Header */
.site-header {
  background: var(--accent);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

.brand {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover,
.nav a:focus {
  color: var(--primary);
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

/* Main Content */
main {
  margin: 40px 0;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}

.avatar-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #e8f6f0 0%, #f6fff9 100%);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 158, 126, 0.15);
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.video-face {
  position: absolute;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, #a8d5d8 0%, #7fc9cc 100%);
  border-radius: 50%;
  transform: translateZ(0);
  box-shadow: 0 8px 20px rgba(26, 158, 126, 0.2);
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 12px;
  background: rgba(26, 158, 126, 0.9);
  color: var(--accent);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-copy {
  padding: 0;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin: 0 0 16px;
  line-height: 1.2;
  color: var(--text-primary);
}

.hero h1 strong {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.125rem;
  margin: 0 0 24px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Buttons & CTAs */
.cta,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--accent);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  cursor: pointer;
  font-size: 1rem;
}

.cta:hover,
.cta:focus,
.cta-button:hover,
.cta-button:focus {
  background: var(--secondary);
  border-color: var(--secondary);
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.reset-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--secondary);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary);
  cursor: pointer;
  font-size: 1rem;
}

.reset-button:hover,
.reset-button:focus {
  background: var(--bg-light);
  outline: 2px solid var(--secondary);
  outline-offset: 4px;
}

/* Form Grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

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

.question label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.question input,
.question select {
  padding: 10px 12px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.question input:focus,
.question select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 158, 126, 0.1);
}

/* Sections */
.quick,
.about,
.contact {
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
}

.form-header {
  margin-bottom: 32px;
}

.form-header h2 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.form-header p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.form-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Ampel (Status Light) */
.ampel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.ampel-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ampel-initial {
  background: #ccc;
}

.ampel[data-state="gruen"] {
  background: var(--green-light);
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}

.ampel[data-state="gruen"] .ampel-circle {
  background: #4caf50;
}

.ampel[data-state="gelb"] {
  background: var(--yellow-light);
  color: var(--yellow-dark);
  border: 2px solid var(--yellow-dark);
}

.ampel[data-state="gelb"] .ampel-circle {
  background: #fbc02d;
}

.ampel[data-state="rot"] {
  background: var(--red-light);
  color: var(--red-dark);
  border: 2px solid var(--red-dark);
}

.ampel[data-state="rot"] .ampel-circle {
  background: #f44336;
}

/* Email Section */
.email-section {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 4px solid var(--primary);
}

.email-section h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.email-section > p {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.email-field label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.email-field input {
  padding: 12px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.email-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 158, 126, 0.1);
}

.email-field input:invalid:not(:placeholder-shown) {
  border-color: var(--red-dark);
  box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.1);
}

.field-error {
  color: var(--red-dark);
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
  margin-top: 4px;
}

/* Form View & Result View */
.form-view {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.form-view.hidden {
  display: none;
  opacity: 0;
}

.result-view {
  opacity: 1;
  transition: opacity 0.3s ease;
  animation: slideUp 0.5s ease;
}

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

/* Result Card */
.result-card {
  background: var(--bg-light);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 2px solid var(--border-light);
}

.result-header {
  margin-bottom: 32px;
  text-align: center;
}

.result-header h2 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.result-subtitle {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

#result-ampel {
  margin-bottom: 24px;
  justify-content: center;
  padding: 24px;
  flex-direction: column;
  gap: 16px;
}

#result-ampel .ampel-circle {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}

#result-ampel .ampel-text {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.result-explanation {
  text-align: center;
  margin-bottom: 24px;
}

.result-explanation h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.result-explanation p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Result Info Section */
.result-info {
  background: white;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  margin-bottom: 32px;
}

.result-info h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: var(--text-primary);
}

.result-info > p {
  margin: 0 0 16px;
  color: var(--text-secondary);
}

.result-info p strong {
  color: var(--primary);
  font-weight: 700;
}

.result-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.result-info li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-secondary);
}

.result-info li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Result Actions */
.result-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.secondary-button:hover,
.secondary-button:focus {
  background: var(--primary);
  color: var(--accent);
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

/* Sections Content */
h2 {
  font-size: 2rem;
  margin: 0 0 24px;
  color: var(--text-primary);
}

h3 {
  font-size: 1.3rem;
  margin: 24px 0 12px;
  color: var(--text-primary);
}

h4 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--text-primary);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about ul li {
  padding: 8px 0 8px 24px;
  position: relative;
}

.about ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Contact CTA */
.contact-cta {
  margin: 24px 0;
}

.external-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.external-link:hover,
.external-link:focus {
  background: var(--bg-light);
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

/* Footer */
.site-footer {
  background: var(--secondary);
  color: var(--accent);
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand,
.footer-links,
.footer-legal {
  font-size: 0.95rem;
}

.footer-brand p,
.footer-links p,
.footer-legal p {
  margin: 0 0 8px;
}

.footer-brand p:first-child {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-legal a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-legal a:hover,
.footer-legal a:focus {
  color: var(--primary);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p {
  margin: 0;
}

/* Legal Pages Styling */
.legal-section {
  padding: 60px 0;
}

.legal-section h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 20px;
}

.legal-section h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.legal-section h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.legal-section p {
  margin-bottom: 16px;
  line-height: 1.8;
  text-align: justify;
}

.legal-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-section a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-section a:hover,
.legal-section a:focus {
  color: var(--secondary);
  text-decoration: underline;
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav {
    gap: 32px;
  }
  
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .avatar-video {
    height: 0;
    padding-top: 56.25%;
    aspect-ratio: auto;
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .cta-button,
  .reset-button {
    width: 100%;
  }
  
  .secondary-button {
    width: 100%;
  }
  
  main {
    margin: 20px 0;
  }
  
  .quick,
  .about,
  .contact {
    padding: 40px 0;
  }
  
  .site-header .container {
    flex-direction: column;
    gap: 12px;
  }
  
  .nav {
    justify-content: center;
    gap: 16px;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .result-card {
    padding: 20px;
  }
  
  #result-ampel {
    padding: 16px;
  }
  
  .result-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .email-section {
    padding: 16px;
    margin-bottom: 24px;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: white;
  padding: 24px 16px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  font-size: 14px;
  border-top: 3px solid var(--primary);
  max-height: 220px;
  overflow-y: auto;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.cookie-banner-text h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
}

.cookie-banner-text p {
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.cookie-banner-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  opacity: 0.8;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}

.cookie-button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept-btn {
  background: var(--primary);
  color: white;
}

.cookie-accept-btn:hover {
  background: #1681648;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-accept-btn:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

.cookie-reject-btn {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.cookie-reject-btn:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

/* Mobile responsive for cookie banner */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px;
    font-size: 13px;
  }

  .cookie-banner-content {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
    padding: 12px 16px;
  }
}

/* Partner Page Styles */
.hero-partners {
  background: linear-gradient(135deg, var(--primary) 0%, #168566 100%);
  color: white;
}

.hero-partners h1 {
  color: white;
}

.hero-partners .hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
}

.hero-partners .cta {
  background: white;
  color: var(--primary);
  font-weight: 600;
}

.hero-partners .cta:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Benefits Grid */
.partners-benefits {
  margin: 80px 0;
}

.partners-benefits h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.benefit-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.benefit-card h3 {
  color: var(--secondary);
  margin: 16px 0 12px 0;
  font-size: 1.2rem;
}

.benefit-card p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Partnership Models */
.partnership-models {
  margin: 80px 0;
}

.partnership-models h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 2rem;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.model-card {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  border-left: 4px solid var(--primary);
  border-radius: 4px;
  padding: 28px;
  transition: all 0.3s ease;
}

.model-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-left-color: var(--secondary);
}

.model-card h3 {
  color: var(--primary);
  margin: 0 0 8px 0;
  font-size: 1.25rem;
}

.model-card > p {
  color: #666;
  margin: 8px 0 20px 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.model-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.model-card li {
  padding: 8px 0;
  color: #555;
  border-bottom: 1px solid #eee;
}

.model-card li:last-child {
  border-bottom: none;
}

.model-card li:before {
  content: "→ ";
  color: var(--primary);
  font-weight: bold;
  margin-right: 8px;
}

/* Process Steps */
.process {
  margin: 80px 0;
}

.process h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 60px;
}

.step {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.step h3 {
  color: var(--secondary);
  margin: 12px 0 8px 0;
  font-size: 1.1rem;
}

.step p {
  color: #555;
  margin: 0;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Requirements */
.requirements {
  background: #f5f5f5;
  border-left: 4px solid var(--primary);
  padding: 32px;
  border-radius: 4px;
  margin-top: 48px;
}

.requirements h3 {
  color: var(--primary);
  margin: 0 0 20px 0;
}

.requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements li {
  padding: 10px 0;
  color: #333;
  border-bottom: 1px solid #ddd;
}

.requirements li:last-child {
  border-bottom: none;
}

/* FAQ Section */
.faq {
  margin: 80px 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 2rem;
}

.faq-items {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px;
  background: #f9f9f9;
  cursor: pointer;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-item summary:hover {
  background: #f0f0f0;
}

.faq-item summary::marker {
  color: var(--primary);
}

.faq-item[open] summary {
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item p {
  padding: 20px;
  margin: 0;
  color: #555;
  line-height: 1.6;
  background: white;
}

/* Partner Contact Form */
.contact-partners {
  margin: 80px 0;
  background: #f9f9f9;
  padding: 48px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.contact-partners h2 {
  text-align: center;
  margin: 0 0 12px 0;
  color: var(--primary);
}

.contact-subtitle {
  text-align: center;
  color: #666;
  margin: 0 0 32px 0;
  font-size: 1.1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 158, 126, 0.1);
}

.form-group.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.form-group.checkbox input {
  margin-top: 4px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.form-group small {
  color: #888;
  font-size: 0.85rem;
  margin-top: 4px;
}

.form-status {
  display: none;
  margin-top: 20px;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
}

.form-status.success-message {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

/* Responsive Adjustments for Partners Page */
@media (max-width: 768px) {
  .benefits-grid,
  .models-grid,
  .process-steps {
    gap: 16px;
  }

  .benefit-card,
  .model-card,
  .step {
    padding: 20px;
  }

  .benefit-icon {
    font-size: 2.5rem;
  }

  .contact-partners {
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .model-card h3 {
    font-size: 1.1rem;
  }

  .process h2,
  .partners-benefits h2,
  .partnership-models h2,
  .faq h2,
  .contact-partners h2 {
    font-size: 1.5rem;
  }
}
