/*
Theme Name: GeoMap
Theme URI: https://incrediblegoodguys.com
Author: Fabian Dech
Author URI: https://incrediblegoodguys.com
Description: 
Version: 1.0
Text Domain: geomap
*/

/* Base Styles */
:root {
	--primary: #2953ff;
	--primary-light: #5475ff;
	--secondary: #00d49c;
	--text-dark: #1b1b1e;
	--text-light: #4e4f56;
	--background: #f6f6f7;
	--white: #ffffff;
	--border-radius-sm: 24px;
	--border-radius-lg: 24px;
	--spacing-xs: 8px;
	--spacing-sm: 16px;
	--spacing-md: 24px;
	--spacing-lg: 32px;
	--spacing-xl: 40px;
	--spacing-xxl: 56px;
	--container-width: 1440px;
	--container-padding: 136px;
	--logo-color: #5475ff;
}

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

body {
	font-family: "DM Sans", sans-serif;
	background-color: var(--background);
	color: var(--text-dark);
	line-height: 1.5;
	overflow-x: hidden;
}
.education {
	background-color: var(--white);
}
.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

/* Button Styles */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	border-radius: var(--border-radius-sm);
	transition: all 0.3s ease;
	cursor: pointer;
	white-space: nowrap;
}

.btn-primary {
	background-color: var(--primary);
	color: var(--white);
	border: none;
	height: 48px;
	padding: var(--spacing-sm) var(--spacing-lg);
	font-size: 16px;
	line-height: 24px;
}

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

.btn-outline {
	background-color: var(--white);
	color: var(--primary);
	border: 1px solid var(--primary);
}

.btn-outline:hover {
	background-color: rgba(41, 83, 255, 0.05);
}

.btn-small {
	height: 40px;
	padding: var(--spacing-xs) var(--spacing-md);
	font-size: 14px;
	line-height: 20px;
	min-width: 120px;
}

.btn-large {
	height: 48px;
	padding: var(--spacing-sm) var(--spacing-lg);
	font-size: 16px;
	line-height: 24px;
	min-width: 160px;
}

.btn-full {
	width: 100%;
}

/* Header Styles */
.header {
	background-color: white;
	padding: 16px 136px;
	position: relative;
	z-index: 100;
}
#header {
	background-color: var(--background);
}
.header-content {
	/* padding: 0px 24px; */
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	/* padding-left: 20px; */
	display: flex;
	align-items: center;
	height: 56px; /* Adjust as needed to match nav height */
}

.logo-img {
	height: 40px; /* Adjust as needed for visual balance */
	width: auto;
	display: block;

	margin: 0;
	padding: 0;
}

.logo-text {
	font-size: 24px;
	font-weight: 700;
	margin-left: var(--spacing-sm);
	display: none;
}

.nav-desktop {
	display: none;
}

.nav-list {
	display: flex;
	gap: 0;
}

.nav-list li a {
	display: block;
	padding: 12px 24px;
	font-weight: 600;
	font-size: 14px;
	color: var(--text-dark);
}

.nav-list li a:hover {
	color: var(--primary);
}

.auth-buttons {
	display: none;
	gap: 16px;
}

.auth-buttons .btn {
	height: 40px;
	padding: var(--spacing-xs) var(--spacing-md);
	font-size: 14px;
	line-height: 20px;
	min-width: 120px;
}

.language-selector {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: 40px;
}

.flag {
	width: 24px;
	height: 18px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.flag img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flag.active {
	border: 1px solid #1b1b1e;
}

.flag:hover {
	transform: scale(1.1);
}

.menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	background: transparent;
	border: none;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--text-dark);
	transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white);
	z-index: 1000;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.mobile-nav.active {
	transform: translateX(0);
}

.mobile-nav-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--spacing-sm) var(--spacing-md);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.close-menu {
	background: transparent;
	border: none;
	cursor: pointer;
	color: var(--text-dark);
}

.mobile-nav-content {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: var(--spacing-md);
	display: flex;
	flex-direction: column;
}

.mobile-nav-list {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
	margin-bottom: var(--spacing-xl);
}

.mobile-nav-list li a {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
}

.mobile-auth-buttons {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-xl);
	margin-top: auto;
}

.mobile-auth-buttons .btn {
	height: 48px;
	padding: var(--spacing-sm) var(--spacing-md);
	font-size: 16px;
}

.mobile-language-selector {
	display: flex;
	gap: var(--spacing-sm);
	margin-top: var(--spacing-md);
}

/* Hero Section */
.hero {
	padding: var(--spacing-xl) 24px;
	text-align: center;
	margin-bottom: 0;
	padding-bottom: 0;
}

.hero-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: var(--spacing-lg);
	max-width: 768px;
	margin-left: auto;
	margin-right: auto;
}

.hero-description {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: var(--spacing-lg);
	max-width: 768px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: var(--spacing-xl);
}

.hero-image {
	max-width: 100%;
	margin: 0 auto;
}

.monitor {
	width: 100%;
	max-width: 968px;
	height: 420px;
	background-color: var(--white);
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-left: 12px solid var(--text-light);
	border-top: 12px solid var(--text-light);
	border-right: 12px solid var(--text-light);
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.monitor-content {
	width: 100%;
	height: 100%;
	background-color: var(--white);
}

/* Logo Carousel Section */
.logo-carousel {
	padding: var(--spacing-xl) 0;
	background-color: var(--white);
	overflow: hidden;
}

.logo-track {
	display: flex;
	width: 200%;
	animation: scroll 30s linear infinite;
}

.logo-container {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	padding: 0 var(--spacing-md);
}

.partner-logo {
	height: 60px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
	margin: 0 var(--spacing-md);
	filter: brightness(0) saturate(100%) invert(45%) sepia(60%) saturate(1000%)
		hue-rotate(210deg) brightness(100%) contrast(95%);
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Features Section */
.features-section {
	padding: 40px 136px;
	background-color: var(--white);
}

.features-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
	/* padding: 0 72px; */
}

.features-text {
	flex: 1;
	max-width: 560px;
}

.features-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 24px;
	color: var(--text-dark);
}

.features-description {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 40px;
	color: var(--text-light);
}

.features-image {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.feature-img {
	max-width: 100%;
	height: auto;
	border-radius: 24px;
	object-fit: cover;
}
.landingpage {
	background-color: var(--white);
}
/* Feature Highlights Section */

.feature-highlights {
	padding: 24px 8px;
	background-color: var(--white);
	border-radius: 24px;
	/* margin: 40px 0; */
	background: #fff;
	margin: 80px 136px;
	box-shadow: 0 4px 16px rgba(41, 83, 255, 0.08),
		0 1.5px 6px rgba(0, 0, 0, 0.04);
	border: 1px solid #e5e7eb;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: box-shadow 0.2s;
}

.feature-tabs {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 48px;
	background-color: var(--background);
	border-radius: 100px;
	padding: 8px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.feature-tab {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 100px;
	border: none;
	background: transparent;
	cursor: pointer;
	font-weight: 500;
	color: var(--text-dark);
	transition: all 0.3s ease;
}

.feature-tab.active {
	background-color: var(--white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: var(--primary);
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
}

.tab-text {
	font-size: 16px;
}

.highlight-content {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
	margin-bottom: 60px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.highlight-content.active {
	display: flex;
	opacity: 1;
	transform: translateY(0);
}

.highlight-text {
	flex: 1;
	max-width: 560px;
}

.highlight-title {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 24px;
	color: var(--text-dark);
}

.highlight-description {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 40px;
	color: var(--text-light);
}

.highlight-image {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.highlight-img {
	max-width: 100%;
	height: auto;
	border-radius: 24px;
	object-fit: cover;
}

.feature-cards {
	width: 100%;
	overflow: hidden;
}

.card-scroll {
	display: flex;
	gap: 24px;
}

.feature-card {
	flex: 0 0 auto;
	width: calc(33.333% - 16px);
	background-color: #e5fbf5;
	border-radius: 16px;
	padding: 32px;
}

.card-icon {
	width: 48px;
	height: 48px;
	background-color: var(--secondary);
	color: white;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.card-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--text-dark);
}

.card-description {
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
	padding: 80px 136px;
	background-color: var(--background);
}

.testimonials-title {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 60px;
	color: var(--text-dark);
}

.testimonials-container {
	display: flex;
	/* flex-direction: row; */
	gap: 24px;
	margin-bottom: 40px;
}
#first-testimonial {
	flex: 1 1 0;
	background-color: var(--white);
	/* border-radius: 16px; */
	/* padding: 32px; */
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.testimonial-card {
	flex: 1 1 0;
	background-color: var(--white);
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.star {
	color: var(--secondary);
	font-size: 16px;
	line-height: 1;
}

.testimonial-text {
	font-size: 18px;
	line-height: 1.6;

	color: var(--text-dark);
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
}

.author-image {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.author-name {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--text-dark);
}

.author-company {
	font-size: 14px;
	color: var(--text-light);
}

.testimonial-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-top: 32px;
}

.nav-button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111;
	font-size: 2rem;
	box-shadow: none;
	transition: none;
	outline: none;
}

.nav-button svg {
	width: 24px;
	height: 24px;
	stroke: #111;
}

.nav-button:active,
.nav-button:focus {
	border-color: #2953ff;
}

.nav-dots {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nav-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #e5e7eb;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.nav-dot.active {
	width: 10px;
	height: 10px;
	border-radius: 7px;
	background: #2953ff;
}

/* FAQ Section */
.faq-section {
	padding: 80px 0;
	background-color: var(--white);
}

.faq-title {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 24px;
	color: var(--text-dark);
}

.faq-description {
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
	max-width: 768px;
	margin: 0 auto 40px;
	color: var(--text-light);
}

.accordion {
	max-width: 768px;
	margin: 0 auto;
}

.accordion-item {
	border-bottom: 1px solid #e5e7eb;
}

.accordion-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0;
	background: transparent;
	border: none;
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	cursor: pointer;
	transition: all 0.3s ease;
}

.accordion-icon {
	transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	display: none;
	padding-bottom: 24px;
	color: var(--text-light);
	font-size: 14px;
	line-height: 1.6;
}

.accordion-content.active {
	display: block;
}

.faq-support {
	max-width: 550px;
	margin: 40px auto 0;
	padding: 8px 16px;
	background-color: #e5fbf5;
	border-radius: 32px;
	text-align: center;
}

.faq-support p {
	display: inline-block;
	margin-right: 8px;
	color: var(--text-dark);
}

.support-link {
	color: var(--primary);
	font-weight: 600;
	text-decoration: underline;
	transition: color 0.3s ease;
}

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

/* CTA Section */
.cta-section {
	padding: 80px 0;
	background-color: var(--primary-light);
	text-align: center;
	color: var(--white);
}

.cta-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 24px;
	color: var(--white);
}

.cta-description {
	font-size: 18px;
	line-height: 1.6;
	max-width: 768px;
	margin: 0 auto 40px;
	color: var(--white);
}

.cta-button {
	display: inline-block;
	background-color: var(--white);
	color: var(--primary);
	font-size: 16px;
	font-weight: 600;
	padding: 16px 32px;
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background-color: rgba(255, 255, 255, 0.9);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
.footer {
	padding: 40px 0 136px;
	background-color: var(--white);
	border-top: 1px solid #e5e7eb;
}

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

.footer-column {
	flex: 1;
	min-width: 200px;
	margin-bottom: 40px;
}

.footer-heading {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 24px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 16px;
}

.footer-links a {
	color: var(--text-dark);
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--primary);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	border-top: 1px solid #e5e7eb;
}

.copyright {
	font-size: 14px;
	color: var(--text-light);
}

.social-links {
	display: flex;
	gap: 16px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--secondary);
	color: var(--white);
	transition: all 0.3s ease;
}

.social-link:hover {
	background-color: var(--primary);
	transform: translateY(-2px);
}

.social-icon {
	width: 24px;
	height: 24px;
}

/* Features Page Styles ----------------------------*/
/* .features-section {
position: relative;
background-color: var(--background);
min-height: calc(100vh - 72px); 
overflow: hidden;
} */

.features-container {
	display: flex;
	max-width: 1440px;
	margin: 0 auto;
	height: 100%;
}

.features-content {
	width: 50%;
	padding: 80px 0 0 80px;
}

.features-title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-dark);
	margin-bottom: 24px;
	max-width: 600px;
}

.features-description {
	font-size: 18px;
	line-height: 1.5;
	color: var(--text-light);
	margin-bottom: 40px;
	max-width: 600px;
}

.features-buttons {
	display: flex;
	gap: 16px;
}

.features-buttons .btn {
	width: 100%;
	min-width: 0px;
	max-width: 200px;
	padding: 8px 16px;
}

.features-frame {
	width: 100%;
	max-width: 600px;
	height: 450px;

	border-right: none;
	position: relative;
	margin-top: 40px;
}
/* Analysing Data Section Styles */
.analysing-section {
	background-color: var(--white);
	padding: 80px 0;
}

.analysing-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 136px;
}

.analysing-title {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	color: var(--text-dark);
	margin-bottom: 60px;
}

/* .feature-cards {
display: flex;
justify-content: space-between;
gap: 30px;
} */

/* .feature-card {
flex: 1;
max-width: 270px;
} */

.feature-icon {
	width: 48px;
	height: 48px;
	background-color: #00d49c;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.feature-card-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.feature-card-text {
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-light);
}

/* Analysing Data Component Styles */
.analysing-data {
	background-color: var(--white);
	padding: 80px 0;
	width: 100%;
}

.analysing-data-container {
	/* max-width: 1440px; */
	margin: 0 auto;
	padding: 0 136px;
}

.analysing-data-title {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	color: var(--text-dark);
	margin-bottom: 60px;
}

.data-feature-cards {
	display: flex;
	justify-content: space-between;
	gap: 32px;
}

.data-feature-card {
	flex: 1;
}

.data-feature-icon {
	width: 48px;
	height: 48px;
	background-color: #00d49c;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.data-feature-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.data-feature-text {
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-light);
}

/* Feature Showcase Component Styles */
.feature-showcase {
	background-color: var(--white);
	padding: 80px 0;
	width: 100%;
}

.showcase-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 136px;
	display: flex;
	align-items: center;
	gap: 60px;
}

.showcase-image {
	flex: 1;
	max-width: 50%;
}

.showcase-img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}

.showcase-content {
	flex: 1;
	max-width: 50%;
}

.showcase-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 16px;
	line-height: 1.2;
}

.showcase-description {
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-light);
	margin-bottom: 24px;
}

.showcase-features {
	display: flex;
	gap: 20px;
	margin-bottom: 32px;
}

.features-column {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 8px;
}
#feature-item-1 {
	margin-bottom: 16px;
}
.feature-check {
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-text {
	font-size: 16px;
	color: var(--text-dark);
}

.showcase-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary);
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 24px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.showcase-button:hover {
	background-color: var(--primary-light);
}
/* Testimonial Section Styles */
.testimonial-section {
	background-color: var(--white);
	padding: 80px 0;
	width: 100%;
}

.testimonial-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 136px;
}

.testimonial-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	padding: 48px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
	flex: 1;
	max-width: 50%;
}

.testimonial-title {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-dark);
	margin-bottom: 16px;
}

.testimonial-subtitle {
	font-size: 18px;
	line-height: 1.5;
	color: var(--text-light);
}

.testimonial-quote-box {
	flex: 1;
	max-width: 50%;
	background-color: #f9fafb;
	border-radius: 16px;
	padding: 32px;
}

.testimonial-stars {
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
}

.testimonial-stars svg {
	width: 20px;
	height: 20px;
}

.testimonial-quote {
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-dark);
	margin-bottom: 24px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.author-name {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
}

.author-company {
	font-size: 14px;
	color: var(--text-light);
	margin: 0;
}

/* Explore Page Styles -------------------*/
.explore-hero {
	padding: var(--spacing-xxl) 0 var(--spacing-xl);
	text-align: center;
	background-color: white;
}

.explore-hero-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-dark);
	margin-bottom: var(--spacing-md);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.explore-hero-description {
	font-size: 18px;
	line-height: 1.5;
	color: var(--text-light);
	margin-bottom: var(--spacing-xl);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.explore-cta-container {
	margin-bottom: var(--spacing-xl);
}

/* Provinces Stats Section */
.provinces-stats {
	padding: 0 136px;
	background-color: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-md);
}

.stat-card {
	background-color: #eaeeff;
	border-radius: 8px;
	padding: 16px var(--spacing-md);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-number {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: var(--spacing-xs);
}

.stat-label {
	font-size: 16px;
	font-weight: 500;
	color: var(--text-dark);
}

/* Provinces Table Section */
.provinces-table-section {
	/* padding: var(--spacing-xl) 0 var(--spacing-xxl); */
	background-color: white;
	padding: 80px 136px;
}

.provinces-table-container {
	background-color: var(--white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.provinces-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.provinces-table th {
	padding: 16px 24px;
	text-align: left;
	font-weight: 600;
	font-size: 16px;
	color: var(--text-dark);
	background-color: var(--white);
	border-bottom: 1px solid #e5e7eb;
	position: relative;
}

.provinces-table td {
	padding: 0px 24px;
	font-size: 16px;
	color: var(--text-dark);
	border-bottom: 1px solid #e5e7eb;
}
.province-name-column {
	width: 280px;
}
.provinces-table tr:last-child td {
	border-bottom: none;
}

.sort-button {
	background: none;

	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin-left: 8px;
	color: #6b7280;
	transition: color 0.2s ease;
}

.sort-button:hover {
	color: var(--text-dark);
}

.buurten-cell {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 8px;
}

.buurten-bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #eaeeff;
	z-index: 1;
}

.buurten-badge {
	position: relative;
	z-index: 2;
	background-color: var(--primary);
	color: var(--white);
	font-weight: 600;
	font-size: 14px;
	padding: 4px 12px;
	border-radius: 100px;
	display: inline-block;
}
/* Provinces Grid Section */
.provinces-grid-section {
	padding: 80px 136px;
	background-color: var(--background);
}

.section-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: var(--spacing-sm);
}

.section-description {
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-dark);
	margin-bottom: var(--spacing-xl);
	max-width: 800px;
}

.provinces-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-xl);
}

.province-card {
	background-color: var(--white);
	border-radius: 8px;
	padding: var(--spacing-md);
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.province-header {
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
	margin-bottom: var(--spacing-xs);
}

.location-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background-color: rgba(0, 212, 156, 0.1);
	border-radius: 50%;
}

.province-name {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
}

.province-buurten {
	font-size: 14px;
	color: var(--text-dark);
	margin-bottom: var(--spacing-md);
}

.province-map {
	width: 100%;
	height: 160px;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: var(--spacing-md);
}

.province-map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.province-button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	background-color: transparent;
	color: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
}

.province-button:hover {
	background-color: rgba(41, 83, 255, 0.05);
}

.provinces-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: var(--spacing-xl);
	margin-bottom: var(--spacing-xl);
	padding-top: var(--spacing-md);
	border-top: 1px solid #e5e7eb;
}

.pagination-info {
	font-size: 14px;
	color: var(--text-light);
}

.pagination-buttons {
	display: flex;
	gap: var(--spacing-sm);
}

.pagination-button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 var(--spacing-md);
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-dark);
	cursor: pointer;
	transition: all 0.3s ease;
}

.pagination-button:hover:not(:disabled) {
	border-color: var(--primary);
	color: var(--primary);
}

.pagination-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Municipality Hero Section ----------------------*/
.municipality-hero {
	background: linear-gradient(135deg, #5475ff 0%, #4361ee 100%);
	color: var(--white);
	padding: 80px 136px;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
	margin-bottom: var(--spacing-md);
	font-size: 14px;
}

.breadcrumb a {
	color: var(--white);
	opacity: 0.8;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
	opacity: 1;
}

.breadcrumb-separator {
	display: flex;
	align-items: center;
	color: var(--white);
	opacity: 0.8;
}

.breadcrumb-current {
	color: var(--white);
}

.municipality-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--spacing-md);
	max-width: 800px;
}

.municipality-description {
	font-size: 18px;
	line-height: 1.5;
	max-width: 800px;
	opacity: 0.9;
}

/* Province info section styles */
.province-info {
	padding: 80px 24px;
	text-align: center;
	background-color: var(--white);
}

.province-title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--spacing-md);
	color: var(--text-dark);
}

.province-description {
	font-size: 18px;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
	color: var(--text-dark);
}
/* Living in Drenthe section styles */
.living-section {
	padding: 80px 136px;
	background-color: var(--white);
}

.living-content {
	display: flex;
	align-items: center;
	gap: var(--spacing-xl);
	margin-top: 40px;
}

.living-text {
	flex: 1;
}

.living-title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--spacing-md);
	color: var(--text-dark);
}

.living-description {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: var(--spacing-md);
	color: var(--text-dark);
}

.living-button {
	margin-top: var(--spacing-md);
	padding: var(--spacing-sm) var(--spacing-xl);
	border-radius: 100px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.living-image {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
}

.landscape-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}
/* Neighborhoods section styles */
.neighborhoods-section {
	padding: 80px 136px;
	background-color: var(--white);
}

.neighborhoods-header {
	margin-bottom: var(--spacing-xl);
}

.neighborhoods-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--spacing-md);
	color: var(--text-dark);
}

.neighborhoods-description {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-dark);
	max-width: 900px;
}

/* Neighborhoods grid */
.neighborhoods-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-xl);
}

.neighborhood-card {
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: var(--border-radius-sm);
	padding: var(--spacing-md);
	display: flex;
	flex-direction: column;
}

.neighborhood-header {
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
	margin-bottom: var(--spacing-sm);
}

.location-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.neighborhood-name {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
}

.neighborhood-code {
	font-size: 14px;
	color: var(--text-dark);
	margin-bottom: var(--spacing-md);
}

.neighborhood-button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	background-color: transparent;
	color: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
}

.neighborhood-button:hover {
	background-color: rgba(41, 83, 255, 0.05);
}

/* Pagination */
.neighborhoods-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: var(--spacing-md);
	border-top: 1px solid #e5e7eb;
}

.pagination-info {
	font-size: 14px;
	color: var(--text-light);
}

.pagination-buttons {
	display: flex;
	gap: var(--spacing-sm);
}

.pagination-button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 var(--spacing-md);
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-dark);
	cursor: pointer;
	transition: all 0.3s ease;
}

.pagination-button:hover:not(:disabled) {
	border-color: var(--primary);
	color: var(--primary);
}

.pagination-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
/* Data Application section styles */
.data-application-section {
	padding: 80px 136px;
	background-color: var(--white);
}

.data-application-content {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-xl);
}

.data-application-text {
	flex: 1;
}

.data-application-title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--spacing-md);
	color: var(--text-dark);
}

.data-application-description {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: var(--spacing-md);
	color: var(--text-dark);
}

.data-application-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.data-application-item {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-sm);
	margin-bottom: var(--spacing-md);
}

.data-application-item:last-child {
	margin-bottom: 0;
}

.check-icon {
	flex-shrink: 0;
}

.item-text {
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-dark);
	padding-top: 2px;
}

.data-application-image {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
}

.landscape-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

/* Key Figures Section --------------------- */

.key-figures-section {
	padding: 80px 136px;
	background-color: var(--white);
}

.key-figures-title {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 24px;
	margin-top: 40px;
	color: var(--text-dark);
}

.key-figures-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-md);
	margin-bottom: 40px;
}

.key-figure-card {
	background-color: #eaeeff;
	border-radius: 8px;
	padding: var(--spacing-md);
	text-align: center;
}

.key-figure-code {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: var(--spacing-xs);
	line-height: 1.2;
}

.key-figure-label {
	font-size: 16px;
	color: var(--text-dark);
	font-weight: 500;
}

/* Neighborhoods Page Styles --------------------- */
.neighborhoods-page {
	padding: 80px 136px;
	background-color: var(--white);
}

/* Filters */
.filters-container {
	display: flex;
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-xl);
}

.filter-dropdown {
	position: relative;
	flex: 1;
	max-width: 368px;
}

.filter-select {
	width: 100%;
	height: 48px;
	padding: 0 var(--spacing-md);
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background-color: var(--white);
	font-size: 16px;
	color: var(--text-dark);
	appearance: none;
	cursor: pointer;
}

.select-icon {
	position: absolute;
	right: var(--spacing-md);
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: var(--text-dark);
}

.search-container {
	position: relative;
	flex: 1;
}

.search-input {
	width: 368px;
	height: 48px;
	padding: 0 var(--spacing-md) 0 var(--spacing-xl);
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background-color: var(--white);
	font-size: 16px;
	color: var(--text-dark);
}

.search-icon {
	position: absolute;
	left: var(--spacing-sm);
	top: 26px;
	transform: translateY(-50%);
	color: var(--text-dark);
}

/* Municipality Section */
.municipality-section {
	margin-bottom: var(--spacing-xxl);
	background-color: var(--white);
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	/* border-radius: var(--border-radius-sm); */
}

.municipality-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--spacing-md) var(--spacing-lg);
	background-color: #e5fbf5;
}

.municipality-name {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: var(--spacing-xs);
}

.municipality-province {
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
	font-size: 14px;
}

.municipality-province .label {
	font-weight: 600;
	color: var(--text-dark);
}

.municipality-province .value {
	color: var(--text-dark);
}

.municipality-count {
	background-color: var(--secondary);
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
	padding: var(--spacing-xs) var(--spacing-md);
	border-radius: 100px;
}

/* Neighborhoods Grid */
.neighborhoods-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-md);
}

.neighborhood-card {
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: var(--spacing-md);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neighborhood-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.neighborhood-header {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-xs);
	margin-bottom: var(--spacing-sm);
}

.location-pin {
	flex-shrink: 0;
	color: var(--secondary);
}

.neighborhood-name {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
	line-height: 1.3;
}

.neighborhood-code {
	font-size: 14px;
	color: var(--text-light);
	margin-bottom: var(--spacing-md);
}

.neighborhood-link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	background-color: transparent;
	color: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
}

.neighborhood-link:hover {
	background-color: rgba(41, 83, 255, 0.05);
}

/* Pagination */
.pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--spacing-md) var(--spacing-lg);
	border-top: 1px solid #e5e7eb;
}

.pagination-info {
	font-size: 14px;
	color: var(--text-light);
}

.pagination-controls {
	display: flex;
	gap: var(--spacing-sm);
}

.pagination-button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 var(--spacing-md);
	background-color: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-dark);
	cursor: pointer;
	transition: all 0.3s ease;
}

.pagination-button:hover:not(:disabled) {
	border-color: var(--primary);
	color: var(--primary);
}

.pagination-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* About Page Specific Styles ---------------------------*/
.about-page {
	padding: 80px 136px;
	background-color: var(--background);
/* 	min-height: 100vh; */
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xxl);
	margin-bottom: var(--spacing-xxl);
	align-items: start;
}

.about-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.about-title {
	font-size: 64px;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.1;
	margin-bottom: var(--spacing-xl);
	max-width: 500px;
}

.join-team-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary);
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
	padding: var(--spacing-sm) var(--spacing-xl);
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.3s ease;
	min-width: 180px;
	height: 56px;
}

.join-team-btn:hover {
	background-color: var(--primary-light);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(41, 83, 255, 0.3);
}

.about-description {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
}

.description-paragraph {
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-light);
	margin: 0;
}

.about-image {
	width: 100%;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	background-color: #c4c4c4;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* Team Section Styles */
.team-section {
	padding: 80px 136px;
	background-color: var(--white);
}

.team-header {
	text-align: center;
	margin-bottom: var(--spacing-xxl);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.team-title {
	font-size: 48px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: var(--spacing-md);
	line-height: 1.2;
}

.team-description {
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-light);
	margin: 0;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-lg);
}

.team-member {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.member-image {
	width: 100%;
	aspect-ratio: 1;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	background-color: #d1d5db;
	margin-bottom: var(--spacing-md);
}

.member-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.member-info {
	width: 100%;
}

.member-name {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: var(--spacing-xs);
}

.member-role {
	font-size: 16px;
	color: var(--text-light);
	margin: 0;
}

/* Media Queries ----------------------------------------------------- */
@media (max-width: 1440px) {
	:root {
		--container-padding: 24px;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 var(--spacing-md);
	}

	.hero {
		padding-top: var(--spacing-xl);
	}

	.hero-title {
		font-size: 32px;
		line-height: 40px;
	}

	.hero-description {
		font-size: 16px;
		line-height: 24px;
	}

	.hero-buttons {
		flex-direction: row;
		width: 100%;
		max-width: 347px;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-buttons .btn {
		width: 100%;
		min-width: 0;
	}

	.monitor {
		height: 155px;
		max-width: 344px;
		transform: rotate(180deg);
	}

	.partner-logo {
		height: 40px;
		max-width: 80px;
		margin: 0 var(--spacing-sm);
	}

	.logo-track {
		animation: scroll 20s linear infinite;
	}

	/* Mobile Features Section */
	.features-section {
		padding: 40px 0;
	}

	.features-row {
		flex-direction: column-reverse;
		gap: 40px;
	}

	.features-text {
		max-width: 100%;
		text-align: center;
	}

	.features-title {
		font-size: 32px;
		line-height: 1.3;
		margin-bottom: 16px;
	}

	.features-description {
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 32px;
	}

	.features-image {
		justify-content: center;
	}

	.feature-img {
		max-width: 100%;
	}

	/* Mobile Feature Highlights */
	.feature-highlights {
		padding: 40px 24px;
		margin: 20px 0;
	}

	.feature-tabs {
		max-width: 100%;
		justify-content: space-between;
		padding: 8px;
		margin-bottom: 40px;
		overflow-x: visible;
	}

	.feature-tab {
		flex: 1;
		justify-content: center;
		padding: 8px 4px;
	}

	.tab-text {
		font-size: 14px;
	}

	.highlight-content {
		display: none;
		flex-direction: column;
		gap: 40px;
		margin-bottom: 40px;
		opacity: 0;
		transform: translateY(20px);
		transition: opacity 0.3s ease, transform 0.3s ease;
	}

	.highlight-content.active {
		display: flex;
		opacity: 1;
		transform: translateY(0);
	}

	.highlight-text {
		max-width: 100%;
		text-align: center;
		order: 2;
	}

	.highlight-image {
		justify-content: center;
		order: 1;
	}

	.highlight-title {
		font-size: 32px;
		line-height: 1.3;
		margin-bottom: 16px;
	}

	.highlight-description {
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 32px;
	}

	.card-scroll {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		padding-bottom: 20px;
	}

	.feature-card {
		flex: 0 0 85%;
		scroll-snap-align: start;
	}

	/* Mobile Testimonials Section */
	.testimonials {
		padding: 40px 24px;
	}

	.testimonials-title {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.testimonials-container {
		flex-direction: column;
	}

	.testimonial-card {
		padding: 24px;
	}

	.testimonial-text {
		font-size: 16px;
	}
}
/* Pricing Page Specific Styles */
.pricing-page {
	padding-bottom: var(--spacing-xxl);
	background-color: var(--white);
}
.pricing-plans {
	padding-bottom: 80px;
}
.pricing-hero {
	padding: var(--spacing-xl) 0 var(--spacing-md);
	text-align: center;
}

.pricing-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-dark);
	margin-bottom: var(--spacing-sm);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.pricing-description {
	font-size: 18px;
	line-height: 1.5;
	color: var(--text-light);
	margin-bottom: var(--spacing-lg);
}

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

.billing-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	border-radius: 100px;
	padding: 4px;
	max-width: 300px;
	margin: 0 auto var(--spacing-xs);
	border: 1px solid #e5e7eb;
}

.toggle-option {
	flex: 1;
	padding: var(--spacing-xs) var(--spacing-sm);
	border-radius: 100px;
	border: none;
	background: transparent;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	cursor: pointer;
	transition: all 0.3s ease;
}

.toggle-option.active {
	background-color: var(--primary);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	color: white;
}

.toggle-option:hover:not(.active) {
	background-color: rgba(41, 83, 255, 0.05);
	color: var(--primary);
}

.billing-save {
	font-size: 14px;
	color: var(--text-light);
	margin-bottom: var(--spacing-lg);
	transition: opacity 0.3s ease;
}

.plans-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--spacing-md);
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

/* Price transition animations */
.price-amount {
	transition: all 0.3s ease;
}

.price-period {
	transition: all 0.3s ease;
}

/* Plan card hover effects */
.plan-card {
	background-color: var(--white);
	border-radius: var(--border-radius-sm);
	border: 2px solid #e5e7eb;
	padding: var(--spacing-lg) var(--spacing-md);
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	min-height: 500px;
}

.plan-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.popular {
	border-radius: 0 0 16px 16px;
	/* border-color: var(--secondary); */
	border-width: 2px;
}

.popular-badge {
	position: absolute;
	top: -32px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--secondary);
	color: var(--white);
	font-size: 12px;
	font-weight: 600;
	padding: 8px;
	border-radius: 16px 16px 0 0;
	width: 100%;
	white-space: nowrap;
	text-align: center;
}

.plan-header {
	text-align: center;
	margin-bottom: var(--spacing-md);
	padding-bottom: var(--spacing-sm);
	border-bottom: 1px solid #f0f0f0;
}

.plan-name {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 4px;
}

.plan-for {
	font-size: 12px;
	color: var(--text-light);
	margin-bottom: var(--spacing-sm);
}

.plan-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin-bottom: var(--spacing-sm);
}

.price-currency {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
}

.price-amount {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1;
	margin: 0 2px;
}

.price-period {
	font-size: 14px;
	color: var(--text-light);
}

.plan-features {
	flex: 1;
	margin-bottom: var(--spacing-md);
}

.feature-item {
	display: flex;
	align-items: flex-start;
	/* margin-bottom: 12px; */
	font-size: 14px;
}

.feature-icon {
	margin-right: var(--spacing-xs);
	flex-shrink: 0;
	margin-top: 2px;
}

.feature-icon svg {
	width: 16px;
	height: 16px;
}

.feature-text {
	font-size: 14px;
	color: var(--text-dark);
	line-height: 1.4;
}

.plan-action {
	margin-top: auto;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 var(--spacing-md);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

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

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

.btn-outline:hover {
	background-color: rgba(41, 83, 255, 0.05);
}

.btn-full {
	width: 100%;
}
/* Education Banner Styles */
.education-banner {
	background-color: #5475ff;
	border-radius: var(--border-radius-lg);
	padding: 48px 0;
	margin: var(--spacing-xl) auto;
	max-width: 1400px;
}
.education-banner-section {
	padding: 40px 136px;
}
/* .container {
width: 100%;
max-width: var(--container-width);
margin: 0 auto;
padding: 0 var(--spacing-md);
} */

.education-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.education-title {
	color: var(--white);
	font-size: 48px;
	font-weight: 700;
	margin-bottom: var(--spacing-sm);
	line-height: 1.2;
}

.education-description {
	color: var(--white);
	font-size: 24px;
	font-weight: 400;
	margin-bottom: var(--spacing-lg);
	line-height: 1.4;
}

.education-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--white);
	color: #5475ff;
	font-size: 18px;
	font-weight: 600;
	padding: var(--spacing-sm) var(--spacing-xl);
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.3s ease;
	min-width: 220px;
	height: 56px;
}

.education-button:hover {
	background-color: rgba(255, 255, 255, 0.9);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 32px;
		line-height: 40px;
	}

	.hero-description {
		font-size: 16px;
		line-height: 24px;
	}

	.partner-logo {
		height: 30px;
		max-width: 60px;
		margin: 0 var(--spacing-xs);
	}

	.feature-tab {
		padding: 6px 2px;
	}

	.tab-text {
		font-size: 13px;
	}

	.feature-card {
		flex: 0 0 90%;
		padding: 24px;
	}

	.card-title {
		font-size: 20px;
	}

	/* Mobile Testimonials Section */
	.testimonials-title {
		font-size: 28px;
		margin-bottom: 32px;
	}
	#first-testimonial {
		flex-direction: column;
	}
	.testimonial-card {
		padding: 20px;
	}

	.star {
		font-size: 20px;
	}

	.testimonial-text {
		font-size: 15px;
		margin-bottom: 20px;
	}

	.author-image {
		width: 40px;
		height: 40px;
	}

	.author-name {
		font-size: 15px;
	}

	.author-company {
		font-size: 13px;
	}

	.nav-button {
		width: 36px;
		height: 36px;
	}
}

/* Contact Page Specific Styles */
.contact-page {
	padding: 80px 136px;
	background-color: var(--background);
	/* min-height: 100vh; */
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 80px;
	width: 100%;
	max-width: 1200px;
}

.contact-info {
	flex: 1;
	min-width: 340px;
}

.contact-form {
	flex: 1;
	min-width: 0;
	max-width: 668px;
}

.contact-title {
	font-size: 48px;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.1;
	margin-bottom: 16px;
}

.contact-description {
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-light);
	margin-bottom: 16px;
}

.contact-response {
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-light);
	margin-bottom: var(--spacing-xl);
}

.details-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 16px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	/* margin-bottom: var(--spacing-md); */
}

.contact-icon {
	flex-shrink: 0;
}

.contact-text {
	font-size: 16px;
	color: var(--text-light);
}

.contact-form {
	background-color: var(--white);
	border-radius: var(--border-radius-lg);
	padding: 24px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-md);
	/* margin-bottom: var(--spacing-md); */
}

.form-group {
	margin-bottom: var(--spacing-md);
}

.contact-form label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-dark);
	margin-bottom: var(--spacing-xs);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: var(--spacing-sm);
	border: 1px solid #e5e5e7;
	border-radius: 8px;
	font-size: 15px;
	color: var(--text-dark);
	transition: border-color 0.2s ease;
	font-family: inherit;
}

.contact-form input {
	height: 48px;
}

.contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #9ca3af;
}

.submit-btn {
	width: 100%;
	height: 48px;
	background-color: var(--primary);
	color: var(--white);
	border: none;
	border-radius: var(--border-radius-lg);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
	margin-bottom: var(--spacing-md);
}

.submit-btn:hover {
	background-color: var(--primary-light);
}

.privacy-text {
	font-size: 13px;
	color: var(--text-light);
	line-height: 1.4;
	margin: 0;
}

.privacy-link {
	color: var(--text-dark);
	text-decoration: underline;
}

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

/* Terms & Conditions Page */

/* Terms Page Styles */
.terms-page {
	padding: var(--spacing-xxl) 0;
	background-color: white;
	min-height: 100vh;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.terms-content {
	max-width: 800px;
	margin: 0 auto;
	background-color: var(--white);
	border-radius: var(--border-radius-lg);
	padding: var(--spacing-xxl);
	/* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05); */
}

.terms-title {
	font-size: 48px;
	font-weight: 700;
	color: var(--text-dark);
	text-align: center;
	margin-bottom: var(--spacing-sm);
	line-height: 1.2;
}

.last-updated {
	text-align: center;
	color: var(--text-light);
	font-size: 16px;
	margin-bottom: var(--spacing-xl);
}

.terms-intro {
	margin-bottom: var(--spacing-xl);
}

.terms-intro p {
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-light);
	margin: 0;
}

.terms-sections {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
}

.terms-section {
	display: flex;
	gap: var(--spacing-md);
	align-items: flex-start;
}

.section-number {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0;
	flex-shrink: 0;
	min-width: 24px;
}

.section-content {
	flex: 1;
}

.section-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 var(--spacing-xs) 0;
	line-height: 1.3;
}

.section-text {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-light);
	margin: 0;
}
/* 404 Error Page Styles */
.error-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--spacing-xl) 0;
	background-color: var(--background);
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.error-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.error-illustration {
	margin-bottom: var(--spacing-xxl);
	width: 100%;
	max-width: 600px;
}

.illustration-img {
	width: 100%;
	height: auto;
	display: block;
}

.error-text {
	margin-bottom: var(--spacing-xxl);
}

.error-title {
	font-size: 64px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: var(--spacing-md);
	line-height: 1.1;
}

.error-subtitle {
	font-size: 32px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: var(--spacing-lg);
	line-height: 1.2;
}

.error-description {
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-light);
	margin: 0;
	max-width: 600px;
}

.error-actions {
	display: flex;
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-xxl);
	flex-wrap: wrap;
	justify-content: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--spacing-sm) var(--spacing-xl);
	border-radius: 100px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
	min-width: 200px;
	height: 56px;
}

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

.btn-primary:hover {
	background-color: var(--primary-light);
	border-color: var(--primary-light);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(41, 83, 255, 0.3);
}

.btn-outline {
	background-color: transparent;
	color: var(--primary);
	border-color: var(--primary);
}

.btn-outline:hover {
	background-color: rgba(41, 83, 255, 0.05);
	transform: translateY(-2px);
}

.error-contact {
	background-color: #e5fbf5;
	border-radius: var(--border-radius-lg);
	padding: 8px 16px;
	width: 100%;
	max-width: 500px;
}

.contact-text {
	font-size: 16px;
	color: var(--text-dark);
	/* margin: 0 0 16px 0; */
	font-weight: 500;
}

.contact-email {
	font-size: 16px;
	color: var(--text-dark);
	text-decoration: underline;
	font-weight: 600;
}

.contact-email:hover {
	color: var(--primary);
}

/* media queries -------------------------------------------- */

@media (min-width: 769px) {
	.logo-text {
		display: inline-block;
	}

	.nav-desktop {
		display: block;
	}

	.auth-buttons {
		display: flex;
	}

	.menu-toggle {
		display: none;
	}

	.hero-title {
		font-size: 48px;
		line-height: 64px;
	}

	.hero-description {
		font-size: 18px;
		line-height: 24px;
	}

	.hero-buttons .btn {
		height: 48px;
		padding: var(--spacing-sm) var(--spacing-lg);
		font-size: 16px;
		line-height: 24px;
	}
}

/* Media Queries for FAQ Section */
@media (max-width: 768px) {
	.faq-section {
		padding: 40px 24px;
	}

	.faq-title {
		font-size: 32px;
		margin-bottom: 16px;
	}

	.faq-description {
		font-size: 16px;
		margin-bottom: 40px;
	}

	.accordion-header {
		padding: 20px 0;
		font-size: 18px;
	}

	.accordion-content {
		padding-bottom: 20px;
	}

	.faq-support {
		padding: 8px 16px;
		margin-top: 32px;
	}
}

@media (max-width: 480px) {
	.faq-title {
		font-size: 28px;
	}

	.accordion-header {
		font-size: 16px;
		padding: 16px 0;
	}

	.accordion-content {
		font-size: 15px;
	}

	.faq-support {
		padding: 8px 16px;
	}

	.faq-support p {
		display: block;
		margin-right: 0;
		margin-bottom: 8px;
	}
	.language-selector {
		content-visibility: hidden;
	}
}

/* Media Queries for CTA Section */
@media (max-width: 768px) {
	.cta-section {
		padding: 60px 0;
	}

	.cta-title {
		font-size: 36px;
		margin-bottom: 16px;
	}

	.cta-description {
		font-size: 16px;
		margin-bottom: 32px;
		padding: 0 20px;
	}

	.cta-button {
		padding: 14px 28px;
		font-size: 15px;
		width: 80%;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.cta-section {
		padding: 40px 24px;
	}

	.cta-title {
		font-size: 32px;
	}

	.cta-description {
		font-size: 15px;
		line-height: 1.5;
	}

	.cta-button {
		padding: 12px 24px;
		font-size: 14px;
		width: 90%;
	}
}

/* Media Queries for Footer */
@media (max-width: 1024px) {
	.footer-content {
		flex-direction: column;
		gap: 10px;
	}

	.footer-column {
		flex-basis: 100%;
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.footer {
		padding: 40px 24px 24px;
	}

	.footer-heading {
		margin-bottom: 16px;
	}

	.footer-links li {
		margin-bottom: 12px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 24px;
		text-align: center;
	}

	.copyright {
		order: 2;
	}

	.social-links {
		order: 1;
	}
}

@media (max-width: 480px) {
	.footer {
		padding: 48px 24px 40px;
	}

	.footer-heading {
		font-size: 16px;
	}

	.footer-links a {
		font-size: 15px;
	}

	.copyright {
		font-size: 13px;
	}

	.social-link {
		width: 40px;
		height: 40px;
	}

	.social-icon {
		width: 20px;
		height: 20px;
	}
}

/* Media Queries for Features Page------------------- */
@media (max-width: 1440px) {
	.features-content {
		padding-left: 24px;
	}
}

@media (max-width: 1024px) {
	.features-title {
		font-size: 40px;
	}

	.features-content {
		padding-top: 60px;
	}

	.features-frame {
		margin-top: 60px;
	}
}

@media (max-width: 768px) {
	.features-container {
		flex-direction: column;
	}

	.features-content {
		width: 100%;
		padding: 40px 24px 0;
		text-align: center;
	}

	.features-title {
		font-size: 32px;
		line-height: 1.3;
		margin-left: auto;
		margin-right: auto;
	}

	.features-description {
		font-size: 16px;
		margin-left: auto;
		margin-right: auto;
	}

	.features-buttons {
		max-width: 347px;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		gap: 16px;
	}
	.mobile-frame {
		max-width: 300px;
		height: 155px;
		padding: 10px;
	}

	.features-frame {
		width: 100%;
		max-width: 344px;
		height: 155px;
		margin-top: 32px;
		margin-bottom: 0;
		padding: 0px 24px;
		/* transform: rotate(90deg); */
	}
}

@media (max-width: 480px) {
	.features-content {
		padding-top: 32px;
	}

	.features-title {
		font-size: 28px;
		margin-bottom: 16px;
	}

	.features-description {
		margin-bottom: 24px;
	}

	.features-frame {
		height: 120px;
	}
}

/* Media Queries for Analysing Data Component */
@media (max-width: 1440px) {
	.analysing-data-container {
		padding: 0 24px;
	}
}

@media (max-width: 1024px) {
	.analysing-data {
		padding: 60px 0;
	}

	.analysing-data-title {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.data-feature-cards {
		flex-wrap: wrap;
	}

	.data-feature-card {
		flex-basis: calc(50% - 15px);
		margin-bottom: 30px;
	}
}

@media (max-width: 768px) {
	.analysing-data {
		padding: 50px 0;
	}

	.analysing-data-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.data-feature-cards {
		flex-direction: column;
		gap: 24px;
	}

	.data-feature-card {
		flex-basis: 100%;
		margin-bottom: 24px;
	}

	.data-feature-card:last-child {
		margin-bottom: 0;
	}
}

@media (max-width: 480px) {
	.analysing-data {
		padding: 40px 0;
	}

	.analysing-data-container {
		padding: 0 16px;
	}

	.analysing-data-title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.data-feature-icon {
		width: 40px;
		height: 40px;
	}

	.data-feature-title {
		font-size: 18px;
	}

	.data-feature-text {
		font-size: 14px;
	}
}

/* Media Queries for Feature Showcase Component */
@media (max-width: 1440px) {
	.showcase-container {
		padding: 0 24px;
	}
}

@media (max-width: 1024px) {
	.showcase-container {
		gap: 40px;
	}

	.showcase-title {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.showcase-container {
		flex-direction: column;
		gap: 32px;
	}

	.showcase-image,
	.showcase-content {
		max-width: 100%;
	}

	.showcase-title {
		font-size: 28px;
	}

	.showcase-features {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 480px) {
	.feature-showcase {
		padding: 40px 0;
	}

	.showcase-container {
		padding: 0 16px;
	}

	.showcase-title {
		font-size: 24px;
	}

	.showcase-description {
		font-size: 14px;
	}

	.showcase-features {
		flex-direction: column;
		gap: 16px;
	}

	.features-column {
		gap: 12px;
	}

	.feature-text {
		font-size: 14px;
	}

	.showcase-button {
		width: 100%;
		padding: 12px 16px;
	}
}

/* Media Queries for Testimonial Section */
@media (max-width: 1440px) {
	.testimonial-container {
		padding: 0 24px;
	}
}

@media (max-width: 1024px) {
	.testimonial-card {
		padding: 32px;
	}

	.testimonial-title {
		font-size: 32px;
	}

	.testimonial-subtitle {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.testimonial-section {
		padding: 60px 0;
	}

	.testimonial-card {
		flex-direction: column;
		gap: 32px;
	}

	.testimonial-content,
	.testimonial-quote-box {
		max-width: 100%;
	}

	.testimonial-title {
		font-size: 28px;
		text-align: center;
	}

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

@media (max-width: 480px) {
	.testimonial-section {
		padding: 40px 0;
	}

	.testimonial-container {
		padding: 0 16px;
	}

	.testimonial-card {
		padding: 24px;
	}

	.testimonial-title {
		font-size: 24px;
	}

	.testimonial-quote-box {
		padding: 24px;
	}

	.testimonial-stars {
		justify-content: center;
	}

	.testimonial-quote {
		font-size: 14px;
		text-align: center;
	}

	.testimonial-author {
		justify-content: center;
	}
}

/* Media Queries for Explore Page------------ */

/* Media Queries for Explore Page */
@media (max-width: 1024px) {
	.explore-hero-title {
		font-size: 40px;
	}
}

@media (max-width: 768px) {
	.explore-hero {
		padding: 40px 24px;
	}

	.explore-hero-title {
		font-size: 32px;
	}

	.explore-hero-description {
		font-size: 16px;
		margin-bottom: var(--spacing-lg);
	}

	/* Update stats grid to 2x2 layout for tablets and mobile */
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		padding: 0;
	}

	.stat-card {
		padding: 16px;
	}

	.stat-number {
		font-size: 32px;
	}
}

@media (max-width: 480px) {
	.explore-hero-title {
		font-size: 28px;
	}

	.stat-number {
		font-size: 28px;
	}

	.stat-label {
		font-size: 14px;
	}
}

/* Media Queries for Provinces Table */
@media (max-width: 768px) {
	.provinces-table th,
	.provinces-table td {
		padding: 12px 16px;
		font-size: 14px;
	}
	.provinces-stats {
		padding: 32px 24px;
	}
	.provinces-table-section {
		padding: 0 24px;
	}
}

@media (max-width: 480px) {
	.provinces-table th,
	.provinces-table td {
		padding: 10px 12px;
		font-size: 14px;
	}

	.province-column {
		width: 40%;
	}

	.buurten-column {
		width: 60%;
	}

	.buurten-badge {
		font-size: 12px;
		padding: 3px 8px;
	}

	.sort-button svg {
		width: 14px;
		height: 14px;
	}
}

/* Responsive styles for Provinces Grid */
@media (max-width: 1200px) {
	.provinces-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	.provinces-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.section-title {
		font-size: 28px;
	}
	.provinces-grid-section {
		padding: 0px 24px;
	}
	.section-description {
		font-size: 15px;
	}

	.provinces-pagination {
		flex-direction: column;
		gap: var(--spacing-md);
	}
}

@media (max-width: 576px) {
	.provinces-grid {
		grid-template-columns: 1fr;
	}

	.province-card {
		max-width: 100%;
	}

	.province-map {
		height: 180px;
	}
}

/* Responsive Styles */
@media (max-width: 992px) {
	.municipality-title {
		font-size: 40px;
	}

	.municipality-description {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.municipality-hero {
		padding: 40px 24px;
	}

	.municipality-title {
		font-size: 32px;
	}
}

@media (max-width: 576px) {
	.municipality-title {
		font-size: 28px;
	}

	.municipality-description {
		font-size: 15px;
	}

	.breadcrumb {
		font-size: 12px;
	}
}

/* Media queries for Province info section responsive design */
@media (max-width: 768px) {
	.province-title {
		font-size: 32px;
	}

	.province-description {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.province-title {
		font-size: 28px;
		margin-bottom: 16px;
	}

	.province-description {
		font-size: 15px;
	}
}

/* Media queries for responsive design */
@media (max-width: 992px) {
	.living-content {
		gap: var(--spacing-lg);
	}

	.living-title {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.living-content {
		flex-direction: column;
	}
	.living-section {
		padding: 40px 24px;
	}
	.living-text {
		width: 100%;
		margin-bottom: var(--spacing-lg);
	}

	.living-image {
		width: 100%;
	}

	.living-title {
		font-size: 28px;
	}

	.living-description {
		font-size: 15px;
	}

	.living-button {
		width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.living-section {
		padding: 40px 24px;
	}

	.living-title {
		font-size: 24px;
		margin-bottom: var(--spacing-sm);
	}

	.living-description {
		margin-bottom: var(--spacing-sm);
	}
}

/* Media queries for responsive design */
@media (max-width: 1200px) {
	.neighborhoods-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	.neighborhoods-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.neighborhoods-title {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.neighborhoods-section {
		padding: 40px 24px;
	}

	.neighborhoods-header {
		margin-bottom: var(--spacing-lg);
	}

	.neighborhoods-title {
		font-size: 24px;
	}

	.neighborhoods-description {
		font-size: 15px;
	}

	.neighborhoods-pagination {
		flex-direction: column;
		gap: var(--spacing-md);
		align-items: flex-start;
	}

	.pagination-buttons {
		width: 100%;
	}

	.pagination-button {
		flex: 1;
		justify-content: center;
	}
}

@media (max-width: 576px) {
	.neighborhoods-grid {
		grid-template-columns: 1fr;
	}

	.neighborhood-card {
		max-width: 100%;
	}

	.neighborhoods-title {
		font-size: 22px;
	}
}

/* Media queries for responsive design */
@media (max-width: 992px) {
	.data-application-content {
		gap: var(--spacing-lg);
	}

	.data-application-title {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.data-application-content {
		flex-direction: column;
	}

	.data-application-text {
		width: 100%;
		margin-bottom: var(--spacing-lg);
	}

	.data-application-image {
		width: 100%;
	}

	.data-application-title {
		font-size: 28px;
	}

	.data-application-description {
		font-size: 15px;
	}

	.item-text {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.data-application-section {
		padding: 40px 24px;
	}

	.data-application-title {
		font-size: 24px;
		margin-bottom: var(--spacing-sm);
	}

	.data-application-description {
		margin-bottom: var(--spacing-sm);
	}

	.data-application-item {
		margin-bottom: var(--spacing-sm);
	}
}

/* Responsive styles for key figures ---------------------*/
@media (max-width: 992px) {
	.key-figures-grid {
		grid-template-columns: repeat(2, 1fr);
		padding: 0 var(--spacing-md);
	}

	.key-figures-title {
		font-size: 28px;
		padding: 0 var(--spacing-md);
	}

	.key-figure-card {
		padding: var(--spacing-md) var(--spacing-sm);
	}
}

@media (max-width: 768px) {
	.key-figures-section {
		padding: var(--spacing-lg) 0;
	}

	.key-figures-title {
		font-size: 26px;
		margin-bottom: 24px;
	}

	.key-figures-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-sm);
	}

	.key-figure-code {
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	.key-figures-title {
		font-size: 24px;
		margin-bottom: var(--spacing-md);
	}

	.key-figure-code {
		font-size: 18px;
	}

	.key-figure-label {
		font-size: 14px;
	}
}

/* Responsive styles --------------------- */
@media (max-width: 1200px) {
	.neighborhoods-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	.neighborhoods-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.filters-container {
		flex-direction: column;
		gap: var(--spacing-sm);
		padding: 0px 24px;
	}
	.search-container {
		min-width: 0px;
	}

	.filter-dropdown {
		max-width: 100%;
		/* padding: 0 24px; */
	}

	.municipality-header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--spacing-sm);
	}

	.municipality-count {
		align-self: flex-start;
	}

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

	.pagination {
		flex-direction: column;
		gap: var(--spacing-md);
		align-items: flex-start;
	}

	.pagination-controls {
		width: 100%;
	}

	.pagination-button {
		flex: 1;
		justify-content: center;
	}
}

@media (max-width: 576px) {
	.neighborhoods-page {
		padding: var(--spacing-md) 0;
	}

	.municipality-name {
		font-size: 20px;
	}

	.municipality-province {
		font-size: 13px;
	}

	.municipality-count {
		font-size: 13px;
	}

	.neighborhood-card {
		padding: var(--spacing-sm);
	}

	.neighborhood-name {
		font-size: 15px;
	}

	.neighborhood-code {
		font-size: 13px;
		margin-bottom: var(--spacing-sm);
	}

	.neighborhood-link {
		height: 36px;
		font-size: 13px;
	}

	.pagination-info {
		font-size: 13px;
	}

	.pagination-button {
		height: 36px;
		font-size: 13px;
	}
}

/* Mobile styles */
@media (max-width: 768px) {
	.pricing-hero {
		padding: var(--spacing-lg) 0 var(--spacing-sm);
	}

	.pricing-title {
		font-size: 28px;
		padding: 0 var(--spacing-sm);
	}

	.pricing-description {
		font-size: 16px;
		padding: 0 var(--spacing-sm);
	}

	.plans-container {
		grid-template-columns: 1fr;
		gap: var(--spacing-sm);
		padding: 0 var(--spacing-sm);
	}

	.plan-card {
		min-height: auto;
		padding: var(--spacing-md) var(--spacing-sm);
	}

	.plan-card.popular {
		order: -1;
	}

	.plan-name {
		font-size: 18px;
	}

	.price-amount {
		font-size: 32px;
	}

	.feature-text {
		font-size: 13px;
	}

	.btn {
		height: 40px;
		font-size: 13px;
	}
}

@media (max-width: 1200px) and (min-width: 769px) {
	.plans-container {
		grid-template-columns: repeat(2, 1fr);
		max-width: 800px;
	}
}

@media (max-width: 576px) {
	.pricing-title {
		font-size: 24px;
	}

	.pricing-description {
		font-size: 14px;
	}

	.toggle-option {
		padding: 6px var(--spacing-xs);
		font-size: 14px;
	}

	.plan-name {
		font-size: 16px;
	}

	.price-amount {
		font-size: 28px;
	}

	.feature-text {
		font-size: 12px;
	}
}

/* Responsive styles */
@media (max-width: 992px) {
	.education-title {
		font-size: 40px;
	}

	.education-description {
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	.education-banner {
		padding: var(--spacing-lg) var(--spacing-sm);
		margin: var(--spacing-lg) var(--spacing-sm);
	}
	.education-banner-section {
		padding: 20px 4px;
	}
	.education-title {
		font-size: 36px;
	}

	.education-description {
		font-size: 20px;
		margin-bottom: var(--spacing-md);
	}

	.education-button {
		font-size: 16px;
		min-width: 200px;
		height: 52px;
	}
}

@media (max-width: 576px) {
	.education-banner {
		padding: var(--spacing-md) var(--spacing-sm);
		margin: var(--spacing-md) var(--spacing-xs);
	}

	.education-title {
		font-size: 32px;
	}

	.education-description {
		font-size: 18px;
	}

	.education-button {
		width: 100%;
		max-width: 280px;
		height: 48px;
	}
}

/* Responsive styles */
@media (max-width: 1200px) {
	.about-title {
		font-size: 56px;
	}

	.description-paragraph {
		font-size: 17px;
	}
}

@media (max-width: 992px) {
	.about-content {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}

	.about-title {
		font-size: 48px;
	}

	.description-paragraph {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.about-page {
		padding: var(--spacing-lg) 0;
	}

	.about-content {
		gap: var(--spacing-md);
		margin-bottom: var(--spacing-lg);
		padding: 40px 24px;
	}

	.about-title {
		font-size: 40px;
		margin-bottom: var(--spacing-lg);
	}

	.join-team-btn {
		width: 100%;
		max-width: 300px;
		font-size: 16px;
		height: 52px;
	}

	.about-image {
		min-height: 300px;
	}
}

@media (max-width: 576px) {
	.about-page {
		padding: var(--spacing-md) 0;
	}

	.about-title {
		font-size: 36px;
	}

	.description-paragraph {
		font-size: 15px;
	}

	.join-team-btn {
		height: 48px;
		font-size: 15px;
	}

	.about-image {
		min-height: 250px;
	}
}

@media (max-width: 480px) {
	.about-title {
		font-size: 32px;
	}

	.description-paragraph {
		font-size: 14px;
	}
}

/* Tablet styles */
@media (max-width: 1024px) {
	.team-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--spacing-md);
	}

	.team-title {
		font-size: 40px;
	}

	.team-description {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-sm);
	}

	.team-title {
		font-size: 36px;
	}

	.member-name {
		font-size: 18px;
	}

	.member-role {
		font-size: 15px;
	}
}

/* Mobile styles - horizontal scroll */
@media (max-width: 576px) {
	.team-section {
		padding: var(--spacing-lg) 0;
	}

	.team-header {
		margin-bottom: var(--spacing-lg);
		padding: 0 var(--spacing-sm);
	}

	.team-title {
		font-size: 32px;
	}

	.team-description {
		font-size: 15px;
	}

	.team-grid {
		display: flex;
		overflow-x: auto;
		gap: var(--spacing-sm);
		padding: 0 var(--spacing-sm);
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.team-grid::-webkit-scrollbar {
		display: none;
	}

	.team-grid {
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.team-member {
		flex: 0 0 280px;
		scroll-snap-align: start;
	}

	.member-image {
		width: 280px;
		height: 280px;
		flex-shrink: 0;
	}

	.member-name {
		font-size: 16px;
	}

	.member-role {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.team-member {
		flex: 0 0 240px;
	}

	.member-image {
		width: 240px;
		height: 240px;
	}

	.team-title {
		font-size: 28px;
	}

	.team-description {
		font-size: 14px;
	}
}

/* Responsive styles ---------------------------- contact page*/
@media (max-width: 992px) {
	.contact-content {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}

	.contact-info {
		padding: 40px 24px;
	}

	.contact-title {
		font-size: 48px;
	}
}

@media (max-width: 768px) {
	.contact-page {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 32px 0;
	}
	.contact-content {
		flex-direction: column;
		gap: 32px;
		max-width: 100%;
		padding: 0 8px;
	}
	.contact-info {
		min-width: 0;
		width: 100%;
		padding: 0 16px;
	}
	.contact-form {
		min-width: 0;
		max-width: 100%;
		width: 100%;
		padding: 32px 8px;
		box-sizing: border-box;
		align-items: stretch;
	}
}

@media (max-width: 480px) {
	.contact-form {
		padding: 16px 0;
	}
	.contact-info {
		padding: 0 8px;
	}
}

@media (max-width: 576px) {
	.contact-title {
		font-size: 36px;
	}

	.contact-description,
	.contact-response {
		font-size: 15px;
	}

	.contact-form {
		padding: var(--spacing-md);
		border-radius: var(--border-radius-sm);
	}

	.contact-text {
		font-size: 15px;
	}

	.details-title {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.contact-title {
		font-size: 32px;
	}

	.contact-item {
		align-items: flex-start;
	}

	.contact-icon {
		margin-top: 2px;
	}
}

/* Responsive Styles terms & conditions */
@media (max-width: 992px) {
	.container {
		padding: 0 var(--spacing-xl);
	}

	.terms-content {
		padding: var(--spacing-xl);
	}

	.terms-title {
		font-size: 40px;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 var(--spacing-md);
	}

	.terms-page {
		padding: var(--spacing-lg) 0;
	}

	.terms-content {
		margin: 0;
		padding: var(--spacing-lg);
		border-radius: var(--border-radius-sm);
	}

	.terms-title {
		font-size: 36px;
	}

	.terms-intro p {
		font-size: 16px;
	}

	.section-title {
		font-size: 16px;
	}

	.section-text {
		font-size: 15px;
	}
}

@media (max-width: 576px) {
	.container {
		padding: 0 var(--spacing-sm);
	}

	.terms-content {
		padding: var(--spacing-md);
		border-radius: 0;
	}

	.terms-title {
		font-size: 32px;
	}

	.terms-section {
		flex-direction: column;
		gap: var(--spacing-xs);
	}

	.section-number {
		font-size: 16px;
	}

	.section-title {
		font-size: 15px;
	}

	.section-text {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.terms-title {
		font-size: 28px;
	}

	.last-updated {
		font-size: 14px;
	}

	.terms-intro p {
		font-size: 15px;
	}
}

/* Responsive Styles */
@media (max-width: 992px) {
	.container {
		padding: 0 var(--spacing-xl);
	}

	.error-title {
		font-size: 56px;
	}

	.error-subtitle {
		font-size: 28px;
	}

	.error-description {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 var(--spacing-md);
	}

	.error-page {
		padding: var(--spacing-lg) 0;
	}

	.error-illustration {
		margin-bottom: var(--spacing-lg);
	}

	.error-text {
		margin-bottom: var(--spacing-lg);
	}

	.error-title {
		font-size: 48px;
	}

	.error-subtitle {
		font-size: 24px;
	}

	.error-description {
		font-size: 15px;
	}

	.error-actions {
		flex-direction: column;
		align-items: center;
		gap: var(--spacing-sm);
		margin-bottom: var(--spacing-lg);
	}

	.btn {
		width: 100%;
		max-width: 320px;
		height: 52px;
		font-size: 15px;
	}

	.error-contact {
		padding: var(--spacing-md);
	}
}

@media (max-width: 576px) {
	.container {
		padding: 0 var(--spacing-sm);
	}

	.error-title {
		font-size: 40px;
	}

	.error-subtitle {
		font-size: 22px;
	}

	.error-description {
		font-size: 14px;
	}

	.btn {
		height: 48px;
		font-size: 14px;
		min-width: 180px;
	}

	.contact-text,
	.contact-email {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.error-title {
		font-size: 36px;
	}

	.error-subtitle {
		font-size: 20px;
	}

	.error-illustration {
		margin-bottom: var(--spacing-md);
	}

	.error-text {
		margin-bottom: var(--spacing-md);
	}

	.error-actions {
		margin-bottom: var(--spacing-md);
	}
}

/* Animation for illustration */
@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

.illustration-img {
	animation: float 3s ease-in-out infinite;
}

/* Focus states for accessibility */
.btn:focus {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}

.contact-email:focus {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}
/* Signup Page Specific Styles - Mobile First Approach */
.signup-page {
	min-height: 100vh;
	background-color: var(--background);
	padding: 0;
}

.container {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.signup-container {
	background-color: var(--white);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.signup-header {
	padding: var(--spacing-sm) var(--spacing-md);
	border-bottom: 1px solid #e5e5e7;
	flex-shrink: 0;
}

.logo {
	height: 32px;
	width: auto;
	margin-bottom: var(--spacing-sm);
	display: block;
}

.user-type-selector {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 2px;
}

.user-type-selector::-webkit-scrollbar {
	display: none;
}

.user-type-btn {
	background: none;
	border: 1px solid transparent;
	padding: 8px 12px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-light);
	cursor: pointer;
	border-radius: 6px;
	transition: all 0.2s ease;
	white-space: nowrap;
	flex-shrink: 0;
	min-height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.user-type-btn:hover {
	background-color: rgba(41, 83, 255, 0.05);
	color: var(--primary);
	border-color: rgba(41, 83, 255, 0.2);
}

.user-type-btn.active {
	background-color: rgba(41, 83, 255, 0.1);
	color: var(--primary);
	font-weight: 600;
	border-color: var(--primary);
}

.signup-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.signup-info {
	padding: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
	border-bottom: 1px solid #f0f0f0;
}

.info-content {
	display: none;
}

.info-content.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.info-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 8px;
	line-height: 1.2;
}

.info-description {
	font-size: 14px;
	color: var(--text-light);
	margin-bottom: var(--spacing-md);
	line-height: 1.4;
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.feature-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 1px;
}

.feature-item span {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.4;
	flex: 1;
}

.signup-form {
	padding: var(--spacing-md);
	flex: 1;
	position: relative;
}

.signup-form label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-dark);
	margin-bottom: 8px;
}

.signup-form input[type="email"],
.signup-form input[type="password"],
.signup-form input[type="text"],
.signup-form select {
	width: 100%;
	height: 48px;
	padding: 0 var(--spacing-sm);
	border: 1px solid #e5e5e7;
	border-radius: 8px;
	font-size: 16px;
	color: var(--text-dark);
	transition: border-color 0.2s ease;
	font-family: inherit;
	box-sizing: border-box;
	background-color: var(--white);
	position: relative;
	z-index: 1;
}

.signup-form input:focus,
.signup-form select:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(41, 83, 255, 0.1);
}

.signup-form select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 20px 20px;
	padding-right: 40px;
}

.terms-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: var(--spacing-md);
}

.terms-checkbox input {
	margin-top: 2px;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	accent-color: var(--primary);
}

.terms-checkbox label {
	font-size: 13px;
	font-weight: 400;
	color: var(--text-light);
	margin-bottom: 0;
	line-height: 1.4;
}

.terms-checkbox a {
	color: var(--primary);
	text-decoration: none;
}

.terms-checkbox a:hover {
	text-decoration: underline;
}

.submit-btn {
	width: 100%;
	height: 48px;
	background-color: var(--primary);
	color: var(--white);
	border: none;
	border-radius: 24px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-bottom: var(--spacing-md);
	box-shadow: 0 2px 8px rgba(41, 83, 255, 0.2);
}

.submit-btn:hover {
	background-color: var(--primary-light);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(41, 83, 255, 0.3);
}

.submit-btn:active {
	transform: translateY(0);
}

.login-link {
	text-align: center;
	font-size: 14px;
	color: var(--text-light);
	margin: 0;
	padding-bottom: var(--spacing-md);
}

.login-link a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
}

.login-link a:hover {
	text-decoration: underline;
}

/* Tablet styles */
@media (min-width: 768px) {
	.signup-page {
		padding: var(--spacing-lg) 0;
	}

	.container {
		max-width: var(--container-width);
		padding: 0 var(--spacing-md);
	}

	.signup-container {
		border-radius: var(--border-radius-lg);
		box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
		min-height: auto;
		max-width: 1000px;
		margin: 0 auto;
	}

	.signup-header {
		padding: var(--spacing-md);
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.logo {
		margin-bottom: 0;
	}

	.user-type-selector {
		gap: var(--spacing-xs);
	}

	.user-type-btn {
		font-size: 14px;
		padding: var(--spacing-xs) var(--spacing-sm);
	}

	.signup-content {
		flex-direction: row;
	}

	.signup-info {
		flex: 1;
		padding: var(--spacing-xl);
		border-bottom: none;
		border-right: 1px solid #e5e5e7;
	}

	.info-title {
		font-size: 28px;
	}

	.info-description {
		font-size: 16px;
	}

	.feature-item span {
		font-size: 15px;
	}

	.signup-form {
		flex: 1;
		padding: var(--spacing-xl);
	}
}

/* Desktop styles */
@media (min-width: 1024px) {
	.container {
		padding: 0 var(--spacing-lg);
	}

	.signup-info {
		padding: var(--spacing-xxl);
	}

	.signup-form {
		padding: var(--spacing-xxl);
	}

	.info-title {
		font-size: 32px;
	}
}

/* Focus states for accessibility */
.user-type-btn:focus {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}

.submit-btn:focus {
	outline: 2px solid var(--primary-light);
	outline-offset: 2px;
}

/* Prevent zoom on iOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
	.signup-form input[type="email"],
	.signup-form input[type="password"],
	.signup-form input[type="text"],
	.signup-form select {
		font-size: 16px;
	}
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	.signup-form input,
	.signup-form select {
		border-width: 2px;
	}

	.user-type-btn.active {
		border: 2px solid var(--primary);
	}
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
	.info-content.active {
		animation: none;
	}

	* {
		transition: none !important;
	}
}

/* Safe area for devices with notches */
@supports (padding: max(0px)) {
	.signup-container {
		padding-left: max(0px, env(safe-area-inset-left));
		padding-right: max(0px, env(safe-area-inset-right));
	}
}

.form-group {
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

/* --- Pixel-perfect Single Testimonial Card (Left-aligned) --- */
.testimonial-card {
	background: #fff;
	border-radius: 8px;
	padding: 32px;
	max-width: 1168px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

/* Left-align testimonial section heading and description */
.testimonial-section,
.testimonial-section * {
	text-align: left !important;
	align-items: flex-start !important;
	justify-content: flex-start !important;
}

/* --- Feature Card Icon: White SVG --- */

.card-icon svg path,
.card-icon svg circle {
	stroke: #fff !important;
	fill: none !important;
}

.contact-form select {
	width: 100%;
	height: 48px;
	padding: var(--spacing-sm);
	border: 1px solid #e5e5e7;
	border-radius: 8px;
	font-size: 15px;
	color: var(--text-dark);
	background-color: #fff;
	font-family: inherit;
	transition: border-color 0.2s ease;
	appearance: none;
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 20px 20px;
}

.contact-form select:focus {
	outline: none;
	border-color: var(--primary);
}

.contact-form select option[disabled][selected] {
	color: #9ca3af;
}

.submit-row {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

.submit-btn {
	width: 200px;
}

.select-container {
	position: relative;
	width: 100%;
}

.select-container select {
	padding-right: 40px;
	background: none !important;
}

.select-arrow {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	display: flex;
	align-items: center;
}

.subscription-summary-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	padding: 32px 40px;
	margin-top: 32px;
	margin-bottom: 0;
	min-width: 320px;
	max-width: 400px;
}

.summary-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 24px;
	color: #1b1b1e;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	font-size: 17px;
}

.summary-label {
	font-weight: 600;
	color: #1b1b1e;
}

.summary-value {
	font-weight: 400;
	color: #1b1b1e;
}

.summary-period {
	font-size: 15px;
	color: #4e4f56;
	font-weight: 400;
}

@media (max-width: 768px) {
	.header {
		padding: 20px 16px;
	}
	.header-content {
		justify-content: space-between;
		align-items: center;
	}
	.language-selector,
	.auth-buttons {
		display: none !important;
	}
}
