.custom-contact-section {
    position: relative;
    text-align: center;
    background: url('../assets/firma-werte-4.jpg') no-repeat center center/cover;
    padding: 80px 20px;
    color: #fff;
    border-radius: 8px;
    overflow: hidden; /* ensures overlay stays inside */
  }
  
  /* Overlay */
  .custom-contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 30, 20, 0.55); /* antique sepia overlay */
    mix-blend-mode: multiply; /* gives it an antique feel */
    z-index: 1;
  }
  
  /* Content should stay above overlay */
  .custom-contact-section > * {
    position: relative;
    z-index: 2;
  }
  
  .custom-logo-circle {
    width: 80px;
    height: 80px;
    background-color: #0d3c78;
    border: 4px solid #fff;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .custom-logo-circle img {
    width: 40px;
    height: auto;
  }
  
  .custom-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .custom-subtext {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .custom-button {
    display: inline-block;
    background-color: #0d3c78;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .custom-button:hover {
    background-color: #09284f;
  }
  