body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
	background: #f9f9f9;
	overflow-x: hidden;
}


/* HEADER */
header {
	border-bottom: 1px solid #eaeaea;
	background: #fff;
	position: relative;
	z-index: 1000;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.logo img {
	height: 75px;
	display: block;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
}

nav ul li {
	position: relative;
}

nav a {
	text-decoration: none;
	color: #666;
	font-size: 14px;
	text-transform: uppercase;
}

nav a:hover {
	color: #000;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	color: #333;
	padding: 0;
}

.has-submenu > a::after {
	font-size: 10px;
}

.submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid #eaeaea;
	padding: 8px 0;
	z-index: 1001;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.submenu li {
	width: 100%;
}

.submenu a {
	display: block;
	padding: 10px 16px;
	white-space: nowrap;
	text-transform: none;
	font-size: 14px;
	color: #666;
}

.submenu a:hover {
	background: #f5f5f5;
	color: #000;
}

.has-submenu:hover .submenu {
	display: block;
}

/* HERO */
.hero-banner {
	width: 100%;
	height: 320px;
	background-image: url('images/croatia-banner.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	position: relative;
}

.hero-content {
	max-width: 1200px;
	padding: 0 25px;
	color: #fff;
	position: relative;
	z-index: 1;
	bottom: 40px;
}

.hero-content h1 {
	margin: 0 0 10px 0;
	font-size: 36px;
}

.hero-content p {
	margin: 0;
	font-size: 18px;
}

/* MAIN */
main {
	min-height: 70vh;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* FOOTER */
footer {
	background: #fff;
	border-top: 1px solid #eaeaea;
	padding: 40px 20px;
	font-size: 14px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
}

.footer-title {
	font-weight: bold;
	margin-bottom: 10px;
}

.footer-links a {
	display: block;
	color: #666;
	text-decoration: none;
	margin-bottom: 6px;
}

.footer-links a:hover {
	color: #000;
}

.footer-description {
	color: #666;
	line-height: 1.6;
}

.footer-bottom {
	text-align: center;
	margin-top: 30px;
	color: #999;
	font-size: 13px;
}

/* COOKIE POPUP */
.cookie-popup {
	position: fixed;
	left: 14px;
	bottom: 14px;
	width: 388px;
	max-width: calc(100% - 28px);
	background: #f3f3f3;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
	z-index: 9999;
}

.cookie-popup-content {
	padding: 20px;
}

.cookie-popup h3 {
	margin: 0 0 14px 0;
	font-size: 18px;
	line-height: 1.3;
	color: #333;
}

.cookie-popup p {
	margin: 0 0 16px 0;
	font-size: 14px;
	line-height: 1.6;
	color: #555;
}

.cookie-divider {
	border-top: 1px solid #dddddd;
	margin: 10px 0 16px 0;
}

.cookie-actions button {
	display: block;
	width: 100%;
	height: 42px;
	margin-bottom: 8px;
	border: 0;
	border-radius: 6px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
}

.cookie-accept,
.cookie-reject {
	background: #303740;
	color: #fff;
}

.cookie-manage {
	background: #dfe3e6;
	color: #333;
}

.cookie-actions button:hover {
	opacity: 0.95;
}

.cookie-terms {
	margin-top: 14px;
	font-size: 14px;
}

.cookie-terms a {
	color: #666;
	text-decoration: none;
}

.cookie-terms a:hover {
	text-decoration: underline;
}

.cookie-popup.hidden {
	display: none;
}

.main-container.faq-page {
	max-width: 1120px;
	padding-top: 40px;
	padding-bottom: 60px;
}

.faq-page h1 {
	margin: 0 0 30px 0;
	font-size: 38px;
	line-height: 1.2;
	color: #1f1f1f;
}

.faq-item {
	margin-bottom: 14px;
	border: none;
	border-radius: 22px;
	background: #f5f5f5;
	box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.20) !important;
	overflow: hidden;
}

.faq-item summary {
	position: relative;
	list-style: none;
	cursor: pointer;
	padding: 28px 95px 28px 30px;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.4;
	color: #0f172a;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 36px;
	border-radius: 999px;
	background: #79B41C;
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.faq-item[open] summary::after {
	content: "-";
}

.faq-answer {
	padding: 15px 30px;
	color: #444;
	font-size: 16px;
	line-height: 1.8;
}

.faq-item.open .faq-answer {
	padding: 0 30px 28px 30px;
}

.faq-answer p {
	margin: 0 0 16px 0;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

/* TABLET / MOBILE */
@media (max-width: 768px) {

	* {
		box-sizing: border-box;
	}

	.header-container {
		padding: 12px 16px;
		min-height: 72px;
	}

	.logo img {
		height: 58px;
	}

	.menu-toggle {
		display: block;
	}

	nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		border-top: 1px solid #eaeaea;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	}

	nav.active {
		display: block;
	}

	nav ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 10px 16px;
	}

	nav ul li {
		width: 100%;
	}

	nav ul li a {
		display: block;
		width: 100%;
		padding: 12px 0;
		border-bottom: 1px solid #eee;
		white-space: normal;
	}

	.has-submenu:hover .submenu {
		display: block;
	}

	.submenu {
		display: block;
		position: static;
		border: none;
		box-shadow: none;
		padding: 0 0 8px 0;
		min-width: auto;
		background: transparent;
	}

	.submenu a {
		padding: 10px 0 10px 18px;
		border-bottom: 1px solid #eee;
		font-size: 13px;
	}

	.hero-banner {
		height: 240px;
		background-position: center;
	}

	.hero-content {
		padding: 0 16px;
		bottom: 45px;
	}

	.hero-content h1 {
		font-size: 28px;
		line-height: 1.2;
	}

	.hero-content p {
		font-size: 16px;
		line-height: 1.5;
	}

	main {
		padding: 16px;
	}

	.main-container.faq-page {
		padding-top: 24px;
		padding-bottom: 40px;
	}

	.faq-page h1 {
		font-size: 30px;
		margin-bottom: 24px;
	}

	.faq-item {
		border-radius: 18px;
	}

	.faq-item summary {
		padding: 22px 78px 22px 20px;
		font-size: 17px;
	}

	.faq-item summary::after {
		right: 16px;
		width: 46px;
		height: 32px;
		font-size: 20px;
	}

	.faq-answer {
		padding: 0 20px 22px 20px;
		font-size: 15px;
		line-height: 1.7;
	}
}

@media (max-width: 480px) {
	.logo img {
		height: 50px;
	}

	.menu-toggle {
		font-size: 28px;
	}

	.hero-banner {
		height: 200px;
	}

	.hero-content h1 {
		font-size: 24px;
	}

	.hero-content p {
		font-size: 15px;
	}

	.cookie-popup {
		left: 10px;
		right: 10px;
		bottom: 10px;
		width: auto;
	}
}