	* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}
	:root {
	--primary-color: #a88584;
	--secondary-color: #baa6a5;
	--tertiary-color: #d8d2d1;
	--text-dark: #2c2c2c;
	--text-light: #555555;
	--background-light: #fefefe;
	--border-light: #e8e8e8;
	--shadow-soft: 0 2px 8px rgba(168, 133, 132, 0.1);
	}
	body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--background-light);
	}
	.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	}
	header {
	background-color: var(--background-light);
	border-bottom: 1px solid var(--border-light);
	box-shadow: var(--shadow-soft);
	position: relative;
	}
	.header-content {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 2rem;
	min-height: 80px;
	padding: 1rem 0;
	}
	.logo-container {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	position: relative;
	z-index: 10;
	}
	.logo-container img {
	height: 45px;
	width: auto;
	display: block;
	}
	.brand-info h1 {
	font-size: clamp(1.2rem, 2.5vw, 1.5rem);
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.2rem;
	}
	.brand-info p {
	font-size: clamp(0.8rem, 1.5vw, 0.9rem);
	color: var(--text-light);
	font-weight: 400;
	}
	.main-navigation {
	justify-self: end;
	position: relative;
	z-index: 5;
	}
	.nav-list {
	display: flex;
	list-style: none;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: flex-end;
	}
	.nav-list li {
	position: relative;
	}
	.nav-list a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	padding: 0.5rem 0;
	transition: color 0.2s ease;
	display: block;
	min-height: 44px;
	line-height: 1.4;
	outline: 2px solid transparent;
	outline-offset: 2px;
	}
	.nav-list a:hover {
	color: var(--primary-color);
	}
	.nav-list a:focus {
	outline-color: var(--primary-color);
	color: var(--primary-color);
	}
	footer {
	background: linear-gradient(135deg, var(--tertiary-color), var(--secondary-color));
	color: var(--text-dark);
	padding: 3rem 0 1.5rem;
	margin-top: auto;
	}
	.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
	margin-bottom: 2rem;
	}
	.footer-section h3 {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	}
	.contact-info {
	line-height: 1.8;
	}
	.contact-info p {
	margin-bottom: 0.8rem;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	}
	.contact-info strong {
	color: var(--primary-color);
	min-width: 4rem;
	font-weight: 500;
	}
	.footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	}
	.footer-links a {
	color: var(--text-dark);
	text-decoration: none;
	transition: color 0.2s ease;
	font-weight: 400;
	min-height: 44px;
	display: flex;
	align-items: center;
	outline: 2px solid transparent;
	outline-offset: 2px;
	}
	.footer-links a:hover {
	color: var(--primary-color);
	}
	.footer-links a:focus {
	outline-color: var(--primary-color);
	color: var(--primary-color);
	}
	.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(168, 133, 132, 0.2);
	color: var(--text-light);
	font-size: 0.9rem;
	}
	.cookie-consent {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: var(--background-light);
	border: 2px solid var(--primary-color);
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 8px 32px rgba(168, 133, 132, 0.2);
	z-index: 1000;
	max-width: 600px;
	margin: 0 auto;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
	}
	.cookie-consent.show {
	transform: translateY(0);
	opacity: 1;
	}
	.cookie-content h4 {
	color: var(--primary-color);
	margin-bottom: 0.8rem;
	font-size: 1.1rem;
	font-weight: 600;
	}
	.cookie-content p {
	color: var(--text-dark);
	margin-bottom: 1.2rem;
	line-height: 1.5;
	font-size: 0.95rem;
	}
	.cookie-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
	}
	.cookie-btn {
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 6px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 0.9rem;
	min-height: 44px;
	outline: 2px solid transparent;
	outline-offset: 2px;
	}
	.cookie-accept {
	background: var(--primary-color);
	color: white;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	}
	.cookie-accept:hover {
	background: #9a7a79;
	}
	.cookie-accept:focus {
	outline-color: var(--text-dark);
	}
	.cookie-reject {
	background: var(--tertiary-color);
	color: var(--text-dark);
	border: 1px solid var(--secondary-color);
	}
	.cookie-reject:hover {
	background: var(--secondary-color);
	}
	.cookie-reject:focus {
	outline-color: var(--primary-color);
	}
	.cookie-learn {
	color: var(--primary-color);
	text-decoration: underline;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 500;
	padding: 0.5rem;
	min-height: 44px;
	outline: 2px solid transparent;
	outline-offset: 2px;
	}
	.cookie-learn:hover {
	color: #9a7a79;
	}
	.cookie-learn:focus {
	outline-color: var(--primary-color);
	}
	@media (max-width: 768px) {
	.header-content {
	grid-template-columns: 1fr;
	gap: 1.5rem;
	text-align: center;
	}
	.main-navigation {
	justify-self: center;
	}
	.nav-list {
	justify-content: center;
	gap: 1.5rem;
	}
	.footer-content {
	grid-template-columns: 1fr;
	text-align: center;
	}
	.cookie-consent {
	position: fixed;
	top: 50%;
	left: 50%;
	right: auto;
	bottom: auto;
	transform: translate(-50%, -50%);
	max-width: 85%;
	width: 85%;
	padding: 2rem;
	}
	.cookie-consent.show {
	transform: translate(-50%, -50%);
	}
	.cookie-content h4 {
	font-size: 1.2rem;
	}
	.cookie-content p {
	font-size: 1.1rem;
	line-height: 1.6;
	}
	.cookie-actions {
	flex-direction: column;
	gap: 1.2rem;
	}
	.cookie-btn {
	width: 100%;
	padding: 1.2rem;
	font-size: 1.1rem;
	min-height: 50px;
	}
	.cookie-learn {
	font-size: 1rem;
	padding: 1rem;
	min-height: 50px;
	}
	}
	@media (max-width: 480px) {
	.nav-list {
	gap: 1rem;
	}
	.nav-list a {
	font-size: 0.9rem;
	}
	.container {
	padding: 0 15px;
	}
	}
	.cookie-policy-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	}
	.policy-header-section {
	text-align: center;
	background: linear-gradient(135deg, #a88584 0%, #baa6a5 50%, #d8d2d1 100%);
	padding: 60px 30px;
	border-radius: 15px;
	margin-bottom: 50px;
	box-shadow: 0 8px 25px rgba(168, 133, 132, 0.15);
	}
	.policy-main-title {
	font-size: 2.8em;
	font-weight: 700;
	color: white;
	margin-bottom: 15px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	}
	.policy-subtitle {
	font-size: 1.2em;
	color: white;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	}
	.cookie-control-panel {
	background: #f8f7f6;
	border: 2px solid #d8d2d1;
	border-radius: 12px;
	padding: 35px;
	margin: 40px 0;
	text-align: center;
	}
	.current-status-display {
	font-size: 1.1em;
	margin-bottom: 25px;
	color: #555;
	font-weight: 600;
	}
	.reject-cookies-btn {
	background: linear-gradient(45deg, #a88584, #baa6a5);
	color: white;
	border: none;
	padding: 15px 35px;
	font-size: 1.1em;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	box-shadow: 0 4px 12px rgba(168, 133, 132, 0.3);
	}
	.reject-cookies-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(168, 133, 132, 0.4);
	background: linear-gradient(45deg, #9a7978, #b09f9e);
	}
	.policy-content-section {
	background: white;
	border-radius: 10px;
	padding: 45px;
	margin: 30px 0;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	border-left: 5px solid #a88584;
	}
	.section-heading {
	font-size: 1.8em;
	color: #a88584;
	margin-bottom: 20px;
	font-weight: 600;
	position: relative;
	}
	.section-heading::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #a88584, #baa6a5);
	border-radius: 2px;
	}
	.policy-text-block {
	font-size: 1em;
	line-height: 1.7;
	color: #444;
	margin-bottom: 20px;
	}
	.cookie-types-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	margin: 30px 0;
	}
	.cookie-type-card {
	background: #faf9f8;
	border: 1px solid #d8d2d1;
	border-radius: 10px;
	padding: 25px;
	transition: transform 0.2s ease;
	}
	.cookie-type-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(168, 133, 132, 0.15);
	}
	.cookie-type-title {
	font-size: 1.3em;
	color: #a88584;
	font-weight: 600;
	margin-bottom: 12px;
	}
	.cookie-type-desc {
	font-size: 0.95em;
	color: #555;
	line-height: 1.6;
	}
	.essential-cookies-info {
	background: #e8f4e8;
	border-left: 4px solid #4a7c59;
	padding: 20px;
	border-radius: 8px;
	margin: 25px 0;
	}
	.essential-note {
	font-weight: 600;
	color: #2d4a35;
	margin-bottom: 10px;
	}
	.browser-guide-section {
	background: linear-gradient(135deg, #f5f4f3 0%, #eae7e6 100%);
	border-radius: 12px;
	padding: 40px;
	margin: 35px 0;
	}
	.browser-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-around;
	margin: 25px 0;
	}
	.browser-item {
	background: white;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	min-width: 150px;
	}
	.browser-name {
	font-weight: 600;
	color: #a88584;
	margin-bottom: 8px;
	}
	.contact-info-block {
	background: linear-gradient(135deg, #a88584 0%, #baa6a5 100%);
	color: white;
	padding: 35px;
	border-radius: 12px;
	text-align: center;
	margin: 40px 0;
	}
	.contact-title {
	font-size: 1.5em;
	margin-bottom: 20px;
	font-weight: 600;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	}
	.contact-details {
	font-size: 1em;
	line-height: 1.6;
	opacity: 0.95;
	}
	.last-updated-notice {
	text-align: center;
	font-style: italic;
	color: #666;
	margin-top: 40px;
	padding: 15px;
	background: #f9f8f7;
	border-radius: 8px;
	font-size: 0.9em;
	}
	@media (max-width: 768px) {
	.cookie-policy-container {
	padding: 20px 15px;
	}
	.policy-header-section {
	padding: 40px 20px;
	margin-bottom: 30px;
	}
	.policy-main-title {
	font-size: 2.2em;
	}
	.policy-subtitle {
	font-size: 1.1em;
	}
	.policy-content-section {
	padding: 25px;
	margin: 20px 0;
	}
	.section-heading {
	font-size: 1.5em;
	}
	.cookie-types-grid {
	grid-template-columns: 1fr;
	gap: 20px;
	}
	.browser-list {
	flex-direction: column;
	align-items: center;
	}
	.browser-item {
	width: 100%;
	max-width: 250px;
	}
	.cookie-control-panel {
	padding: 25px;
	}
	.reject-cookies-btn {
	padding: 12px 25px;
	font-size: 1em;
	}
	}
	@media (max-width: 480px) {
	.policy-main-title {
	font-size: 1.8em;
	}
	.policy-content-section {
	padding: 20px;
	}
	.section-heading {
	font-size: 1.3em;
	}
	}