		:root {
			--primary: #ac095a;
			--primary-dark: #8a0748;
			--dark: #1a1a2e;
			--gray-dark: #2d3047;
			--gray: #6c757d;
			--gray-light: #f8f9fa;
			--white: #ffffff;
			--shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
			--shadow-hover: 0 15px 30px rgba(172, 9, 90, 0.1);
			--border-radius: 8px;
			--transition: all 0.3s ease;
		}

		* {
			margin: 0;
			padding: 0;
			box-sizing: border-box;
		}

		html {
			scroll-behavior: smooth;
		}

		body {
			font-family: 'Inter', sans-serif;
			color: var(--dark);
			line-height: 1.6;
			background-color: var(--white);
			overflow-x: hidden;
		}

		h1,
		h2,
		h3,
		h4 {
			font-weight: 700;
			line-height: 1.2;
			margin-bottom: 1rem;
		}

		h1 {
			font-size: 3.5rem;
		}

		h2 {
			font-size: 2.5rem;
			position: relative;
			padding-bottom: 1rem;
		}

		h2:after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 0;
			width: 60px;
			height: 4px;
			background-color: var(--primary);
		}

		.center-heading:after {
			left: 50%;
			transform: translateX(-50%);
		}

		h3 {
			font-size: 1.8rem;
		}

		p {
			margin-bottom: 1.2rem;
			color: var(--gray-dark);
		}

		a {
			text-decoration: none;
			color: inherit;
			transition: var(--transition);
		}

		.container {
			width: 100%;
			max-width: 1200px;
			margin: 0 auto;
			padding: 0 20px;
		}

		.section {
			padding: 5rem 0;
		}

		.section-dark {
			background-color: var(--gray-light);
		}

		.btn {
			display: inline-block;
			padding: 1rem 2rem;
			border-radius: var(--border-radius);
			font-weight: 600;
			cursor: pointer;
			transition: var(--transition);
			border: none;
			font-size: 1rem;
		}

		.btn-primary {
			background-color: var(--primary);
			color: var(--white);
		}

		.btn-primary:hover {
			background-color: var(--primary-dark);
			transform: translateY(-3px);
			box-shadow: var(--shadow-hover);
		}

		.btn-secondary {
			background-color: transparent;
			color: var(--primary);
			border: 2px solid var(--primary);
		}

		.btn-secondary:hover {
			background-color: rgba(172, 9, 90, 0.05);
			transform: translateY(-3px);
		}

		.text-primary {
			color: var(--primary);
		}

		.text-center {
			text-align: center;
		}

		/* Navbar Styles */
		.navbar {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			background-color: rgba(255, 255, 255, 0.95);
			box-shadow: var(--shadow);
			z-index: 1000;
			padding: 1rem 0;
			transition: var(--transition);
		}

		.nav-container {
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		.logo {
			font-size: 1.8rem;
			font-weight: 800;
			color: var(--dark);
		}

		.logo span {
			color: var(--primary);
		}

		.nav-menu {
			display: flex;
			list-style: none;
			gap: 2rem;
		}

		.nav-link {
			font-weight: 600;
			color: var(--gray-dark);
		}

		.nav-link:hover {
			color: var(--primary);
		}

		.nav-cta {
			margin-left: 1rem;
		}

		.mobile-toggle {
			display: none;
			font-size: 1.5rem;
			cursor: pointer;
			color: var(--dark);
		}

		/* Hero Section */
		.hero {
			padding: 16rem 0 8rem;
			background: linear-gradient(135deg, rgba(172, 9, 90, 0.03) 0%, rgba(26, 26, 46, 0.03) 100%);
			position: relative;
			overflow: hidden;
		}

		.hero:before {
			content: '';
			position: absolute;
			top: -50%;
			right: -20%;
			width: 80%;
			height: 200%;
			background: radial-gradient(circle, rgba(172, 9, 90, 0.05) 0%, transparent 70%);
			z-index: -1;
		}

		.hero-content {
			text-align: center;
			max-width: 900px;
			margin: 0 auto;
		}

		.hero h1 {
			margin-bottom: 1.5rem;
		}

		.hero-subtitle {
			font-size: 1.3rem;
			color: var(--gray-dark);
			margin-bottom: 3rem;
			max-width: 700px;
			margin-left: auto;
			margin-right: auto;
		}

		.hero-buttons {
			display: flex;
			gap: 1rem;
			justify-content: center;
			margin-top: 2rem;
		}

		/* Services Section */
		.services-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 2rem;
			margin-top: 3rem;
		}

		.service-card {
			background-color: var(--white);
			border-radius: var(--border-radius);
			padding: 2.5rem 2rem;
			box-shadow: var(--shadow);
			transition: var(--transition);
			text-align: center;
		}

		.service-card:hover {
			transform: translateY(-10px);
			box-shadow: var(--shadow-hover);
		}

		.service-icon {
			font-size: 3rem;
			color: var(--primary);
			margin-bottom: 1.5rem;
		}

		.service-card h3 {
			margin-bottom: 1rem;
		}

		/* Features Section */
		.features-grid {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 2rem;
			margin-top: 3rem;
		}

		.feature-box {
			text-align: center;
			padding: 2rem 1.5rem;
			background-color: var(--white);
			border-radius: var(--border-radius);
			box-shadow: var(--shadow);
			transition: var(--transition);
		}

		.feature-box:hover {
			transform: translateY(-5px);
			box-shadow: var(--shadow-hover);
		}

		.feature-icon {
			font-size: 2.5rem;
			color: var(--primary);
			margin-bottom: 1.5rem;
		}

		/* How We Work */
		.process-steps {
			display: flex;
			justify-content: space-between;
			margin-top: 4rem;
			position: relative;
		}

		.process-steps:before {
			content: '';
			position: absolute;
			top: 60px;
			left: 10%;
			width: 80%;
			height: 2px;
			background-color: var(--primary);
			z-index: 0;
		}

		.step {
			background-color: var(--white);
			padding: 2rem;
			border-radius: var(--border-radius);
			box-shadow: var(--shadow);
			text-align: center;
			width: 30%;
			position: relative;
			z-index: 1;
		}

		.step-number {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			width: 60px;
			height: 60px;
			background-color: var(--primary);
			color: var(--white);
			border-radius: 50%;
			font-size: 1.5rem;
			font-weight: 700;
			margin-bottom: 1.5rem;
		}

		/* Why Choose Us */
		.why-grid {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 3rem;
			align-items: center;
			margin-top: 3rem;
		}

		.why-list {
			list-style: none;
		}

		.why-list li {
			margin-bottom: 1.5rem;
			padding-left: 2.5rem;
			position: relative;
		}

		.why-list li:before {
			content: '✓';
			position: absolute;
			left: 0;
			top: 0;
			color: var(--primary);
			font-weight: 700;
			font-size: 1.2rem;
		}

		/* FAQ Section */
		.faq-container {
			max-width: 800px;
			margin: 3rem auto 0;
		}

		.faq-item {
			margin-bottom: 1rem;
			border-radius: var(--border-radius);
			overflow: hidden;
			box-shadow: var(--shadow);
		}

		.faq-question {
			padding: 1.5rem;
			background-color: var(--white);
			font-weight: 600;
			cursor: pointer;
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		.faq-question:hover {
			color: var(--primary);
		}

		.faq-answer {
			padding: 0 1.5rem;
			max-height: 0;
			overflow: hidden;
			transition: var(--transition);
			background-color: var(--white);
		}

		.faq-answer.open {
			padding: 0 1.5rem 1.5rem;
			max-height: 500px;
		}

		.faq-toggle {
			color: var(--primary);
			font-size: 1.5rem;
			transition: var(--transition);
		}

		.faq-item.active .faq-toggle {
			transform: rotate(45deg);
		}

		/* Service Areas */
		.service-areas {
			background-color: var(--white);
			padding: 3rem;
			border-radius: var(--border-radius);
			box-shadow: var(--shadow);
			margin-top: 3rem;
		}

		.service-areas p {
			display: inline-block;
			background-color: rgba(172, 9, 90, 0.08);
			padding: 0.8rem 1.5rem;
			border-radius: 50px;
			margin-right: 1rem;
			margin-bottom: 1rem;
			font-weight: 500;
		}

		/* Expertise Section */
		.expertise-grid {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 4rem;
			align-items: center;
			margin-top: 3rem;
		}


		.expertise-list {
			margin-top: 2rem;
		}

		.expertise-list li {
			margin-bottom: 1.2rem;
			padding-left: 1.8rem;
			position: relative;
		}

		.expertise-list li:before {
			content: '•';
			position: absolute;
			left: 0;
			color: var(--primary);
			font-size: 1.5rem;
		}

		/* Content Section */
		.content-row {
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 4rem;
		}

		.content-row:nth-child(even) {
			flex-direction: row-reverse;
		}

		.content-text {
			flex: 1;
			padding: 0 3rem;
		}

		.content-icon {
			flex: 0 0 100px;
			text-align: center;
			font-size: 4rem;
			color: var(--primary);
		}

		/* Footer */
		.footer {
			background-color: var(--dark);
			color: var(--white);
			padding: 4rem 0 2rem;
		}

		.footer-content {
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
			margin-bottom: 2rem;
		}

		.footer-info {
			flex: 1;
			min-width: 300px;
		}

		.footer-logo {
			font-size: 2rem;
			font-weight: 800;
			margin-bottom: 1rem;
		}

		.footer-contact {
			margin-top: 1.5rem;
		}

		.footer-contact p {
			color: #f8f9fa;
			margin-bottom: 0.5rem;
		}

		.footer-bottom {
			text-align: center;
			padding-top: 2rem;
			border-top: 1px solid rgba(255, 255, 255, 0.1);
			color: rgba(255, 255, 255, 0.7);
		}

		/* Responsive Design */
		@media (max-width: 992px) {
			h1 {
				font-size: 2.8rem;
			}

			h2 {
				font-size: 2.2rem;
			}

			.features-grid {
				grid-template-columns: repeat(2, 1fr);
			}

			.process-steps {
				flex-direction: column;
				gap: 2rem;
			}

			.process-steps:before {
				display: none;
			}

			.step {
				width: 100%;
			}

			.why-grid,
			.expertise-grid {
				grid-template-columns: 1fr;
				gap: 2rem;
			}

			.services-grid {
				grid-template-columns: repeat(2, 1fr);
			}
		}

		@media (max-width: 768px) {
			.mobile-toggle {
				display: block;
			}

			.nav-menu {
				position: fixed;
				top: 70px;
				left: 0;
				width: 100%;
				background-color: var(--white);
				flex-direction: column;
				padding: 2rem;
				box-shadow: var(--shadow);
				transform: translateY(-100%);
				opacity: 0;
				transition: var(--transition);
				z-index: 999;
			}

			.nav-menu.active {
				transform: translateY(0);
				opacity: 1;
			}

			.hero-buttons {
				flex-direction: column;
				align-items: center;
			}

			.services-grid {
				grid-template-columns: 1fr;
			}

			.features-grid {
				grid-template-columns: 1fr;
			}

			.content-row {
				flex-direction: column;
				text-align: center;
			}

			.content-row:nth-child(even) {
				flex-direction: column;
			}

			.content-text {
				padding: 0;
				margin-top: 2rem;
			}

			.footer-content {
				flex-direction: column;
				gap: 2rem;
			}
		}
