body {
	background: linear-gradient(rgba(0,0,0,0.60),rgba(0,0,0,0.60)),
				url("../img/background.jpg") no-repeat center center fixed;
	background-size: cover;
	font-family: Helvetica;
}

p {
	margin: 0;
	padding: 3px;
}

.container {
	text-align: center;
    position: absolute;
    left: 50%;
    top: 43%;
    transform: translate(-50%, -50%);
}

.logo img {
	margin-top: 70px;
	width: 500px;
	animation-name: logo;
	animation-duration: 6s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

@keyframes logo {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.15);
	}
	100% {
		transform: scale(1);
	}
}
.items {
	display: flex;
	justify-content: space-around;
	flex-basis: 100px;
	padding: 18px 0 10px 0;

}

.item img {
	transition: all 0.3s ease;
}

.item img:hover {
	transform:scale(1.25);
}

.img {
	width: 100%;
}

@media(min-width: 600px) {
	.logo img {
		width: 500px;
	}
	.img {
		width: 200px;
		height: 250px;
	}
	.items {
		padding: 80px 0 20px 0;
	}
}

@media(min-width: 1000px) {
	.items {
		justify-content: center;
	}

	.item:not(:first-child) {
		margin-left: 90px;
	}
}
.legal-buttons {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
}

.legal-btn {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.legal-btn:hover {
    background: rgba(77, 166, 255, 0.3);
    border-color: #4da6ff;
    transform: translateY(-2px);
}

.imprint-box,
.datasafety-box,
.agb-box {
	width:800px;
	height:100%;
	position:fixed;
	top:0;
	right:0;
	background:#000;
	background:rgba(0,0,0,0.92);
	color:#fff;
	padding:40px;
	overflow:auto;
	z-index:999;
	-webkit-box-shadow: -10px 0px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: -10px 0px 5px 0px rgba(0,0,0,0.75);
	box-shadow: -10px 0px 5px 0px rgba(0,0,0,0.75);
	display:none;
	text-align:justify;
}
.imprint-box a,
.datasafety-box a,
.agb-box a {
	color: #4da6ff;
	text-decoration: none;
}

.imprint-box a:hover,
.datasafety-box a:hover,
.agb-box a:hover {
	text-decoration: underline;
}

.imprint-box-close,
.datasafety-box-close,
.agb-box-close {
	padding: 20px 25px;
	font-size: 32px;
	color: #fff;
	text-align: center;
	position: absolute;
	z-index: 9999;
	top: 0;
	right: 0;
	cursor: pointer;
	transition: color 0.3s ease;
}

.imprint-box-close:hover,
.datasafety-box-close:hover,
.agb-box-close:hover {
	color: #ff6b6b;
}

.legal-content {
	max-width: 700px;
	margin: 0 auto;
	padding: 20px 0;
}

.legal-section {
	margin-bottom: 35px;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
	border-bottom: none;
}

.legal-section h2 {
	color: #fff;
	font-size: 22px;
	margin: 0 0 20px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #4da6ff;
	display: inline-block;
}

.legal-section h3 {
	color: #fff;
	font-size: 18px;
	margin: 25px 0 15px 0;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(77, 166, 255, 0.3);
}

.legal-section h4 {
	color: #ccc;
	font-size: 15px;
	margin: 18px 0 10px 0;
}

.legal-section p {
	color: #bbb;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 12px;
}

.legal-section ul {
	color: #bbb;
	font-size: 14px;
	line-height: 1.7;
	margin: 10px 0;
	padding-left: 25px;
}

.legal-section li {
	margin-bottom: 5px;
}

.company-info {
	background: rgba(255, 255, 255, 0.05);
	padding: 20px;
	border-radius: 8px;
	border-left: 3px solid #4da6ff;
}

.company-info p {
	margin-bottom: 10px;
}

.company-info p:last-child {
	margin-bottom: 0;
}

@media (max-width: 850px) {
	.imprint-box,
	.datasafety-box,
	.agb-box {
		width: 100%;
		padding: 20px;
		box-sizing: border-box;
	}

	.legal-content {
		padding: 10px;
	}

	.legal-section h2 {
		font-size: 18px;
	}

	.legal-section h3 {
		font-size: 16px;
	}

	.legal-section h4 {
		font-size: 14px;
	}

	.legal-section p,
	.legal-section ul {
		font-size: 13px;
	}

	.legal-buttons {
		bottom: 15px;
		right: 15px;
		flex-direction: column;
		gap: 10px;
	}

	.legal-btn {
		padding: 10px 18px;
		font-size: 12px;
		text-align: center;
	}
}

/* SEO & Accessibility Styles */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.tagline {
	color: #fff;
	font-size: 18px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	margin: 10px 0 20px 0;
	letter-spacing: 1px;
}

.seo-content {
	max-width: 800px;
	margin: 40px auto 0 auto;
	padding: 25px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 10px;
	text-align: center;
}

.seo-content h2 {
	color: #fff;
	font-size: 20px;
	margin-bottom: 15px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.seo-content p {
	color: #ccc;
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 12px;
}

.seo-content p:last-child {
	margin-bottom: 0;
}

.seo-content strong {
	color: #4da6ff;
}

@media (max-width: 850px) {
	.tagline {
		font-size: 14px;
		padding: 0 15px;
	}

	.seo-content {
		margin: 20px 15px 0 15px;
		padding: 15px;
	}

	.seo-content h2 {
		font-size: 16px;
	}

	.seo-content p {
		font-size: 12px;
	}
}
