@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');
*,
html,
body {
    box-sizing: border-box;

    
}

body {

    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #F8FAFC;
    background: #323232;
    min-height: 100vh;
    position: relative;
}

body {
  scrollbar-color: #1AC274 transparent; /* Колір повзунка і прозорий фон */
  scrollbar-width: thin; /* Товщина повзунка */
}

/* Для веб-контенту Webkit (наприклад, Chrome, Safari) */
::-webkit-scrollbar {
  width: 10px; /* Товщина повзунка */
}

::-webkit-scrollbar-track {
  background: transparent; /* Прозорий фон */
}

::-webkit-scrollbar-thumb {
  background-color: #1AC274; /* Колір повзунка */
  border-radius: 10px; /* Радіус заокруглення */
  border: none; /* Без рамки */
}



input,
button,
select,
option,
.slick-slide {
    outline: none !important;
}

a {
    transition: 0.3s;
    text-decoration: none !important;
}
h1,h2,h3,h4,h5,h6{
	padding: 0;
	margin: 0;
}
p {
    line-height: 1.2;
    margin: 0;
}
ul, li{
	padding: 0;
	margin: 0;
}
section{
	padding: 120px 0;
}




.col-12{
	position: static;
}
.container{
	max-width: 1230px;
	position: relative;
	z-index: 1;
}

.header{
	padding: 10px 0;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10;
	border-bottom: 1px solid transparent;
	transition: 0.2s;
}

.header.scroll, .header.nav-active{
	background: #323232;
	border-color: #F8FAFC;
}
.header.nav-active .header-shadow{
	display: block;
}
.header-shadow{
	display: none;
	width: 100%;
	height: 200vh;
	background: rgba( 0, 0, 0, 0.5 );
	position: absolute;
	left: 0;
	top: 100%;
	z-index: -5;
}

.header-row{
	display: flex;
	align-items: center;
}

@keyframes shake{
	0%{
		transform: rotate(0deg);
	}
	20%{
		transform: rotate(10deg);
	}
	40%{
		transform: rotate(-10deg);
	}
	60%{
		transform: rotate(10deg);
	}
	80%{
		transform: rotate(-10deg);
	}

	100%{
		transform: rotate(0deg);
	}
}

.header-logo:hover{
	animation: shake 0.4s;
}
.header-logo img{
	width: 80px;
	height: 80px;
	border-radius: 50%;

}


.header-menu{
	margin-left: auto;
}

.menu{
	display: flex;
	align-items: center;

}
.menu-item{
	display: flex;
	font-size: 20px;
	position: relative;
	overflow: hidden;

}
.menu-item:before{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #1AC274;
	transform: translateX(-105%);
	transition: 0.3s;
}
.menu-item:hover:before{
	transform: translateX(0);
}
.menu-link{
	padding: 10px 20px;
	display: block;
	color: #F8FAFC;
}

.menu-link:hover{
	color: #1AC274;
}

.header-btn{
	margin-left: 80px;
}

@keyframes show{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}


.h-btn{
	padding: 8px 28px;
	border: 1px solid #fff;
	cursor: pointer;
	font-size: 18px;
	position: relative;
	display: inline-block;
	overflow: hidden;
	font-weight: 500;
}

.h-btn:before{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #1AC274;
	transition: 0.3s;
	transform: translateX(-100%);

}


.h-btn-title{
	position: relative;
	z-index: 1;
}
.h-btn:hover{
	border-color: #1AC274;
}

.h-btn:hover:before{
	transform: translateX(0);
}


.head{
	padding: 200px 0;
	overflow: hidden;
	position: relative;
	min-height: 100vh;
}
.head .container{
	position: static;
}
.def-section-bg{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.def-section-bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.08;
}

.head-title{
	font-size: 60px;
	font-weight: 700;
}
.head-slogan{
	margin-top: 40px;
	font-weight: 400;
	font-size: 22px;
}

.head-content{
	padding: 0 20px;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.head-title span{
	color: #1AC274;
}


@keyframes moving{
	0% {
	    transform: translateY(0px);
	}
	50% {
	    transform: translateY(-4px);
	}
	100% {
	    transform: translateY(0px);
	}

}

.head-arrow{
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 40px;
	background: #F8FAFC;
	color: #323232;
	cursor: pointer;
	font-size: 16px;
}

.head-arrow:hover{
	background: #1AC274;
	color: #F8FAFC;
}

.head-arrow-item{
	animation: moving 1s infinite;
}


.about{
	padding-top: 200px !important;	
}
.def-text-block{
	margin-bottom: 40px;
}
.title{
	font-size: 40px;
	font-weight: 700;
}
.slogan{
	font-size: 22px;
	margin-top: 20px;
}

.about-row{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 40px;
}


.about-row-item{
	width: 48%;
	border: 1px solid #F8FAFC;
	padding: 20px ;
	position: relative;
	transition: 0.3s;
	display: flex;
	align-items: center;

}
.about-row-item:nth-child(n+3){
	margin-top: 4%;
}
.about-row-item:hover{
	border-color: #1AC274;
}


.about-row-item-img{
	order: 2;
	width: 20%;
	margin-left: auto;
}
.about-row-item-img img{
	max-height: 100%;
	max-width: 100%;
}

.about-row-item-text{
	max-width: 75%;
	line-height: 1.8;

}


.how{
	position: relative;
}



.how-block{
	position: relative;
}

.how-line{
	width: 10px;
	height: calc( 100% + 40px );
	position: absolute;
	left: 50%;
	top: -40px;
	transform: translateX(-50%);
	background: #F8FAFC;
	border-radius: 20px;
}


.how-row{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

}
.how-row-item-container{
	width: 100%;
}
.how-row-item{
	width: 44%;
	border: 1px solid #F8FAFC;
	padding: 20px;
	position: relative;
	min-height: 178px;
	transition: 0.3s;
}
.how-row-item:hover{
	border-color: #1AC274;
}
.how-row-item-container:nth-child(2n) .how-row-item{
	margin-left: auto;
}
.how-row-item-container:nth-child(2n) .how-row-item-object{
	left: -93px;
}
.how-row-item-container:nth-child(2n) .how-row-item-object:before{
	transform: rotate(54deg);
	right: -70px;
	left: auto;
}


.how-row-item-title{
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
	text-transform: uppercase;

}
.how-row-item-title span{
	float: right;
	color: #1AC274;
}

.how-row-item-text{
	line-height: 1.4;
}
.how-row-item-text+.how-row-item-text{
	margin-top: 15px;
}


.how-row-item:hover .how-row-item-object{
	color: #F8FAFC;
	background: #1AC274;
}

.how-row-item-object{
	transition: 0.3s;
	width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F8FAFC;
    border: 1px solid #1AC274;
    color: #1AC274;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: absolute;
    right: -93px;
    top: 0%;

}
.how-row-item-object:before{
	content: "";
    display: block;
    width: 89px;
    height: 1px;
    background: #1AC274;
    position: absolute;
    left: -70px;
    top: 60px;
    transform: rotate(-54deg);
}


.reviews-slider-container{
	position: relative;
}

.reviews-slider-arrow{
	display: flex;
	align-items: center;
	height: 0;
	justify-content: space-between;
	position: absolute;
	left: -60px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	width: calc( 100% + 120px );

}
.reviews-slider-arrow div{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #F8FAFC;
	color: #323232;
	transition: 0.3s;
	cursor: pointer;
	font-size: 18px;
}
.reviews-slider-arrow div:hover{
	background: #1AC274;
	color: #F8FAFC;
}

.slick-track {
  display: flex;
}
.slick-track .slick-slide {
  height: auto;
}
.reviews-slider .slick-track{
	padding-top: 10px;
	padding-bottom: 10px;
}

.reviews-slider .slick-slide {
    margin: 0 15px;
}
  
.reviews-slider .slick-list {
	margin-left: -15px;
	margin-right: -15px;
}
.reviews-slider-item.slick-center{
	transform: scale(1.2);
		animation: show 1s;
}

.reviews-slider-item{
	transition: 0.3s;
	box-shadow: 0 0px 9px rgba(26,194,116, 1);
	border-radius: 4px;
	overflow: hidden;
}
.reviews-slider-item:hover{
	border-color: #1AC274;
}
.reviews-slider-item-text-block{
	padding: 20px;
}

.reviews-slider-item-title{
	font-size: 18px;
}
.reviews-slider-item-slogan{
	margin-top: 10px;
}
.reviews-slider-item-video{
	width: 100%;
	position: relative;
	left: -1px;
	bottom: -1px;
}
.reviews-slider-item-video video{
	width: 100%;
	display: block;
	cursor: pointer;

}
.reviews-slider-item-video img{
	width: 100%;
	height: 200px;
	object-fit: cover;
}


.slick-dots li{
	width: 20px;
	height: 20px;
	background: #F8FAFC;
	cursor: pointer;
	border-radius: 50%;
	border: 1px solid #F8FAFC;
	transition: 0.3s;
}
.slick-dots li.slick-active{
	background: #1AC274 !important;
	border-color: #1AC274 !important;
}

.slick-dots li:hover{
	background: transparent;
	border-color: 1px solid #1AC274;
}
.slick-dots li button:before{
	opacity: 0 !important;
}
.slick-dots{
	bottom: -40px;
}

.feedback{
	position: relative;
}
.feedback-form{
	max-width: 574px;
	margin: 0 auto;
	background: #323232;
	padding: 40px 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .25);
	text-align: center;

}

.feedback-form-input{
	margin: 0;
	padding: 0;
	display: block;
}
.feedback-form-input+.feedback-form-input{
	margin-top: 30px;
}
.feedback-form-input-title{
	font-size: 18px;
	margin-bottom: 10px;
	padding-left: 15px;
	text-align: start;
}

.feedback-form-input input{
	background: #F8FAFC;
	width: 100%;
	height: 40px;
	padding-left: 15px;
	border: 1px solid #F8FAFC;
	transition: 0.3s;
	color: #000;
	font-size: 16px;
	font-weight: 600;

}


.feedback-form-btn{
	position: relative;
	margin: 40px auto 0 auto;
}
.feedback-form-btn input{
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}
.feedback-form-check{
	margin-top: 20px;
	display: flex;
	align-items: center;
}
.feedback-form-check-input{
	display: flex;
	align-items: center;
	margin-right: 10px;
}
.feedback-form-check-input input{
	width: 20px;
	height: 20px;
}
.feedback-form-check-text a{
	color: #fff;
	font-weight: 500;
}

.contact{
	padding-top: 200px !important;
}
.contact-row{
	display: flex;
	align-items: center;

}

.contact-row-inner{
	margin-left: 40px;
}

.contact-row-inner-link{
	display: block;
	color: #F8FAFC;
	font-size: 18px;
}
.contact-row-inner-link:hover{
	color: #1AC274;
}
.contact-row-inner-link+.contact-row-inner-link{
	margin-top: 20px;
}

.contact-row-inner-soc{
	display: flex;
	align-items: center;
	margin-top: 10px;

}

.contact-row-inner-soc-item{
	width: 40px;
	height: 40px;
	background: #F8FAFC;
	color: #323232;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 20px;
}

.contact-row-inner-soc-item+.contact-row-inner-soc-item{
	margin-left: 20px;
}

.contact-row-inner-soc-item:hover{
	background: #1AC274;
	color: #F8FAFC;
}

.footer{
	padding: 30px 0;
	border-top: 1px solid #F8FAFC;
}

.f-row{
	display: flex;
	justify-content: space-between;
}
.f-row+.f-row{
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #fff;
}
.f-one .contact-row-inner-soc{
	justify-content: center;
}
.f-logo{
	max-width: 200px;
	display: block;
}

.f-logo img{
	width: 100%;
	border-radius: 50%;

}
.f-logo:hover{
	opacity: 0.8;
}
.f-link{
	display: block;
	padding: 10px;
	color: #fff;
	font-size: 18px;
}
.f-link:hover{
	opacity: 0.5;
}



.footer .header-btn{
	margin-left: 0;
}

.footer .menu{
	display: block;
}
.footer .menu-item+.menu-item{
	margin: 10px 0 0 0;
}
.footer .menu-link{
	padding: 0;
}


.f-title{
	font-size: 24px;
	margin-bottom: 20px;

}

.f-text{
	font-size: 18px;
}
.f-text+.f-text{
	margin-top: 10px;
}


.header-bars{
	display: none;
	width: 50px;
	min-width: 50px;
	height: 50px;
	background: #F8FAFC;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s;
	margin-left: auto;
}

.header-bars.active{
	background: #1AC274;
}
.header-bars.active .header-bars-inner-item{
	background: #F8FAFC;
	transform: rotate(45deg);
	position: relative;
	top: 4px;
}

.header-bars.active .header-bars-inner-item:nth-child(2){
	transform: rotate(-45deg);
	top: -4px;
}
.header-bars.active .header-bars-inner-item:last-child{
	display: none;
}

.header-bars-inner{
	width: 60%;
}
.header-bars-inner-item{
	background: #323232;
	width: 100%;
	height: 2px;
	transition: 0.3s;
}
.header-bars-inner-item+.header-bars-inner-item{
	margin-top: 6px;
}

@keyframes navShow{
	0% {
	    transform: translateX(-100%);
	}
	100% {
	    transform: translateX(0%);
	}
}

.mob-menu{
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	background: #323232;
	height: calc( 100vh - 81px );
	width: 320px;
	padding: 20px;
	border-top: 1px solid #F8FAFC;
	animation: navShow 0.3s;
}

.mob-menu .menu{
	display: block;
}
.mob-menu .menu-item{
	display: block;
}
.mob-menu .menu-link{
	padding: 20px 0;
}
.mob-menu .header-btn{
	margin: 40px 0 0 0;
	width: 100%;
	text-align: center;

}

.h-modal{
	padding: 0 15px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	min-height: 100%;
	background: rgba( 0, 0, 0, 0.5 );
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
	animation: show 0.5s;
}
.h-modal.active{
	display: flex;

}
.h-modal-block{
	position: relative;
	color: #323232;
	text-align: center;
	width: 500px;
	padding: 40px 20px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 0px 9px rgba(26,194,116, 1);

}
.h-modal-close{
	position: absolute;
	right: 0;
	top: 0;
	font-size: 20px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s;
}
.h-modal-close:hover{
	color: #1AC274;
}
.h-modal-block-text{
	font-size: 20px;
	line-height: 1.6;
}
.h-modal-block-icon{
	font-size: 90px;
	color: #1AC274;
	line-height: 1;
}


@media screen and (max-width:1200px){

	section{
		overflow: hidden;
	}
	.how-line{
		display: none;
	}


	.how-row-item-container+.how-row-item-container{
		margin-top: 20px;
	}
	.header-btn{
		margin-left: 40px;
	}

}

@media screen and (max-width:992px){
	.header{
		padding: 15px 0;
	}
	.header-bars{
		display: flex;
	}
	.d-mob-none{
		display: none;
	}
	section{
		padding: 85px 0;
	}
	.about-row-item{
		width: 100%;
	}
	.about-row-item+.about-row-item{
		margin-top: 20px;
	}
	.how-row-item{
		width: 100%;
		min-height: auto;
	}
	.how-row-item-object{
		left: 10px !important;
		top: 10px !important;
		right: 0 !important;
	}
	.how-row-item-object:before{
		display: none;
	}
	.how-row-item-title{
		padding-left: 40px;
	}
	.reviews-slider-arrow{
		width: calc( 100% + 20px );
		left: -10px;
	}
	.contact-row-map{
		width: 50%;
	}
	.contact-row-map iframe{
		width: 100%;
		height: 40vw;
	}
	.f-title{
		font-size: 18px;
	}
	.f-text{
		font-size: 16px;
	}
	.footer .menu-link{
		font-size: 18px;
	}
	.about-row-item-img{
		width: 20%;
		margin-left: auto;
	}
}



@media screen and (max-width: 768px){
	.contact-row{
		flex-wrap: wrap;
	}
	.contact-row-map{
		width: 100%;
	}
	.contact-row-inner{
		margin: 20px 0 0 0;
	}
	.f-row{
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
	}
	.f-row-item{
		width: 100%;
	}
	.f-one{

		text-align: center;
		order: 0;
	}
	.f-logo{
		margin: 0 auto;

	}
	.f-four{
		order: 1;

		text-align: center;
		margin: 30px 0;
	}
	.f-two{
		order: 2;
	}
	.f-three{
		order: 3;
		margin-top: 30px;

	}
	.footer .menu-link{
		margin: 0 auto;
	}
	.how-row-item-title span{
		display: block;
		margin-top: 10px;
		float: none;
	}
	.how-row-item-object {
	    top: 20px !important;
	}
	.head-arrow{
		bottom: 100px;
	}
}

@media screen and (max-width: 574px){
	.about-row-item{
		display: block;
		text-align: center;
	}
	.about-row-item-img{
		width: 100px;
		height: 100px;
		margin: 0 auto;
		padding-top: 0;
		order: 1;
	}
	.about-row-item-text{
		max-width: 100%;
		margin-top: 20px;
	}
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333; /* Темний фон */
    color: #fff; /* Білий текст */
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Забезпечує видимість поверх іншого контенту */
    display: none; /* Спочатку прихований, показується через jQuery */
    font-family: Arial, sans-serif;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Для мобільних пристроїв */
}

#cookie-banner p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

#cookie-banner a {
    color: #8cff00; /* Яскравий колір для посилання, наприклад, зелений */
    text-decoration: underline;
}

#cookie-accept-btn,
#cookie-reject-btn {
    background-color: #8cff00;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-left: 20px; /* Відступ від тексту */
}

#cookie-accept-btn:hover,
#cookie-reject-btn:hover  {
    background-color: #a0ff33;
}

/* Адаптивність для менших екранів */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    #cookie-accept-btn,
	#cookie-reject-btn  {
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
    }
}

.impressum-container {
    max-width: 900px;
    margin: 60px auto; /* Відступи зверху та знизу */
    padding: 30px;
    background-color: #383838; /* Трохи світліший фон для самого блоку */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* --- Заголовки --- */
.impressum-title {
    font-size: 2.5em;
    color: #8cff00; /* Акцентний колір (зелений) */
    margin-bottom: 40px;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
}

.section-title {
    font-size: 1.4em;
    color: #f0f0f0;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* --- Розділи та текст --- */
.impressum-section {
    margin-bottom: 20px;
}

.impressum-section p {
    margin: 5px 0;
}

/* --- Контактні дані (посилання) --- */
.contact-details a {
    color: #8cff00; /* Акцентний колір для посилань */
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #a0ff33;
    text-decoration: underline;
}

/* --- Роздільник --- */
.separator {
    border: 0;
    height: 1px;
    background-color: #555;
    margin: 40px 0;
}

/* --- Відмова від відповідальності --- */
.impressum-disclaimer .disclaimer-text {
    font-style: italic;
    color: #ccc;
    padding-left: 15px;
    border-left: 3px solid #8cff00;
}
.data-privacy-container {
    max-width: 900px;
    margin: 60px auto; /* Відступи зверху та знизу */
    padding: 30px;
    background-color: #383838; /* Трохи світліший фон для блоку */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* --- Головний заголовок --- */
.data-privacy-title {
    font-size: 2.2em; /* Трохи менший, ніж для Impressum, оскільки довгий */
    color: #8cff00; /* Акцентний колір (зелений) */
    margin-bottom: 30px;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
}

/* --- Блоки розділів --- */
.data-privacy-block {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #4a4a4a; /* Пунктирна лінія для розділення */
}

.data-privacy-block:last-child {
    border-bottom: none; /* Без лінії для останнього блоку */
}

/* --- Заголовки розділів --- */
.block-title {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
    color: #a0ff33; /* Яскравіший зелений для підзаголовків */
}

/* --- Стилізація посилань --- */
.data-privacy-container a {
    color: #8cff00; /* Акцентний колір для посилань */
    text-decoration: none;
    transition: color 0.3s;
}

.data-privacy-container a:hover {
    color: #a0ff33;
    text-decoration: underline;
}

/* --- Списки --- */
.data-privacy-block ul {
    list-style-type: disc; /* Маркери у вигляді кіл */
    margin-left: 25px;
    padding: 0;
}

.data-privacy-block ul li {
    margin-bottom: 5px;
}
.data-privacy-block a{
	color: #fff !important;
}
/* --- Контейнер для AGB (Загальні умови) --- */
.agb-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 30px;
    background-color: #383838; /* Трохи світліший фон для блоку */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* --- Головний заголовок AGB --- */
.agb-title {
    font-size: 2.2em;
    color: #8cff00; /* Акцентний колір */
    margin-bottom: 30px;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
}

/* --- Блоки розділів AGB --- */
.agb-block {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #4a4a4a;
}

.agb-block:last-child {
    border-bottom: none;
}

/* --- Заголовки розділів AGB --- */
/* Використовуємо той же клас block-title, що й для Datenschutzerklärung */
.block-title {
    font-size: 1.3em;
    color: #a0ff33; 
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

/* --- Текст всередині AGB --- */
.agb-block p {
    margin: 8px 0;
}
.agb-block a{
	color: #fff !important;
}

/* --- Стилізація посилань (також можна взяти з Datenschutzerklärung) --- */
.agb-container a {
    color: #8cff00;
    text-decoration: none;
    transition: color 0.3s;
}

.agb-container a:hover {
    color: #a0ff33;
    text-decoration: underline;
}