	* {
	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;
	}
	}
	.partners-main-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
	}
	.hero-partnerships-section {
	background: linear-gradient(135deg, #a88584 0%, #baa6a5 100%);
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 60px;
	border-radius: 0 0 40px 40px;
	overflow: hidden;
	}
	.hero-partnerships-content {
	text-align: center;
	color: white;
	z-index: 2;
	position: relative;
	max-width: 800px;
	padding: 40px 30px;
	}
	.hero-partnerships-title {
	font-size: 3.2em;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
	line-height: 1.2;
	}
	.hero-partnerships-subtitle {
	font-size: 1.3em;
	opacity: 0.95;
	margin-bottom: 30px;
	line-height: 1.6;
	font-weight: 300;
	}
	.hero-partnerships-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 300px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	transform: translate(100px, -100px);
	}
	.strategic-alliances-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 80px;
	align-items: stretch;
	}
	.alliance-content-block {
	background: #f8f7f7;
	padding: 45px 35px;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	}
	.alliance-content-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(to bottom, #a88584, #baa6a5);
	}
	.alliance-block-title {
	font-size: 1.8em;
	color: #5d4a49;
	margin-bottom: 25px;
	font-weight: 600;
	line-height: 1.3;
	}
	.alliance-block-text {
	color: #6b5958;
	line-height: 1.7;
	font-size: 1.05em;
	margin-bottom: 25px;
	}
	.benefits-highlight-list {
	list-style: none;
	padding: 0;
	margin: 0;
	}
	.benefits-highlight-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
	padding-left: 30px;
	position: relative;
	}
	.benefits-highlight-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	color: #a88584;
	font-weight: bold;
	font-size: 1.2em;
	}
	.partnership-showcase-section {
	background: url('./gallery/vUqalPx.jpg') center center/cover;
	min-height: 500px;
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 70px;
	border-radius: 25px;
	overflow: hidden;
	}
	.partnership-showcase-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(168,133,132,0.85) 0%, rgba(186,166,165,0.75) 100%);
	}
	.showcase-content-wrapper {
	position: relative;
	z-index: 2;
	max-width: 600px;
	padding: 50px;
	color: white;
	}
	.showcase-main-heading {
	font-size: 2.5em;
	margin-bottom: 25px;
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
	}
	.showcase-description-text {
	font-size: 1.2em;
	line-height: 1.6;
	margin-bottom: 35px;
	opacity: 0.95;
	}
	.partnership-value-cards {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
	}
	.value-card-item {
	background: rgba(255,255,255,0.15);
	padding: 20px;
	border-radius: 15px;
	backdrop-filter: blur(10px);
	flex: 1;
	min-width: 200px;
	}
	.value-card-number {
	font-size: 2.2em;
	font-weight: 700;
	color: #d8d2d1;
	margin-bottom: 8px;
	}
	.value-card-label {
	font-size: 0.95em;
	opacity: 0.9;
	font-weight: 500;
	}
	.collaboration-framework-section {
	background: white;
	border: 2px solid #d8d2d1;
	border-radius: 30px;
	padding: 60px 50px;
	margin-bottom: 60px;
	position: relative;
	}
	.framework-header-area {
	text-align: center;
	margin-bottom: 50px;
	}
	.framework-main-title {
	font-size: 2.4em;
	color: #5d4a49;
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.3;
	}
	.framework-intro-text {
	font-size: 1.15em;
	color: #6b5958;
	line-height: 1.6;
	max-width: 700px;
	margin: 0 auto;
	}
	.collaboration-process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
	}
	.process-step-card {
	text-align: center;
	padding: 35px 25px;
	background: linear-gradient(135deg, #f9f8f8 0%, #f2f1f1 100%);
	border-radius: 20px;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	}
	.process-step-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(168,133,132,0.2);
	}
	.step-number-circle {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #a88584 0%, #baa6a5 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	color: white;
	font-size: 1.5em;
	font-weight: 700;
	}
	.step-title-text {
	font-size: 1.4em;
	color: #5d4a49;
	margin-bottom: 15px;
	font-weight: 600;
	line-height: 1.3;
	}
	.step-description-text {
	color: #6b5958;
	line-height: 1.6;
	font-size: 1em;
	}
	@media (max-width: 768px) {
	.partners-main-container {
	padding: 0 16px;
	}
	.hero-partnerships-section {
	min-height: 300px;
	margin-bottom: 40px;
	border-radius: 0 0 20px 20px;
	}
	.hero-partnerships-content {
	padding: 30px 20px;
	}
	.hero-partnerships-title {
	font-size: 2.2em;
	margin-bottom: 15px;
	}
	.hero-partnerships-subtitle {
	font-size: 1.1em;
	margin-bottom: 20px;
	}
	.strategic-alliances-grid {
	grid-template-columns: 1fr;
	gap: 25px;
	margin-bottom: 50px;
	}
	.alliance-content-block {
	padding: 30px 25px;
	border-radius: 15px;
	}
	.alliance-block-title {
	font-size: 1.5em;
	margin-bottom: 20px;
	}
	.partnership-showcase-section {
	min-height: 400px;
	margin-bottom: 50px;
	border-radius: 15px;
	}
	.showcase-content-wrapper {
	padding: 30px 25px;
	}
	.showcase-main-heading {
	font-size: 2em;
	margin-bottom: 20px;
	}
	.showcase-description-text {
	font-size: 1.1em;
	margin-bottom: 25px;
	}
	.partnership-value-cards {
	flex-direction: column;
	gap: 15px;
	}
	.collaboration-framework-section {
	padding: 40px 25px;
	border-radius: 20px;
	margin-bottom: 40px;
	}
	.framework-main-title {
	font-size: 1.9em;
	margin-bottom: 15px;
	}
	.framework-intro-text {
	font-size: 1.05em;
	}
	.collaboration-process-grid {
	grid-template-columns: 1fr;
	gap: 25px;
	}
	.process-step-card {
	padding: 30px 20px;
	}
	.step-number-circle {
	width: 50px;
	height: 50px;
	font-size: 1.3em;
	margin-bottom: 20px;
	}
	.step-title-text {
	font-size: 1.2em;
	margin-bottom: 12px;
	}
	}
	@media (max-width: 480px) {
	.hero-partnerships-title {
	font-size: 1.8em;
	}
	.alliance-block-title {
	font-size: 1.3em;
	}
	.showcase-main-heading {
	font-size: 1.7em;
	}
	.framework-main-title {
	font-size: 1.6em;
	}
	.collaboration-framework-section {
	padding: 30px 20px;
	}
	}