.procon {
	padding-top:var(--space-padding);
}

.procon-section {
  color: #fff;	
}

.procon-section .procon-container {
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  background: linear-gradient(to right, var(--farbe-2) 50%, var(--farbe-1) 50%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
	padding-bottom: 50px;
}

.procon-section .column {
  flex: 1;
  padding: 40px 30px;
}

.procon-section .problem  {
  text-align: right;
	color:var(--farbe-1);
}
.procon-section .solution {
	text-align: left;
	color:var(--farbe-2);
}
.procon-section .problem h2 {
  color:var(--farbe-1);
}

.procon-section .solution h2 {
 color: var(--farbe-2);
}

.procon-section .column ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.procon-section .column li {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}

.procon-section .column .icon {
  font-size: 20px;
  margin-left: 10px;
  vertical-align: middle;
}

/* Call-to-Action Box */
.procon-section .cta-box {
  background: #fff;
  color: #000;
  max-width: 800px;
  margin: -50px auto 0;
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.procon-section .cta-box h3 {
color:var(--farbe-1);
  margin-bottom: 20px;
}

.procon-section .cta-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.procon-section .cta-button {
  background: var(--farbe-2);
  color: #000;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius);
  display: inline-block;
  transition: background 0.3s ease;
	font-weight: 600;
}

.procon-section .cta-button:hover {
  background: #90c7f5;
}



.solution-items {
	background: linear-gradient(90deg, var(--farbe-2)) 50%, var(--farbe-1) 50%);
	padding-bottom: 135px;
	border-radius: 25px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.solution-items .element {
	display: flex;
}

.solution-items .element_col {
	width: 50%;
	padding: 20px; /* Optional: für Innenabstand */
	box-sizing: border-box;
}

.solution-items .element_col:nth-child(1) {
	text-align: right;
	color: #fff;
	background: var(--farbe-1);
}

.solution-items .element:nth-child(1) .element_col:nth-child(1) {
		border-top-left-radius: var(--radius);
}
.solution-items .element:nth-child(1) .element_col:nth-child(2) {
		border-top-right-radius: var(--radius);
}

.solution-items .element_col:nth-child(2) {
	text-align: left;
	color: #fff;
	background: var(--farbe-2);
}

.solution-items .element_col.headliner {
	font-weight: 600;
	font-style: normal;
	line-height: 1.1em;
	padding-top:30px;
	font-size: 35px;
}

.items-headline {
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	background: #2A7B9B;
background: #000;
	color: var(--farbe-1);
	padding:15px;
}


@media (max-width: 768px) {
.procon {
	padding-top:50px;
	}
	
	.solution-items .element_col.headliner {
	font-size: 22px !important;
	}
	
	.solution-items .element_col p {
  box-sizing: border-box;
  word-wrap: break-word; 
		 hyphens: auto;
}


}






.hidden-element {
  display: none;
}

#show-more-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: var(--radius);
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    border: 0;
    cursor: pointer;
	margin-top: 20px;
}

#show-more-btn:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}




.cta-box {
	display: block !important;
}
