/* Layout */
.safe-header {
  background-color: #1d6156;
  padding-top: constant(safe-area-inset-top); /* iOS 11.0&ndash;11.2 */
  padding-top: env(safe-area-inset-top); /* iOS 11.2+ */
  padding-bottom: 12px;
}
.safe-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.safe-header img {
  height: 50px;
  filter: brightness(0) invert(1);
}
.main-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 800px;
  margin: 20px auto;
  padding: 0 10px;
}
.main-content {
  flex: 1 1 65%;
}
sup {
  font-size: 0.5em;
  vertical-align: super;
}
.sidebar {
  flex: 1 1 30%;
  background: #faf7f1;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: fit-content;
}
/* Buttons */
.buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
.modern-button {
  flex: 1 1 calc(25% - 15px);
  text-align: center;
  background-color: #188bcf;
  color: white;
  padding: 18px;
  border-radius: 6px;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 100px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
/* Mobile: 2 Buttons nebeneinander */
@media (max-width: 768px) {
  .modern-button {
    flex: 1 1 calc(50% - 10px);
  }
}
.modern-button:hover {
  background-color: #1E73BE;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
.button-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.modern-button:hover {
  background-color: #fcc1c1;
  transform: translateY(-2px);
}
.button-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
/* Vorteilsbox */
.vorteil-box {
  background-color: #f1fbe3;
  border-left: 5px solid #7ee000;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}
.vorteil-liste {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vorteil-liste li {
  display: flex;
  align-items: top;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 12px;
}
.vorteil-liste li span {
  font-size: 20px;
  color: #28a745;
}
/* Responsive Design */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
  }
  .main-content, .sidebar {
    flex: 1 1 100%;
  font-size: 17px;
  padding: 10px;
}
.button-icon {
  width: 30px;
  height: 30px;
}
}
footer {
  width: 100%;
  max-width: 100%;
  background-color: #188bcf;
  text-align: center;
  padding: 12px 0;
  color: #ffffff;
  font-size: 14px;
}
#cookieConsent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: 400px;
    background-color: #f2f2f2;
    padding: 25px;
    box-shadow: 2px 2px 20px rgb(0 0 0 / 70%);
    display: flex;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
    gap: 20px;
    border-top: 12px solid #188bcf;
    border-bottom: 5px solid #188bcf;
	border-radius: 6px;
}
#cookieConsent p {
	margin: 0;
	flex-grow: 1;
	font-size: 14px;
}

.cookieButton {
	padding: 10px 20px;
	border: none;
	cursor: pointer;
	font-size: 14px;
	max-width: 100%;
}
.accept {
	background-color: #188bcf; 
	color: white;
}
.reject {
	background-color: #ccc; /* Gray */
	color: black;
}
.btn-container {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.cookie-legal a, .cmpmoredivider {
    font-size: 14px;
    color: #8a8a8a;
}
p.note {
    margin-top: 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: underline;
}