.container-über {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: white;
  font-family: 'Montserrat', sans-serif; /* Falls du Montserrat nutzt */
  line-height: 1.7;
  color: #222;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #ff5722;
}

h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #ff5722;
}

ul li {
  list-style: none;
  padding: 0;
  margin-left: 0;
}
ul li::before {
  color: #4caf50;
}


blockquote {
  border-left: 4px solid #ff5722;
  margin: 30px 0;
  padding-left: 20px;
  font-style: italic;
  background: #f9f9f9;
  color: #333;
}


a {
  color: #0077cc;
  text-decoration: underline;
}

a:hover {
  color: #005999;
}

p {
  margin-bottom: 20px;
}

.hover-underline {
  position: relative;
  display: inline-block;
  color: #ff5722; 
  padding: 0.3em 0;
  transition: color 0.3s ease;
}

.hover-underline::after,
.hover-underline::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #ff5722, #00bcd4); 
  left: 0;
  transform: scaleX(0);
  transition: transform 0.4s ease-out;
}

.hover-underline::after {
  bottom: 0;
  transform-origin: right;
}

.hover-underline::before {
  top: 0;
  transform-origin: left;
}

.hover-underline:hover::after,
.hover-underline:hover::before {
  transform: scaleX(1);
}
