.firewall-kacheln-wrapper {
  width: 100%;
  max-width: 100%; /* Optional: Begrenzung auf zentrierten Bereich */
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  box-sizing: border-box;
}

.flex-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 600px;
    background-color: #f8f9fa;
  }

  .flex-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    overflow: hidden;
    padding: 40px 40px;
  }

  .flex-image img {
    width: 100%;
    height: 80%;
    object-fit: cover;
  }


  .hover-zoom img {
  transform: perspective(1000px) rotateY(0deg) scale(1.05);
          filter: brightness(1.1) contrast(1.1);
  }

  .flex-text {
    flex: 1;
    max-width: 50%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .flex-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #3a7bd5, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .flex-text p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
  }

  .feature-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 30px;
  }

  .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.5rem;
    color: #555;
    transition: all 0.3s ease;
  }

  .feature-list li:hover {
    transform: translateX(10px);
    color: #3a7bd5;
  }

  .feature-list li i {
    margin-right: 10px;
    color: #3a7bd5;
  }

  .cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(45deg, #3a7bd5, #00d2ff);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.3);
    transition: all 0.4s ease;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(58, 123, 213, 0.4);
  }

  .cta-button:hover i {
    transform: translateX(5px);
  }
 .separator {
      bottom: -4px;
      left: 0;
      overflow: hidden;
      position: absolute;
    
      width: 100%;
    }
  /* Responsive */
  @media (max-width: 991px) {
    .flex-section {
      flex-direction: column;
    }

    .flex-image,
    .flex-text {
      max-width: 100%;
    }

    .flex-text {
      padding: 40px 20px;
    }
  }