:root {
  --background-color: #1e3a8a; 
  --default-color: #ffffff;     
  --accent-color: #e11d48;     
  --contrast-color: #000000;  
}
 
  #verkauf {
    background-color: #f8f9fa;
    padding: 60px 0;
}

#verkauf .content {
    position: relative;
    z-index: 1;
}

#verkauf h2, #verkauf h3 {
    color: #0b2154;
    font-weight: 700;
}

#verkauf h5 {
    color: var(--accent-color);
    font-weight: 600; 
}

#verkauf .lead {
    color: #6c757d;
    font-size: 20px;
    margin-bottom: 20px;
}

#verkauf ul {
    list-style-type: none;
    padding-left: 0;
}

#verkauf ul li {
    color: #6c757d;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

#verkauf ul li::before {
    content: "✓";
    color: #007bff;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

#verkauf .text-muted {
    color: #6c757d;
}

#verkauf .svg-border-angled {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#verkauf .svg-border-angled svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    fill: currentColor;
}

hr.border-primary {
    border-top: 2px solid #007bff;
}

