* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}
	body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background: var(--white);
	font-size: 16px;
	}
	.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	}
	header {
	background: var(--white);
	border-bottom: 1px solid var(--border-light);
	box-shadow: 0 2px 8px var(--shadow-light);
	position: relative;
	z-index: 100;
	}
	.header-content {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 2rem;
	padding: 1.25rem 0;
	min-height: 80px;
	}
	.logo-container {
	display: flex;
	align-items: center;
	gap: 1rem;
	z-index: 101;
	position: relative;
	}
	.logo-container img {
	height: 45px;
	width: auto;
	display: block;
	}
	.brand-text {
	display: flex;
	flex-direction: column;
	}
	.brand-name {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.2;
	}
	.brand-tagline {
	font-size: 0.85rem;
	color: var(--text-light);
	font-weight: 400;
	}
	.nav-container {
	justify-self: end;
	z-index: 99;
	}
	.main-nav {
	display: flex;
	list-style: none;
	gap: 2.5rem;
	align-items: center;
	}
	.main-nav a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 0.95rem;
	padding: 0.75rem 1rem;
	border-radius: 6px;
	transition: all 0.3s ease;
	position: relative;
	white-space: nowrap;
	}
	.main-nav a:hover {
	background: var(--tertiary-color);
	color: var(--primary-color);
	}
	.main-nav a:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
	}
	footer {
	background: var(--tertiary-color);
	padding: 3rem 0 2rem;
	margin-top: 4rem;
	border-top: 1px solid var(--secondary-color);
	}
	.footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 2.5rem;
	}
	.footer-section h3 {
	color: var(--primary-color);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	border-bottom: 2px solid var(--secondary-color);
	padding-bottom: 0.5rem;
	}
	.footer-logo-section {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	}
	.footer-logo-section img {
	height: 40px;
	width: auto;
	margin-bottom: 0.75rem;
	}
	.company-description {
	color: var(--text-light);
	font-size: 0.9rem;
	line-height: 1.5;
	}
	.contact-info {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	}
	.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	color: var(--text-dark);
	font-size: 0.9rem;
	}
	.contact-label {
	font-weight: 500;
	min-width: 4rem;
	color: var(--primary-color);
	}
	.footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	}
	.footer-links a {
	color: var(--text-dark);
	text-decoration: none;
	font-size: 0.9rem;
	padding: 0.25rem 0;
	transition: color 0.3s ease;
	}
	.footer-links a:hover {
	color: var(--primary-color);
	}
	.footer-links a:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
	}
	.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--secondary-color);
	color: var(--text-light);
	font-size: 0.9rem;
	}
	.cookie-consent {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	max-width: 450px;
	background: var(--white);
	border: 2px solid var(--primary-color);
	border-radius: 12px;
	padding: 1.75rem;
	box-shadow: 0 8px 32px var(--shadow-medium);
	z-index: 1000;
	font-size: 0.9rem;
	line-height: 1.5;
	}
	.cookie-consent.hidden {
	display: none;
	}
	.cookie-content h4 {
	color: var(--primary-color);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	}
	.cookie-text {
	color: var(--text-dark);
	margin-bottom: 1.25rem;
	}
	.cookie-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	}
	.cookie-btn {
	padding: 0.75rem 1.25rem;
	border: none;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	min-height: 44px;
	}
	.cookie-btn.accept {
	background: var(--primary-color);
	color: var(--white);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}
	.cookie-btn.accept:hover {
	background: #155f99;
	}
	.cookie-btn.reject {
	background: transparent;
	color: var(--text-dark);
	border: 2px solid var(--secondary-color);
	}
	.cookie-btn.reject:hover {
	background: var(--tertiary-color);
	}
	.cookie-policy-link {
	display: block;
	text-align: center;
	color: var(--primary-color);
	text-decoration: none;
	font-size: 0.85rem;
	padding: 0.5rem;
	border-radius: 4px;
	}
	.cookie-policy-link:hover {
	background: var(--tertiary-color);
	}
	.cookie-btn:focus,
	.cookie-policy-link:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
	}
	@media (max-width: 991px) {
	.header-content {
	grid-template-columns: 1fr;
	gap: 1.25rem;
	text-align: center;
	padding: 1rem 0;
	}
	.nav-container {
	justify-self: center;
	}
	.main-nav {
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	}
	.footer-content {
	grid-template-columns: 1fr;
	gap: 2rem;
	text-align: center;
	}
	.contact-item {
	justify-content: center;
	}
	}
	@media (max-width: 767px) {
	.container {
	padding: 0 1rem;
	}
	.brand-name {
	font-size: 1.2rem;
	}
	.brand-tagline {
	font-size: 0.8rem;
	}
	.main-nav {
	gap: 1rem;
	}
	.main-nav a {
	font-size: 0.9rem;
	padding: 0.6rem 0.8rem;
	}
	.cookie-consent {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	right: auto;
	bottom: auto;
	width: 90%;
	max-width: none;
	padding: 2rem;
	font-size: 1rem;
	line-height: 1.6;
	}
	.cookie-content h4 {
	font-size: 1.2rem;
	}
	.cookie-text {
	font-size: 1rem;
	margin-bottom: 1.5rem;
	}
	.cookie-buttons {
	gap: 1rem;
	}
	.cookie-btn {
	font-size: 1.1rem;
	padding: 1rem 1.5rem;
	min-height: 50px;
	}
	.cookie-policy-link {
	font-size: 1rem;
	padding: 0.75rem;
	}
	}
	@media (max-width: 480px) {
	.main-nav {
	flex-direction: column;
	gap: 0.75rem;
	}
	.main-nav a {
	display: block;
	width: 100%;
	text-align: center;
	}
	}
	.privacy-policy-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 30px;
	width: 100%;
	box-sizing: border-box;
	}
	.privacy-hero-section {
	text-align: center;
	margin-bottom: 50px;
	padding: 40px 30px;
	background: linear-gradient(135deg, #E9F2FF 0%, #63A8E8 100%);
	border-radius: 12px;
	box-sizing: border-box;
	}
	.main-privacy-title {
	font-size: 2.8rem;
	color: #8B6914;
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.3;
	}
	.privacy-subtitle {
	font-size: 1.1rem;
	color: #6B5B47;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
	}
	.privacy-content-wrapper {
	background: #FFFFFF;
	border-radius: 8px;
	padding: 45px 40px;
	box-shadow: 0 4px 12px rgba(199, 161, 129, 0.15);
	margin-bottom: 30px;
	}
	.policy-section-header {
	font-size: 1.8rem;
	color: #8B6914;
	margin: 40px 0 25px 0;
	font-weight: 600;
	border-bottom: 3px solid #1B7CC1;
	padding-bottom: 10px;
	line-height: 1.4;
	}
	.policy-section-header:first-of-type {
	margin-top: 0;
	}
	.policy-subsection-title {
	font-size: 1.3rem;
	color: #A0824A;
	margin: 30px 0 15px 0;
	font-weight: 500;
	line-height: 1.4;
	}
	.privacy-text-block {
	color: #4A4A4A;
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 20px;
	text-align: justify;
	overflow-wrap: break-word;
	word-wrap: break-word;
	}
	.privacy-list-container {
	margin: 25px 0;
	padding-left: 0;
	}
	.privacy-list-item {
	color: #4A4A4A;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 12px;
	padding-left: 25px;
	position: relative;
	list-style: none;
	overflow-wrap: break-word;
	word-wrap: break-word;
	}
	.privacy-list-item:before {
	content: "•";
	color: #1B7CC1;
	font-size: 1.2rem;
	position: absolute;
	left: 0;
	top: 0;
	}
	.contact-info-section {
	background: #E9F2FF;
	border-radius: 8px;
	padding: 35px;
	margin-top: 40px;
	text-align: center;
	}
	.contact-section-title {
	font-size: 1.5rem;
	color: #8B6914;
	margin-bottom: 20px;
	font-weight: 600;
	}
	.contact-detail-text {
	color: #6B5B47;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 10px;
	}
	.highlight-box {
	background: #63A8E8;
	border-left: 5px solid #1B7CC1;
	padding: 25px;
	margin: 25px 0;
	border-radius: 0 8px 8px 0;
	}
	.highlight-text {
	color: #8B6914;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
	font-weight: 500;
	}
	.data-table-wrapper {
	overflow-x: auto;
	margin: 25px 0;
	border-radius: 8px;
	border: 1px solid #63A8E8;
	}
	.privacy-data-table {
	width: 100%;
	border-collapse: collapse;
	background: #FFFFFF;
	}
	.table-header-cell {
	background: #1B7CC1;
	color: #FFFFFF;
	padding: 15px 20px;
	font-weight: 600;
	text-align: left;
	border-bottom: 2px solid #A0824A;
	}
	.table-data-cell {
	padding: 15px 20px;
	border-bottom: 1px solid #E9F2FF;
	color: #4A4A4A;
	vertical-align: top;
	line-height: 1.5;
	}
	.effective-date-notice {
	text-align: center;
	margin-top: 50px;
	padding: 20px;
	background: #F9F6F2;
	border-radius: 8px;
	border: 1px solid #63A8E8;
	}
	.date-notice-text {
	color: #6B5B47;
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
	font-style: italic;
	}
	@media (max-width: 768px) {
	.privacy-policy-container {
	padding: 30px 20px;
	}
	.privacy-hero-section {
	padding: 30px 20px;
	margin-bottom: 35px;
	}
	.main-privacy-title {
	font-size: 2.2rem;
	margin-bottom: 15px;
	}
	.privacy-subtitle {
	font-size: 1rem;
	}
	.privacy-content-wrapper {
	padding: 30px 25px;
	margin-bottom: 25px;
	}
	.policy-section-header {
	font-size: 1.5rem;
	margin: 30px 0 20px 0;
	}
	.policy-subsection-title {
	font-size: 1.2rem;
	margin: 25px 0 12px 0;
	}
	.privacy-text-block {
	font-size: 0.95rem;
	text-align: left;
	margin-bottom: 18px;
	}
	.privacy-list-item {
	font-size: 0.95rem;
	padding-left: 20px;
	}
	.contact-info-section {
	padding: 25px 20px;
	margin-top: 30px;
	}
	.contact-section-title {
	font-size: 1.3rem;
	margin-bottom: 15px;
	}
	.contact-detail-text {
	font-size: 0.95rem;
	}
	.highlight-box {
	padding: 20px;
	margin: 20px 0;
	}
	.highlight-text {
	font-size: 0.95rem;
	}
	.table-header-cell,
	.table-data-cell {
	padding: 12px 15px;
	font-size: 0.9rem;
	}
	}
	@media (max-width: 480px) {
	.privacy-policy-container {
	padding: 20px 15px;
	}
	.main-privacy-title {
	font-size: 1.9rem;
	}
	.privacy-content-wrapper {
	padding: 25px 20px;
	}
	.policy-section-header {
	font-size: 1.4rem;
	}
	.contact-info-section {
	padding: 20px 15px;
	}
	}
