/*

	GLOBAL STYLES

*/


body,
html {
	font-family: 'Intro', sans-serif;
	font-size: 16px;
	box-sizing: border-box;
	margin: 0;
	padding: 0;

	/* PROJECT SPECIFIC STYLES */
	background: #fff;
	color: var(--dc-gray);
	overflow-x: hidden;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
	margin: 0 0 1rem 0;
	padding: 0;
}

ol,
ul {
	list-style-type: none;
}

img {
	height: auto;
}

h1 {
	font-size: 4rem;
}

h2 {
	font-size: 3rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1rem;
}

h5 {
	font-size: 0.8rem;
}

h6 {
	font-size: 0.6rem;
}

a {
	text-decoration: none
}


/*

	VARIABLES

*/


:root {
	--dc-blue: #266cb4;
	--dc-gray: #4a4f55;
	--dc-light-blue: #3490ec;
	--dc-dark-gray : #1b1d1f;
	--dc-white : #f7f7f7;
}


/*

	PROJECT SPECIFIC STYLES

*/

@font-face {
	font-family: 'Araboto Normal';
	src: url('fonts/arabotonormal400.ttf') format('truetype');
	font-display: swap;
}

.navbar-logo {
	margin: 0px 0px 0px 15px;
	font-size: 1.5rem;
	font-family: 'Bebas Neue';
}

.navbar {
	position: absolute;
	background-color: #eeeeee75;
	color: var(--dc-gray);
	width: 100%;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	top: 0;
	left: 0;
	transition: all 0.5s cubic-bezier(1,0,.75,.8);

	opacity: 0.7;
	height: 8vh;
}

.navbar:hover {
	opacity: 0.9 !important;
	height: 8vh !important;
	transform: translateY(0) !important;
	background-color: #eeeeee90;
}

.fixed-navbar {
	background-color: #eeeeeede;
	position: fixed;
	opacity: 0.9;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

.nav-links li {
	margin: 0 10px;
}

.nav-links button {
	background-color: var(--dc-blue);
	color: white;
	border: none;
	padding: 1vh 20px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 1.5rem;
	font-family: 'Bebas Neue';
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.1s ease-in;
}

.nav-links button:hover {
	background-color: var(--dc-light-blue);
	font-size: 1.55rem;
}

.nav-links button:active {
	background-color: #0046df;
	font-size: 1.50rem;
}

main {
	z-index: 0;
}

#unsupported {
	display: none;
	text-align: center;
	padding: 3rem;
}

.video-container {
	position: fixed;
	z-index: 0;
	opacity: 0;
	transition: opacity 1s cubic-bezier(1,0,.75,.8);
}

.video-container.loaded {
	opacity: 1;
}

.video-bg {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	object-fit: cover;
	z-index: 0;
	transition: opacity 1s;
}

.section {
	position: relative;
	z-index: 1;
	width: 100vw;
	height: 100vh;
}

.typewriter-section {
	position: relative;
	z-index: 1;
	width: 100vw;
	height: 150vh;
}

.subsection {
	width: 75vw;
	height: 30%;
	position: fixed;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s cubic-bezier(.215, .61, .355, 1);
	opacity: 0;
}

.section.in-page .subsection {
	opacity: 1;
}

.typewriter-section.in-page .subsection {
	opacity: 1;
}

.big-title {
	opacity: 0.9;
	color: var(--dc-blue);
	font-size: 20vw;
	font-family: 'Bebas Neue';
	font-weight: bold;
}

.typewriter-title {
	opacity: 0.9;
	font-size: 13vw;
	font-family: 'Bebas Neue';
}

.panel {
	height: 120vh;
	width: 100%;
	background: var(--dc-white);
	position: relative;
	z-index: 2;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.panel.second {
	background: var(--dc-blue);
}

.panel.third {
	background-color: var(--dc-white);
	background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #f7f7f733 50px), repeating-linear-gradient(#266cb433, #266cb433);
	height: auto;
}

.panel.forth {
	background-color: white;
	height: auto;
}

.panel.fifth {
	background-color: var(--dc-white);
	height: auto;
}

.panel.sixth {
	height: auto;
	background-color: #e5e5f7;
	background-image: radial-gradient(circle at center center, #3490ec, #444cf7), repeating-radial-gradient(circle at center center, #3490ec, #3490ec, 40px, transparent 80px, transparent 40px);
}

.panel.footer {
	text-align: center;
	height: 8vh;
	color: var(--dc-gray);
	background: rgb(9,1,143);
	background: linear-gradient(180deg, #444cf7 0%, #3490ec 100%);
}

.logo {
	width: 100vw;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.9;
}

.container {
	width: 100%;
	max-width: 100%;
	height: 100%;
	padding: 5% 5% 0 5%;
}

.container.third {
	padding: 5%;
}

.container.forth {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 5% 5% 5% 5%;
}

.container.sixth {
	padding: 5%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.video-container-first {
	position: absolute;
	width: 100%;
	height: clamp(20%, 50%, 80%);
	bottom: 5%;
	object-fit: cover;
	z-index: 1;
	opacity: 0.8;
	border-radius: 5px;
}

.text-container-first {
	position: absolute;
	height: auto;
	width: 100%;
	padding: 5% 5% 0% 0%;
}

.video-container-second {
	position: absolute;
	width: 100%;
	height: clamp(20%, 30%, 80%);
	bottom: 5%;
	object-fit: cover;
	z-index: 1;
	opacity: 0.8;
	border-radius: 5px;
}

.text-container-second {
	position: absolute;
	height: auto;
	width: 100%;
	padding: 5% 5% 0% 0%;
}

.intro {
	font-size: 8vw;
	font-family: 'Araboto Normal', sans-serif;
	color: var(--dc-gray);
}

.intro.second {
	color: #fff;
}

.intro-title {
	font-size: 16vw;
	font-family: 'Bebas Neue';
	color: var(--dc-blue);
}

.intro-title.dark {
	color: var(--dc-dark-gray);
}

.intro-subtitle {
	font-size: 6vw;
	font-family: 'Araboto Normal', sans-serif;
	color: var(--dc-gray);
	max-width: 500px;
	padding-bottom: 10%;
}

.intro-subtitle.second {
	color: #fff;
}

.fade-in {
	opacity: 0;
	transform: translateY(2vh);
	transition: all 2s cubic-bezier(.215, .61, .355, 1);
}

.fade-in.in-page {
	opacity: 1;
	transform: translateY(0vh);
}

.grid-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 100vw;
	margin: 5% 0 0 0;
}

.flip-card {
	background-color: transparent;
	margin: 2vw;
	width: calc(50% - 4vw);
	height: 300px;
	perspective: 2000px;
	opacity: 0.9;
}

.flip-card-title {
	font-size: 6vw;
	font-family: 'Bebas Neue';
	margin: 5% 0 5% 5%;
	color: var(--dc-white);
}

.flip-card-detail {
	font-size: 4.5vw;
	font-family: 'Open Sans', sans-serif;
	padding: 5%;
	color: var(--dc-dark-gray);
}

.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	-webkit-backface-visibility: hidden;
	/* Safari */
	backface-visibility: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 5px 10px 5px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
	background-color: var(--dc-blue);
	border: solid var(--dc-light-blue);
	color: var(--dc-gray);
}

.flip-card-back {
	background-color: var(--dc-light-blue);
	border: solid var(--dc-blue);
	transform: rotateY(180deg);
}

.flip-card-logo {
	width: 25vw;
	margin: 10%;
}

.anti-copy-container {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.anti-copy-container.center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.transparent-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}

#contact-form {
	width: 80vw;
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
	font-family: 'Araboto Normal', sans-serif;
}

input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

textarea {
	resize: none;
	height: 20vh;
}

button[type="submit"] {
	height: 50px;
	display: block;
	width: 100%;
	padding: 10px;
	color: var(--dc-dark-gray);
	background-color: var(--dc-white);
	opacity: 0.8;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	font-size: 1.75rem;
	font-family: 'Bebas Neue';
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.1s ease-in;
}

button[type="submit"]:hover {
	color: var(--dc-white);
	background-color: var(--dc-light-blue);
}

button[type="submit"]:active {
	color: var(--dc-white);
	background-color: var(--dc-blue);
	font-size: 1.5rem;
}

.contact-text {
	font-size: 1rem;
	font-weight: bold;
	font-family: 'Araboto Normal', sans-serif;
	color: var(--dc-dark-gray);
	padding: 15% 0% 0% 0%;
}

.contact-link {
	font-size: 1.2rem;
	font-family: 'Araboto Normal', sans-serif;
	color: var(--dc-white);
	text-decoration: underline;
}

#popup {
	display: none;
	font-family: 'Araboto Normal', sans-serif;
	font-size: 1.5rem;
	text-align: center;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 50px;
	background-color: var(--dc-white);
	border-radius: 10px;
	z-index: 100;
	width: 90vw;
}

#closeButton {
	font-family: 'Bebas Neue';
	font-size: 1.75rem;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-radius: 5px;
	color: var(--dc-white);
	background-color: var(--dc-blue);
	border-color: var(--dc-blue);
	transition: all 0.1s ease-in;
	min-width: 40%;
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#closeButton:hover {
	background-color: var(--dc-light-blue);
	border-color: var(--dc-light-blue);
}

.successful-logo {
	stroke: var(--dc-blue);
	stroke-width: 3;
}

/* PRIVACY POLICY STYLES */
.privacy-policy {
	background: linear-gradient(135deg, var(--dc-blue) 0%, var(--dc-light-blue) 100%);
	min-height: 100vh;
	padding-top: 100px;
}

.privacy-policy .container {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
}

.privacy-policy .intro-title {
	text-align: center;
	color: var(--dc-white);
	margin-bottom: 40px;
	font-size: 4rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.privacy-content {
	background-color: var(--dc-white);
	border-radius: 15px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	color: var(--dc-dark-gray);
	line-height: 1.8;
}

.privacy-content h2 {
	color: var(--dc-blue);
	font-family: 'Bebas Neue';
	font-size: 2.2rem;
	margin-top: 35px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--dc-light-blue);
}

.privacy-content h2:first-child {
	margin-top: 0;
}

.privacy-content h3 {
	color: var(--dc-light-blue);
	font-family: 'Bebas Neue';
	font-size: 2.2rem;
	margin-top: 20px;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.privacy-content p {
	margin-bottom: 20px;
	font-family: 'Araboto Normal', sans-serif;
	font-size: 1rem;
}

.privacy-content ul {
	margin-bottom: 20px;
	padding-left: 30px;
}

.privacy-content li {
	margin-bottom: 12px;
	font-family: 'Araboto Normal', sans-serif;
	list-style-type: none;
	position: relative;
	padding-left: 25px;
}

.privacy-content li:before {
	content: "▸";
	position: absolute;
	left: 0;
	color: var(--dc-blue);
	font-weight: bold;
	font-size: 1.2rem;
}

.privacy-content a {
	color: var(--dc-blue);
	text-decoration: none;
	font-weight: bold;
	border-bottom: 2px solid transparent;
	transition: border-bottom 0.2s ease;
}

.privacy-content a:hover {
	color: var(--dc-light-blue);
	border-bottom: 2px solid var(--dc-light-blue);
}

.privacy-content strong {
	color: var(--dc-blue);
	font-weight: bold;
}

.privacy-back {
	text-align: center;
	margin-top: 50px;
	padding-bottom: 50px;
}

.back-button {
	height: 60px;
	padding: 15px 40px;
	color: var(--dc-blue);
	background-color: var(--dc-white);
	border: 3px solid var(--dc-white);
	border-radius: 10px;
	font-size: 1.5rem;
	font-family: 'Bebas Neue';
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-button:hover {
	background-color: transparent;
	color: var(--dc-white);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.back-button:active {
	transform: translateY(-1px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* PRIVACY CHECKBOX STYLES */
.privacy-section {
	margin-bottom: 20px;
	padding: 15px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-section p {
	font-size: 0.9rem;
	color: var(--dc-dark-gray);
	margin-bottom: 15px;
	line-height: 1.4;
	font-family: 'Araboto Normal', sans-serif;
}

.privacy-section a {
	color: var(--dc-white);
	text-decoration: underline;
}

.privacy-section a:hover {
	color: var(--dc-light-blue);
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.checkbox-group input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	cursor: pointer;
	accent-color: var(--dc-blue);
}

.checkbox-group label {
	font-size: 0.9rem;
	color: var(--dc-dark-gray);
	line-height: 1.4;
	cursor: pointer;
	font-family: 'Araboto Normal', sans-serif;
	margin-bottom: 0;
}

.checkbox-group label a {
	color: var(--dc-white);
	text-decoration: underline;
}

.checkbox-group label a:hover {
	color: var(--dc-light-blue);
}

/* COOKIE BANNER STYLES */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(238, 238, 238, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 15px 20px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	display: none;
	animation: slideUp 0.4s ease-out;
	opacity: 0.8;
}

.cookie-banner.show {
	display: block;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slideDown {
	from {
		transform: translateY(0);
		opacity: 1;
	}
	to {
		transform: translateY(100%);
		opacity: 0;
	}
}

.cookie-banner-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.cookie-banner-content p {
	flex: 1;
	margin: 0;
	font-family: 'Araboto Normal', sans-serif;
	font-size: 0.95rem;
	color: var(--dc-dark-gray);
	line-height: 1.5;
}

.cookie-banner-content p a {
	color: var(--dc-blue);
	text-decoration: underline;
	font-weight: bold;
}

.cookie-banner-content p a:hover {
	color: var(--dc-light-blue);
}

.cookie-accept-btn {
	background-color: var(--dc-blue);
	color: var(--dc-white);
	border: none;
	padding: 10px 30px;
	border-radius: 5px;
	font-family: 'Bebas Neue';
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cookie-accept-btn:hover {
	background-color: var(--dc-light-blue);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.cookie-accept-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#instagram-feed {
	width: 90vw;
}

#google-reviews {
	width: 90vw;
}


/*

	MEDIA QUERIES FOR RESPONSIVE STYLES

*/


/* FIREFOX OPTIMIZATION */
/*
@-moz-document url-prefix() {
	.subsection {
		position: relative;
	}
	#instagram-feed {
		width: 60vw;
		height: 70vh;
	}
}
*/

/* VERY SMALL SCREEN SIZES (LIKE SMARTWATCHES, SMARTPHONES, LANDSCAPE VIEW, VIEW WITH KEYBOARD, ECC...) */
@media (max-height: 250px) {
	/* ALL THE CLASSES EXCEPT
		.video-container
		.section
		.typewriter-section
	*/

	#unsupported {
		display: block;
	}

	.navbar {
		display: none;
	}

	.panel {
		display: none;
	}

	.container {
		display: none;
	}

	.cookie-banner {
		opacity: 0;
	}
}

@media (max-height: 450px) {
	.intro-subtitle {
		display: none;
	}

	.navbar {
		height: 16vh;
	}
}

/* SMALL SMARTPHONES */
@media (max-width: 350px) {
	.navbar {
		height: 12vh;
	}

	.panel {
		height: 120vh;
	}

	.panel.second {
		height: 140vh;
	}

	.container {
		min-height: 120vh;
	}

	.intro-title {
		font-size: 3rem;
	}

	.intro-subtitle {
		font-size: 1rem;
	}

	.video-container-first {
		height: 40%;
	}

	.video-container-second {
		height: 30%;
	}
}

/* MEDIUM SMARTPHONES */

@media (min-width: 350px) and (max-width: 410px) {
	.panel {
		height: 120vh;
	}

	.container {
		min-height: 120vh;
	}

	.intro-title {
		font-size: 4rem;
	}

	.intro-subtitle {
		font-size: 1.5rem;
	}
}

/* BIG SMARTPHONES */
@media (min-width: 410px) and (max-width: 440px) {
	.panel {
		height: 140vh;
	}

	.container {
		min-height: 140vh;
	}

	.intro-title {
		font-size: 5rem;
	}

	.intro-subtitle {
		font-size: 1.5rem;
	}
}

@media (min-width: 500px) and (max-width: 740px) {
	.panel {
		height: 140vh;
	}

	.container {
		min-height: 140vh;
	}

	.flip-card-title {
		font-size: 5vw;
	}

	.flip-card-detail {
		font-size: 3.2vw;
	}

	.flip-card-logo {
		width: 20vw;
	}
}

/* TABLETS AND COMPUTERS */
@media (min-width: 740px) {
	.container {
		padding: 0%;
	}

	.panel {
		height: 100vh;
	}

	.big-title {
		font-size: 10vw;
	}

	.typewriter-title {
		font-size: 8vw;
	}

	.logo {
		width: 70vw;
	}

	.video-container-first {
		width: 50%;
		height: 90%;
		right: 5%;
		top: 5%;
		border-radius: 7px;
	}

	.text-container-first {
		width: 40%;
		height: auto;
		left: 20%;
		top: 50%;
		padding: 2% 0% 0% 5%;
		transform: translate(-50%, -50%);
	}

	.video-container-second {
		width: 50%;
		height: 90%;
		left: 5%;
		top: 5%;
		border-radius: 7px;
	}

	.text-container-second {
		width: 40%;
		height: auto;
		right: 20%;
		top: 50%;
		padding: 2% 5% 0% 0%;
		transform: translate(50%, -50%);
	}

	.intro {
		font-size: 30px;
	}

	.intro-title {
		font-size: 5rem;
	}

	.intro-subtitle {
		font-size: 1.5rem;
	}

	.grid-container {
		grid-template-columns: repeat(3, 1fr);
	}

	.flip-card {
		width: calc(33.33% - 4vw);
		height: 250px;
	}

	.flip-card-title {
		font-size: 2.5vw;
	}

	.flip-card-detail {
		font-size: 1rem;
	}

	.flip-card-front {
		flex-direction: row;
	}

	.flip-card-logo {
		width: 10vw;
		margin: 5%;
	}

	#contact-form {
		width: 50vw;
	}

	.contact-text {
		padding: 3% 0% 0% 0%;
	}

	.contact-text {
		font-size: 1.2rem;
	}

	.contact-link {
		font-size: 1.4rem;
	}

	#popup {
		width: 55vw;
	}
}

/* ONLY COMPUTERS */
@media (min-width: 1100px) {
	.flip-card-detail {
		font-size: 1.5vw;
	}

	.intro {
		font-size: 1.6vw;
	}

	.intro-title {
		font-size: 4vw;
	}

	.intro-subtitle {
		font-size: 1.6vw;
		text-align: justify;
	}
}

/* RESPONSIVE STYLES FOR PRIVACY POLICY PAGE */
@media (max-width: 768px) {
	.privacy-policy .intro-title {
		font-size: 3rem;
		margin-bottom: 30px;
	}

	.privacy-content {
		padding: 25px;
		border-radius: 10px;
	}

	.privacy-content h2 {
		font-size: 1.8rem;
		margin-top: 25px;
		margin-bottom: 15px;
	}

	.privacy-content p {
		font-size: 0.95rem;
	}

	.privacy-content li {
		font-size: 0.95rem;
		margin-bottom: 10px;
	}

	.back-button {
		height: 50px;
		padding: 12px 30px;
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.privacy-policy {
		padding-top: 80px;
	}

	.privacy-policy .intro-title {
		font-size: 2.5rem;
		margin-bottom: 20px;
	}

	.privacy-content {
		padding: 20px;
	}

	.privacy-content h2 {
		font-size: 1.5rem;
		margin-top: 20px;
	}

	.privacy-content p {
		font-size: 0.9rem;
		margin-bottom: 15px;
	}

	.privacy-content li {
		font-size: 0.9rem;
		padding-left: 20px;
	}

	.privacy-back {
		margin-top: 30px;
		padding-bottom: 30px;
	}
}

@media (max-width: 768px) {
	.cookie-banner-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.cookie-banner-content p {
		font-size: 0.9rem;
	}

	.cookie-accept-btn {
		width: 100%;
		padding: 12px 20px;
	}
}
