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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.navbar-brand {
  font-size: 1.5rem;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-padding {
  padding: 60px 0;
}

.page-header {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  text-align: center;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.benefits-list li {
  padding-left: 20px;
  position: relative;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.audience-card {
  padding: 25px;
  background: #fff;
  border-left: 4px solid #28a745;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
}

.footer {
  padding: 40px 0 20px;
}

.footer a {
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer a:hover {
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 20px 0;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner a {
  color: #28a745;
  text-decoration: underline;
}

.approach-card {
  padding: 20px;
}

.feature-box {
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
  height: 100%;
}

.service-features {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  padding: 8px 0 8px 30px;
  position: relative;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 18px;
}

.process-step {
  padding: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.target-group {
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
  height: 100%;
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  padding: 12px;
}

.contact-form .form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.contact-info-box {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.contact-info-box a {
  color: #28a745;
  text-decoration: none;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

.faq-item {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.next-step-card {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  height: 100%;
}

.policy-content {
  font-size: 1rem;
  line-height: 1.8;
}

.policy-content h2 {
  color: #28a745;
  font-size: 1.75rem;
}

.policy-content h4 {
  color: #333;
  font-size: 1.25rem;
}

.policy-content ul {
  margin-bottom: 20px;
}

.policy-content li {
  margin-bottom: 10px;
}

.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li {
  padding: 12px 0;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .section-padding {
    padding: 40px 0;
  }

  .page-header {
    padding: 40px 0 30px;
  }

  .cta-section {
    padding: 50px 0;
  }

  .display-4 {
    font-size: 2rem;
  }
}

.card {
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.btn {
  transition: all 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

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