.site-footer {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  margin-top: 70px;
}

/* Waves Container */
.footer-waves {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  margin-bottom: -5px;
  background: #021826;
}

.footer-waves svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
}

/* Footer Content */
.footer-content {
  background: #021826;
  padding: 1rem 0 1rem;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  color: #15803d; /* Dunkelgrün */
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #334155;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: #16a34a;
  padding-left: 5px;
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: -15px;
  color: #22c55e;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
  left: -5px;
}

/* Contact Info Styling */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  border-left: 3px solid #22c55e;
}

.phone, .email {
  color: #1e293b;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Contact Section */
.contact-section {
  align-items: flex-end;
  text-align: right;
}

.contact-button {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.contact-button:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.contact-button:active {
  transform: translateY(0);
}

.copyright {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section {
    align-items: center;
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-section {
    align-items: center;
    text-align: center;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-links a::before {
    display: none;
  }

  .contact-info {
    border-left: none;
    border-top: 3px solid #22c55e;
    padding-left: 0;
    padding-top: 1rem;
    align-items: center;
  }

  .footer-waves svg {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 2rem 0 1.5rem;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .contact-button {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}