	* {
	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;
	}
	}
	.contact-hero-section {
	background: linear-gradient(135deg, #a88584 0%, #baa6a5 100%);
	padding: 80px 0 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
	}
	.contact-hero-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 300px;
	height: 300px;
	background: rgba(216, 210, 209, 0.15);
	border-radius: 50%;
	z-index: 1;
	}
	.hero-content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
	}
	.main-hero-title {
	font-size: 3.2rem;
	color: white;
	margin-bottom: 16px;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
	}
	.hero-subtitle {
	font-size: 1.4rem;
	color: rgba(255,255,255,0.9);
	margin-bottom: 0;
	font-weight: 300;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	}
	.contact-main-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 80px 20px;
	display: flex;
	gap: 60px;
	align-items: flex-start;
	}
	.contact-info-panel {
	flex: 1;
	background: #f8f6f6;
	border-radius: 16px;
	padding: 50px;
	border-left: 6px solid #a88584;
	box-shadow: 0 8px 32px rgba(168, 133, 132, 0.12);
	}
	.info-section-title {
	font-size: 2.4rem;
	color: #a88584;
	margin-bottom: 32px;
	font-weight: 600;
	position: relative;
	}
	.info-section-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 80px;
	height: 3px;
	background: #baa6a5;
	border-radius: 2px;
	}
	.contact-details-grid {
	display: grid;
	gap: 32px;
	margin-bottom: 40px;
	}
	.contact-detail-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background: white;
	border-radius: 12px;
	border: 1px solid #e8e3e2;
	}
	.detail-icon {
	width: 24px;
	height: 24px;
	background: #a88584;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 4px;
	}
	.detail-content h4 {
	font-size: 1.1rem;
	color: #a88584;
	margin: 0 0 8px 0;
	font-weight: 600;
	}
	.detail-content p {
	font-size: 1rem;
	color: #555;
	margin: 0;
	line-height: 1.6;
	}
	.business-hours-section {
	background: white;
	border-radius: 12px;
	padding: 24px;
	border: 1px solid #e8e3e2;
	}
	.hours-title {
	font-size: 1.3rem;
	color: #a88584;
	margin-bottom: 20px;
	font-weight: 600;
	}
	.hours-list {
	list-style: none;
	padding: 0;
	margin: 0;
	}
	.hours-item {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid #f0efef;
	}
	.hours-item:last-child {
	border-bottom: none;
	}
	.day-label {
	font-weight: 500;
	color: #333;
	}
	.time-range {
	color: #666;
	font-size: 0.95rem;
	}
	.contact-form-section {
	flex: 1.2;
	background: white;
	border-radius: 16px;
	padding: 50px;
	box-shadow: 0 12px 48px rgba(168, 133, 132, 0.08);
	border: 1px solid #e8e3e2;
	}
	.form-section-title {
	font-size: 2.4rem;
	color: #333;
	margin-bottom: 16px;
	font-weight: 600;
	}
	.form-description {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 40px;
	line-height: 1.6;
	}
	.inquiry-type-selector {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 32px;
	}
	.inquiry-type-option {
	position: relative;
	}
	.inquiry-type-radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	}
	.inquiry-type-label {
	display: block;
	padding: 16px 20px;
	background: #f8f6f6;
	border: 2px solid #e8e3e2;
	border-radius: 12px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	color: #555;
	}
	.inquiry-type-radio:checked + .inquiry-type-label {
	background: #a88584;
	color: white;
	border-color: #a88584;
	}
	.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 24px;
	}
	.form-field-group {
	display: flex;
	flex-direction: column;
	}
	.form-field-label {
	font-size: 1rem;
	color: #333;
	margin-bottom: 8px;
	font-weight: 500;
	}
	.form-input-field {
	padding: 16px 18px;
	border: 2px solid #e8e3e2;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: white;
	box-sizing: border-box;
	}
	.form-input-field:focus {
	outline: none;
	border-color: #a88584;
	box-shadow: 0 0 0 3px rgba(168, 133, 132, 0.1);
	}
	.subject-select-field {
	padding: 16px 18px;
	border: 2px solid #e8e3e2;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: white;
	cursor: pointer;
	box-sizing: border-box;
	}
	.subject-select-field:focus {
	outline: none;
	border-color: #a88584;
	box-shadow: 0 0 0 3px rgba(168, 133, 132, 0.1);
	}
	.message-textarea {
	min-height: 140px;
	resize: vertical;
	font-family: inherit;
	line-height: 1.6;
	}
	.privacy-consent-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 32px 0;
	padding: 20px;
	background: #f8f6f6;
	border-radius: 8px;
	border-left: 4px solid #a88584;
	}
	.privacy-checkbox {
	margin-top: 4px;
	cursor: pointer;
	}
	.privacy-consent-text {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.5;
	}
	.privacy-policy-link {
	color: #a88584;
	text-decoration: none;
	font-weight: 500;
	}
	.privacy-policy-link:hover {
	text-decoration: underline;
	}
	.submit-button {
	width: 100%;
	padding: 18px 24px;
	background: linear-gradient(135deg, #a88584, #baa6a5);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	}
	.submit-button:hover {
	background: linear-gradient(135deg, #96736f, #a89594);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(168, 133, 132, 0.3);
	}
	.response-expectations {
	background: #d8d2d1;
	border-radius: 12px;
	padding: 24px;
	margin-top: 32px;
	}
	.expectations-title {
	font-size: 1.2rem;
	color: #333;
	margin-bottom: 16px;
	font-weight: 600;
	}
	.expectations-list {
	list-style: none;
	padding: 0;
	margin: 0;
	}
	.expectations-item {
	padding: 6px 0;
	color: #555;
	font-size: 0.95rem;
	position: relative;
	padding-left: 20px;
	}
	.expectations-item::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #a88584;
	font-weight: bold;
	}
	@media (max-width: 768px) {
	.contact-hero-section {
	padding: 60px 0 40px;
	}
	.main-hero-title {
	font-size: 2.4rem;
	}
	.hero-subtitle {
	font-size: 1.2rem;
	}
	.contact-main-container {
	flex-direction: column;
	padding: 40px 16px;
	gap: 40px;
	}
	.contact-info-panel,
	.contact-form-section {
	padding: 30px 20px;
	}
	.info-section-title,
	.form-section-title {
	font-size: 2rem;
	}
	.inquiry-type-selector {
	grid-template-columns: 1fr;
	}
	.form-row {
	grid-template-columns: 1fr;
	gap: 20px;
	}
	.form-input-field,
	.subject-select-field {
	width: 100%;
	box-sizing: border-box;
	}
	.privacy-consent-wrapper {
	flex-direction: column;
	gap: 8px;
	}
	.privacy-checkbox {
	margin-top: 0;
	}
	}
	@media (max-width: 480px) {
	.contact-hero-section {
	padding: 40px 0 30px;
	}
	.main-hero-title {
	font-size: 2rem;
	}
	.hero-subtitle {
	font-size: 1.1rem;
	}
	.contact-main-container {
	padding: 30px 12px;
	}
	.contact-info-panel,
	.contact-form-section {
	padding: 24px 16px;
	}
	.form-field-label {
	font-size: 0.95rem;
	}
	.form-input-field,
	.subject-select-field {
	padding: 14px 16px;
	font-size: 16px;
	}
	.inquiry-type-label {
	padding: 14px 16px;
	font-size: 0.9rem;
	}
	}