	* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}
	:root {
	--primary-color: #9290C5;
	--secondary-color: #B7B2D9;
	--tertiary-color: #DBD8EF;
	--gradient-bg: linear-gradient(45deg, #9290C5 0%, #B7B2D9 50%, #DBD8EF 100%);
	--glass-bg: rgba(219, 216, 239, 0.15);
	--text-dark: #2D2A4A;
	--text-light: rgba(45, 42, 74, 0.8);
	--white: #FFFFFF;
	}
	html {
	font-size: 16px;
	scroll-behavior: smooth;
	}
	body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background: linear-gradient(135deg, #F8F7FF 0%, #F0EEFF 100%);
	min-height: 100vh;
	}
	header {
	background: var(--gradient-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(146, 144, 197, 0.1);
	}
	header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--glass-bg);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	z-index: -1;
	}
	.header-row {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2rem;
	min-height: 40px;
	}
	.header-row-1 {
	padding-top: 30px;
	padding-bottom: 15px;
	}
	.header-row-2 {
	padding-bottom: 15px;
	}
	.header-row-3 {
	padding-bottom: 30px;
	}
	.logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
	}
	.logo-container img {
	height: 50px;
	width: auto;
	transition: opacity 0.3s ease;
	}
	.company-name {
	font-family: 'Playfair Display', serif;
	font-size: 2.8rem;
	font-weight: 600;
	color: var(--white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	letter-spacing: -0.5px;
	}
	.main-navigation {
	display: flex;
	gap: 3rem;
	list-style: none;
	}
	.main-navigation li a {
	color: var(--white);
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1rem;
	padding: 0.8rem 1.5rem;
	border-radius: 25px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	}
	.main-navigation li a:hover,
	.main-navigation li a:focus {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	outline: 2px solid var(--white);
	outline-offset: 2px;
	}
	main {
	flex: 1;
	padding: 0;
	}
	footer {
	background: var(--gradient-bg);
	color: var(--white);
	position: relative;
	overflow: hidden;
	margin-top: auto;
	}
	footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: -1;
	}
	.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem 2rem;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 3rem;
	align-items: start;
	}
	.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	}
	.footer-logo {
	display: flex;
	align-items: center;
	gap: 1rem;
	}
	.footer-logo img {
	height: 40px;
	width: auto;
	}
	.footer-logo-text {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--white);
	}
	.contact-info {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	font-size: 0.95rem;
	line-height: 1.5;
	}
	.contact-info p {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	}
	.contact-info strong {
	min-width: 60px;
	color: var(--tertiary-color);
	}
	.footer-links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	}
	.footer-links h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: var(--tertiary-color);
	}
	.footer-links ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	}
	.footer-links a {
	color: var(--white);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	padding: 0.3rem 0;
	}
	.footer-links a:hover,
	.footer-links a:focus {
	color: var(--tertiary-color);
	transform: translateX(5px);
	outline: 2px solid var(--white);
	outline-offset: 2px;
	padding-left: 0.5rem;
	}
	.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 1.5rem 2rem;
	text-align: center;
	margin-top: 2rem;
	}
	.footer-bottom p {
	font-size: 0.9rem;
	opacity: 0.9;
	}
	.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 500px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(146, 144, 197, 0.2);
	z-index: 10000;
	display: none;
	}
	.cookie-popup.show {
	display: block;
	animation: slideUp 0.4s ease-out;
	}
	@keyframes slideUp {
	from {
	transform: translateY(100px);
	opacity: 0;
	}
	to {
	transform: translateY(0);
	opacity: 1;
	}
	}
	.cookie-popup h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	color: var(--text-dark);
	margin-bottom: 1rem;
	}
	.cookie-popup p {
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	}
	.cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	}
	.cookie-btn {
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 25px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.95rem;
	}
	.cookie-accept {
	background: var(--gradient-bg);
	color: var(--white);
	flex: 1;
	min-width: 120px;
	}
	.cookie-accept:hover,
	.cookie-accept:focus {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(146, 144, 197, 0.3);
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
	}
	.cookie-reject {
	background: transparent;
	color: var(--text-dark);
	border: 2px solid var(--secondary-color);
	flex: 1;
	min-width: 120px;
	}
	.cookie-reject:hover,
	.cookie-reject:focus {
	background: var(--secondary-color);
	color: var(--white);
	outline: 2px solid var(--text-dark);
	outline-offset: 2px;
	}
	.cookie-policy-link {
	color: var(--primary-color);
	text-decoration: underline;
	font-weight: 500;
	transition: color 0.3s ease;
	}
	.cookie-policy-link:hover,
	.cookie-policy-link:focus {
	color: var(--text-dark);
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
	}
	@media (max-width: 768px) {
	.header-row {
	padding: 0 1rem;
	}
	.company-name {
	font-size: 2.2rem;
	}
	.main-navigation {
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	}
	.main-navigation li a {
	padding: 0.7rem 1.2rem;
	font-size: 1rem;
	}
	.footer-content {
	grid-template-columns: 1fr;
	gap: 2rem;
	padding: 3rem 1rem 2rem;
	}
	.cookie-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	right: auto;
	bottom: auto;
	width: 85%;
	max-width: 400px;
	padding: 2.5rem;
	}
	.cookie-popup h3 {
	font-size: 1.6rem;
	}
	.cookie-popup p {
	font-size: 1.1rem;
	line-height: 1.7;
	}
	.cookie-buttons {
	flex-direction: column;
	gap: 1.2rem;
	}
	.cookie-btn {
	padding: 1rem 1.5rem;
	font-size: 1.1rem;
	min-height: 50px;
	}
	.cookie-policy-link {
	font-size: 1.1rem;
	}
	}
	@media (max-width: 480px) {
	.company-name {
	font-size: 1.8rem;
	}
	.main-navigation {
	gap: 0.8rem;
	}
	.cookie-popup {
	width: 90%;
	padding: 2rem;
	}
	}
	@media (prefers-reduced-motion: reduce) {
	.cookie-popup.show {
	animation: none;
	}
	.main-navigation li a:hover,
	.cookie-accept:hover,
	.footer-links a:hover {
	transform: none;
	}
	}
	.about-hero-section {
	background: linear-gradient(135deg, #9290C5 0%, #B7B2D9 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
	}
	.about-hero-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 60%;
	height: 200%;
	background: rgba(219, 216, 239, 0.1);
	border-radius: 50%;
	transform: rotate(-15deg);
	}
	.hero-content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 2;
	}
	.hero-main-title {
	color: white;
	font-size: 3.2em;
	font-weight: 700;
	text-align: center;
	margin-bottom: 25px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
	line-height: 1.2;
	}
	.hero-subtitle {
	color: rgba(255,255,255,0.95);
	font-size: 1.4em;
	text-align: center;
	max-width: 800px;
	margin: 0 auto 40px;
	line-height: 1.6;
	}
	.approach-grid-section {
	padding: 100px 0;
	background: #f8f9fa;
	position: relative;
	}
	.approach-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
	}
	.approach-section-header {
	text-align: center;
	margin-bottom: 80px;
	}
	.approach-main-heading {
	color: #2c3e50;
	font-size: 2.8em;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.3;
	}
	.approach-intro-text {
	color: #5a6c7d;
	font-size: 1.2em;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
	}
	.innovation-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: stretch;
	}
	.innovation-content-block {
	background: white;
	border-radius: 20px;
	padding: 50px 40px;
	box-shadow: 0 8px 30px rgba(146, 144, 197, 0.15);
	position: relative;
	overflow: hidden;
	}
	.innovation-content-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #9290C5, #B7B2D9);
	}
	.innovation-block-title {
	color: #9290C5;
	font-size: 1.8em;
	font-weight: 600;
	margin-bottom: 25px;
	line-height: 1.4;
	}
	.innovation-description {
	color: #4a5568;
	font-size: 1.05em;
	line-height: 1.7;
	margin-bottom: 30px;
	}
	.innovation-highlight-box {
	background: linear-gradient(135deg, #DBD8EF 0%, rgba(219, 216, 239, 0.5) 100%);
	padding: 25px;
	border-radius: 15px;
	border-left: 4px solid #9290C5;
	}
	.highlight-text {
	color: #2d3748;
	font-size: 1.1em;
	font-weight: 500;
	margin: 0;
	line-height: 1.6;
	}
	.innovation-visual-block {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 400px;
	}
	.innovation-background-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	}
	.visual-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(146, 144, 197, 0.8) 0%, rgba(183, 178, 217, 0.6) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	}
	.overlay-content {
	text-align: center;
	color: white;
	}
	.overlay-title {
	font-size: 2em;
	font-weight: 700;
	margin-bottom: 15px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
	line-height: 1.3;
	}
	.overlay-subtitle {
	font-size: 1.1em;
	opacity: 0.95;
	line-height: 1.6;
	}
	.process-timeline-section {
	padding: 120px 0;
	background: white;
	position: relative;
	}
	.timeline-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	}
	.timeline-header {
	text-align: center;
	margin-bottom: 90px;
	}
	.timeline-main-title {
	color: #2c3e50;
	font-size: 2.6em;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.3;
	}
	.timeline-subtitle {
	color: #5a6c7d;
	font-size: 1.2em;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
	}
	.process-timeline-wrapper {
	position: relative;
	padding-left: 80px;
	}
	.timeline-line {
	position: absolute;
	left: 30px;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #9290C5 0%, #B7B2D9 50%, #DBD8EF 100%);
	}
	.timeline-step {
	position: relative;
	margin-bottom: 60px;
	padding-left: 0;
	}
	.timeline-step:last-child {
	margin-bottom: 0;
	}
	.step-marker {
	position: absolute;
	left: -65px;
	top: 10px;
	width: 24px;
	height: 24px;
	background: #9290C5;
	border: 4px solid white;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(146, 144, 197, 0.4);
	z-index: 3;
	}
	.step-content-card {
	background: #f8f9fa;
	border-radius: 16px;
	padding: 35px;
	position: relative;
	border-left: 4px solid #B7B2D9;
	}
	.step-title {
	color: #9290C5;
	font-size: 1.6em;
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1.4;
	}
	.step-description {
	color: #4a5568;
	font-size: 1.05em;
	line-height: 1.7;
	margin-bottom: 20px;
	}
	.step-example {
	background: white;
	padding: 20px;
	border-radius: 12px;
	border-left: 3px solid #DBD8EF;
	}
	.example-text {
	color: #2d3748;
	font-size: 0.95em;
	font-style: italic;
	margin: 0;
	line-height: 1.6;
	}
	.team-showcase-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #DBD8EF 0%, rgba(219, 216, 239, 0.3) 100%);
	position: relative;
	}
	.team-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 30px;
	}
	.team-section-header {
	text-align: center;
	margin-bottom: 80px;
	}
	.team-main-heading {
	color: #2c3e50;
	font-size: 2.7em;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.3;
	}
	.team-intro-description {
	color: #5a6c7d;
	font-size: 1.2em;
	max-width: 750px;
	margin: 0 auto;
	line-height: 1.7;
	}
	.team-members-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-top: 60px;
	}
	.team-member-card {
	background: white;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(146, 144, 197, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	}
	.team-member-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(146, 144, 197, 0.3);
	}
	.member-image-container {
	position: relative;
	height: 280px;
	overflow: hidden;
	}
	.member-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	}
	.member-info-section {
	padding: 35px;
	}
	.member-name {
	color: #2c3e50;
	font-size: 1.5em;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.3;
	}
	.member-role {
	color: #9290C5;
	font-size: 1.1em;
	font-weight: 500;
	margin-bottom: 20px;
	line-height: 1.4;
	}
	.member-bio {
	color: #4a5568;
	font-size: 1em;
	line-height: 1.7;
	margin-bottom: 25px;
	}
	.member-expertise {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	}
	.expertise-tag {
	background: #DBD8EF;
	color: #9290C5;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.85em;
	font-weight: 500;
	}
	@media (max-width: 1024px) {
	.innovation-grid {
	gap: 40px;
	}
	.innovation-content-block {
	padding: 40px 30px;
	}
	.team-members-grid {
	gap: 40px;
	}
	}
	@media (max-width: 768px) {
	.hero-main-title {
	font-size: 2.4em;
	}
	.hero-subtitle {
	font-size: 1.2em;
	}
	.approach-main-heading {
	font-size: 2.2em;
	}
	.innovation-grid {
	grid-template-columns: 1fr;
	gap: 30px;
	}
	.innovation-content-block {
	padding: 30px 25px;
	}
	.process-timeline-wrapper {
	padding-left: 60px;
	}
	.step-marker {
	left: -55px;
	}
	.team-members-grid {
	grid-template-columns: 1fr;
	gap: 30px;
	}
	.team-member-card {
	max-width: 400px;
	margin: 0 auto;
	}
	}
	@media (max-width: 480px) {
	.hero-content-wrapper {
	padding: 0 20px;
	}
	.hero-main-title {
	font-size: 2em;
	}
	.approach-container,
	.timeline-container,
	.team-container {
	padding: 0 20px;
	}
	.innovation-content-block {
	padding: 25px 20px;
	}
	.innovation-highlight-box {
	padding: 20px;
	}
	.process-timeline-wrapper {
	padding-left: 50px;
	}
	.step-marker {
	left: -47px;
	width: 20px;
	height: 20px;
	}
	.step-content-card {
	padding: 25px 20px;
	}
	.member-info-section {
	padding: 25px 20px;
	}
	}