.impressum-page {
  max-width: 1680px;
  margin: 0 auto;
  font-family: 'Jost', sans-serif;
  line-height: 1.6;
  color: #333;
}

.impressum-hero {
  max-width: 1680px;
  margin: 0 auto;
  background: linear-gradient(135deg, #03429f 0%, #0173CF 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impressum-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.impressum-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.impressum-hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.impressum-hero .hero-content h1 i {
  font-size: 3rem;
}

.impressum-hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #fff;
}

.impressum-hero .hero-content .last-updated {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.impressum-hero .hero-content .last-updated span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.impressum-content {
  padding: 60px 0;
  background: white;
}

.impressum-content .container {
  max-width: 900px;
  margin: 0 auto;
  width: 85%;
}

.impressum-content .impressum-section {
  margin-bottom: 60px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.impressum-content .impressum-section:hover {
  transform: translateY(-5px);
}

.impressum-content .impressum-section .section-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #03429f;
}

.impressum-content .impressum-section .section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #202124;
  display: flex;
  align-items: center;
}

.impressum-content .impressum-section .section-header h2 i {
  margin-right: 15px;
  color: #03429f;
  font-size: 1.8rem;
}

.impressum-content .impressum-section .section-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 30px 0 15px;
  color: #202124;
}

.impressum-content .impressum-section .section-content p {
  margin-bottom: 20px;
  color: #222222;
  line-height: 1.8;
  font-size: 17px;
}

.impressum-content .impressum-section .section-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.impressum-content .impressum-section .section-content ul li {
  margin-bottom: 10px;
  color: #222222;
  line-height: 1.6;
  font-size: 17px;
}

.impressum-content .impressum-section .section-content a {
  color: #03429f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.impressum-content .impressum-section .section-content a:hover {
  color: #0173CF;
  text-decoration: underline;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.info-grid .info-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.info-grid .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #03429f;
}

.info-grid .info-item i {
  font-size: 2rem;
  color: #03429f;
  margin-right: 20px;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.info-grid .info-item div h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #202124;
}

.info-grid .info-item div p {
  margin: 0;
  color: #222222;
  line-height: 1.6;
  font-size: 16px;
}

.info-grid .info-item div a {
  color: #03429f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-grid .info-item div a:hover {
  color: #0173CF;
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.contact-grid .contact-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-grid .contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #03429f;
}

.contact-grid .contact-item i {
  font-size: 2rem;
  color: #03429f;
  margin-right: 20px;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.contact-grid .contact-item div h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #202124;
}

.contact-grid .contact-item div p {
  margin: 0;
  color: #222222;
  line-height: 1.6;
  font-size: 16px;
}

.contact-grid .contact-item div a {
  color: #03429f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-grid .contact-item div a:hover {
  color: #0173CF;
  text-decoration: underline;
}

.additional-links {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
}

.additional-links h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #202124;
}

.additional-links ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.additional-links ul li {
  margin: 0;
}

.additional-links ul li a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  color: #222222;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.additional-links ul li a:hover {
  background: #03429f;
  color: white;
  transform: translateX(5px);
  border-color: #03429f;
}

.additional-links ul li a i {
  margin-right: 10px;
  font-size: 1.2rem;
}

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

  .impressum-hero .hero-content h1 {
    font-size: 2.5rem;
    flex-direction: column;
    gap: 10px;
  }

  .impressum-hero .hero-content h1 i {
    font-size: 2.5rem;
  }

  .impressum-hero .hero-content p {
    font-size: 1rem;
    color: #fff;
  }

  .impressum-content {
    padding: 40px 0;
  }

  .impressum-content .container {
    width: 90%;
  }

  .impressum-content .impressum-section {
    padding: 25px;
    margin-bottom: 40px;
  }

  .impressum-content .impressum-section .section-header h2 {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .impressum-content .impressum-section .section-header h2 i {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .info-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .additional-links ul {
    grid-template-columns: 1fr;
  }
}

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

.impressum-section {
  animation: fadeInUp 0.6s ease forwards;
}

.impressum-section:nth-child(1) {
  animation-delay: 0.1s;
}

.impressum-section:nth-child(2) {
  animation-delay: 0.2s;
}

.impressum-section:nth-child(3) {
  animation-delay: 0.3s;
}

.impressum-section:nth-child(4) {
  animation-delay: 0.4s;
}

.impressum-section:nth-child(5) {
  animation-delay: 0.5s;
}

.impressum-section:nth-child(6) {
  animation-delay: 0.6s;
}

.impressum-section:nth-child(7) {
  animation-delay: 0.7s;
}

