	* {
	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;
	}
	}
	.seedex-main-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	}
	.hero-bloom-section {
	background: linear-gradient(135deg, #9290C5 0%, #B7B2D9 50%, #DBD8EF 100%);
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	}
	.hero-bloom-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(219, 216, 239, 0.3) 0%, transparent 70%);
	border-radius: 50%;
	}
	.hero-content-wrapper {
	max-width: 800px;
	text-align: center;
	padding: 80px 40px;
	z-index: 2;
	position: relative;
	}
	.hero-main-title {
	font-size: 3.2rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 24px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	line-height: 1.2;
	}
	.hero-subtitle-text {
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
	line-height: 1.6;
	font-weight: 300;
	}
	.hero-cta-button {
	background: rgba(255, 255, 255, 0.15);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.4);
	padding: 16px 32px;
	font-size: 1.1rem;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	backdrop-filter: blur(10px);
	font-weight: 500;
	}
	.hero-cta-button:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	}
	.story-grid-section {
	padding: 100px 20px;
	background: #ffffff;
	}
	.story-content-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	}
	.story-text-column {
	padding: 40px;
	}
	.story-section-title {
	font-size: 2.8rem;
	color: #9290C5;
	margin-bottom: 32px;
	font-weight: 600;
	line-height: 1.3;
	}
	.story-description-text {
	font-size: 1.1rem;
	color: #4a4a4a;
	line-height: 1.8;
	margin-bottom: 24px;
	}
	.story-highlight-quote {
	font-size: 1.3rem;
	color: #9290C5;
	font-style: italic;
	border-left: 4px solid #B7B2D9;
	padding-left: 24px;
	margin: 32px 0;
	line-height: 1.6;
	}
	.story-image-column {
	position: relative;
	}
	.story-main-image {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(146, 144, 197, 0.2);
	}
	.approach-showcase-section {
	background: linear-gradient(45deg, #DBD8EF 0%, #ffffff 100%);
	padding: 120px 20px;
	position: relative;
	}
	.approach-container {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	}
	.approach-main-heading {
	font-size: 2.6rem;
	color: #9290C5;
	margin-bottom: 48px;
	font-weight: 600;
	}
	.approach-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 60px;
	}
	.approach-card-item {
	background: rgba(255, 255, 255, 0.8);
	padding: 40px 30px;
	border-radius: 16px;
	box-shadow: 0 12px 30px rgba(146, 144, 197, 0.15);
	transition: all 0.3s ease;
	border: 1px solid rgba(146, 144, 197, 0.1);
	}
	.approach-card-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(146, 144, 197, 0.25);
	}
	.approach-card-number {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #9290C5, #B7B2D9);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	font-weight: bold;
	margin: 0 auto 24px auto;
	}
	.approach-card-title {
	font-size: 1.4rem;
	color: #9290C5;
	margin-bottom: 16px;
	font-weight: 600;
	}
	.approach-card-text {
	color: #5a5a5a;
	line-height: 1.7;
	font-size: 1rem;
	}
	.testimonial-wave-section {
	background: #9290C5;
	padding: 100px 20px;
	position: relative;
	overflow: hidden;
	}
	.testimonial-wave-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="white"/></svg>') no-repeat;
	background-size: cover;
	}
	.testimonial-content-wrapper {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
	}
	.testimonial-main-heading {
	font-size: 2.4rem;
	color: white;
	margin-bottom: 60px;
	font-weight: 600;
	}
	.testimonial-grid-layout {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 50px;
	align-items: center;
	text-align: left;
	}
	.testimonial-avatar-wrapper {
	position: relative;
	}
	.testimonial-profile-image {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	object-fit: cover;
	border: 6px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	}
	.testimonial-quote-content {
	background: rgba(255, 255, 255, 0.1);
	padding: 40px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	}
	.testimonial-quote-text {
	font-size: 1.2rem;
	color: white;
	line-height: 1.7;
	margin-bottom: 24px;
	font-style: italic;
	}
	.testimonial-client-name {
	font-size: 1.1rem;
	color: #DBD8EF;
	font-weight: 600;
	}
	.testimonial-client-role {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 8px;
	}
	.final-cta-section {
	background: linear-gradient(180deg, #ffffff 0%, #DBD8EF 100%);
	padding: 100px 20px;
	text-align: center;
	}
	.final-cta-container {
	max-width: 800px;
	margin: 0 auto;
	}
	.final-cta-heading {
	font-size: 2.4rem;
	color: #9290C5;
	margin-bottom: 32px;
	font-weight: 600;
	}
	.final-cta-description {
	font-size: 1.2rem;
	color: #6a6a6a;
	line-height: 1.7;
	margin-bottom: 48px;
	}
	.final-contact-button {
	background: linear-gradient(135deg, #9290C5, #B7B2D9);
	color: white;
	border: none;
	padding: 20px 40px;
	font-size: 1.2rem;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	font-weight: 600;
	box-shadow: 0 10px 30px rgba(146, 144, 197, 0.3);
	}
	.final-contact-button:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 40px rgba(146, 144, 197, 0.4);
	background: linear-gradient(135deg, #8088c3, #a5a0d7);
	}
	@media (max-width: 768px) {
	.seedex-main-container {
	padding: 0 10px;
	}
	.hero-bloom-section {
	min-height: 500px;
	padding: 40px 20px;
	}
	.hero-content-wrapper {
	padding: 40px 20px;
	}
	.hero-main-title {
	font-size: 2.2rem;
	margin-bottom: 20px;
	}
	.hero-subtitle-text {
	font-size: 1.2rem;
	margin-bottom: 32px;
	}
	.hero-cta-button {
	padding: 14px 28px;
	font-size: 1rem;
	}
	.story-grid-section {
	padding: 60px 20px;
	}
	.story-content-grid {
	grid-template-columns: 1fr;
	gap: 40px;
	}
	.story-text-column {
	padding: 20px;
	}
	.story-section-title {
	font-size: 2.2rem;
	margin-bottom: 24px;
	}
	.story-main-image {
	height: 300px;
	}
	.approach-showcase-section {
	padding: 80px 20px;
	}
	.approach-main-heading {
	font-size: 2.2rem;
	margin-bottom: 40px;
	}
	.approach-cards-grid {
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 40px;
	}
	.approach-card-item {
	padding: 30px 24px;
	}
	.testimonial-wave-section {
	padding: 80px 20px;
	}
	.testimonial-main-heading {
	font-size: 2rem;
	margin-bottom: 40px;
	}
	.testimonial-grid-layout {
	grid-template-columns: 1fr;
	gap: 30px;
	text-align: center;
	}
	.testimonial-profile-image {
	width: 120px;
	height: 120px;
	}
	.testimonial-quote-content {
	padding: 30px 24px;
	}
	.testimonial-quote-text {
	font-size: 1.1rem;
	}
	.final-cta-section {
	padding: 80px 20px;
	}
	.final-cta-heading {
	font-size: 2rem;
	margin-bottom: 24px;
	}
	.final-cta-description {
	font-size: 1.1rem;
	margin-bottom: 36px;
	}
	.final-contact-button {
	padding: 16px 32px;
	font-size: 1.1rem;
	}
	}