* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-dark: #003d3d;
	--primary-green: #00b8a2;
	--light-purple: #cec3fd;
	--white: #ffffff;
	--light-gray: #f1f1f4;
	--dark-gray: #222222;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat', Helvetica, sans-serif;
	line-height: 1.6;
	color: var(--dark-gray);
	overflow-x: hidden;
}

/* Typography */
h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	margin-bottom: 2rem;
	position: relative;
	display: inline-block;
}

.highlight {
	color: var(--primary-green);
	font-weight: 800;
}

/* Buttons */
.white-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: var(--white);
	color: var(--primary-green);
	text-decoration: none;
	border-radius: 50px;
	border: none;
	font-weight: 600;
	transition: all 0.5s ease;
	margin-top: 1rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.white-button:hover {
	box-shadow:
		0 15px 40px rgba(0, 0, 0, 0.3),
		inset 0 0 0 2px var(--white);
	background: var(--primary-green);
	color: var(--white);
}

.white-button:disabled {
	background: var(--light-gray);
	color: var(--dark-gray);
	cursor: not-allowed;
	box-shadow: none;
	opacity: 0.7;
}

.white-button[type="submit"] {
	width: 200px;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-dark);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.logo:hover {
	color: var(--primary-green);
}

.logo .highlight {
	color: var(--primary-green);
	transition: color 0.3s ease;
}

.logo:hover .highlight {
	color: var(--primary-dark);
}

.logo::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0;
	height: 2px;
	background-color: var(--primary-green);
	transition: width 0.3s ease;
}

.logo:hover::after {
	width: 100%;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	text-decoration: none;
	color: var(--primary-dark);
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--primary-green);
}

.nav-links a.active {
	font-weight: 700;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-green);
	transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}

.mobile-menu {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}

.mobile-menu span {
	width: 25px;
	height: 3px;
	background: var(--dark-gray);
	transition: all 0.3s ease;
}

/* Home Section */
.home {
	background: var(--primary-dark);
	color: var(--white);
	padding: 8rem 2rem 4rem;
	min-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.home-header {
	max-width: 1200px;
	text-align: left;
	width: 100%;
}

.home-header h1 {
	color: var(--white);
	animation: fadeInUp 0.8s ease;
}


.home-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.home-content {
	margin-top: 4rem;
}

.home-content p {
	font-size: 1.2rem;
	opacity: 0.9;
	animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.home-image {
	position: static;
	background: var(--light-gray);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
	object-fit: cover;
}

.home-image.portrait {
	width: 100%;
	height: 500px;
	animation: slideInRight 0.8s ease 0.4s both;
}

.home-image.banner {
	display: none;
}

@media (max-width: 768px) {
	.home-image.portrait {
		display: none;
	}

	.home-image.landscape {
		display: none;
	}

	.home-image.banner {
		display: block;
		width: 100vw;
		margin-top: 2rem;
		border-radius: 0;
		height: 180px;
		object-fit: cover;
	}

	.home {
		padding-bottom: 0;
	}

	.home-content {
		margin-top: 1rem;
	}
}

.home-image.landscape {
	width: 100%;
	height: 250px;
	margin-top: 3rem;
	animation: slideInLeft 0.8s ease 0.4s both;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Register Section */
.register-section {
	background: linear-gradient(45deg, var(--primary-green) 20%, var(--light-purple) 80%);
	color: var(--white);
	padding: 2rem 1rem;
	text-align: center;
}

.register-content {
	max-width: 800px;
	margin: 0 auto;
}

.register-content h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

/* Info Section */
.info-section {
	background: var(--light-gray);
	padding: 4rem 2rem;
}

.info-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-top: 1rem;
}

.info-card {
	background: var(--white);
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.info-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 40px var(--primary-green);
}

.info-header {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-green);
	margin-bottom: 0.5rem;
}

.info-text {
	font-size: 1.1rem;
	color: var(--dark-gray);
}

/* About Section */
.about-section {
	background: linear-gradient(135deg, var(--light-purple) 10%, var(--light-purple) 60%, var(--primary-green) 100%);
	padding: 5rem 2rem;
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: end;
}

.about-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--dark-gray);
}

.about-image {
	width: 100%;
	height: 400px;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Solution Section */
.solution-section {
	background: var(--light-gray);
	padding: 5rem 2rem;
}

.solution-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
}

.solution-container>h2 {
	grid-column: 1 / -1;
}

.solution-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.solution-dashboard p {
	font-size: 1.1rem;
	margin-bottom: 1rem;
}


@media (max-width: 768px) {
	.solution-content {
		grid-template-columns: 1fr;
	}

	.solution-image {
		order: -1;
	}
}

.solution-image {
	margin-top: 3rem;
	width: 100%;
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
	border-radius: 35px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 61, 61, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
}

.solution-features {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 0.5rem;
	background: var(--white);
	border-radius: 15px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-item:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 40px var(--primary-green);
}

.feature-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-green), var(--light-purple));
	border-radius: 12px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px;
	box-sizing: border-box;
}

.feature-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.feature-content h3 {
	font-size: 1.2rem;
	color: var(--primary-dark);
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.feature-content p {
	color: var(--dark-gray);
	line-height: 1.6;
	margin: 0;
}

/* Team Section */
.team-section {
	background: linear-gradient(45deg, var(--primary-green) 30%, var(--light-purple) 70%);
	padding: 5rem 2rem;
}

.team-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.team-member {
	background: var(--light-gray);
	padding: 2rem;
	border-radius: 20px;
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
}

.team-member:hover {
	box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.1);
	background: var(--white);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	object-fit: cover;
	filter: grayscale(20%);
	transition: transform 0.4s ease, filter 0.4s ease;
}

.team-member:hover .member-image {
	filter: grayscale(0%);
	transform: scale(1.05);
}

.member-name {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--primary-dark);
}

.member-role {
	color: var(--dark-gray);
	margin-bottom: 1rem;
}

.member-bio {
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--dark-gray);
	margin-bottom: 1rem;
}

.linkedin-link {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: var(--primary-dark);
	border-radius: 50%;
	text-decoration: none;
	position: relative;
	transition: all 0.3s ease;
	margin-top: auto;
	align-self: center;
}

.linkedin-link:hover {
	background: var(--primary-green);
	transform: scale(1.1);
}

.linkedin-link::after {
	content: 'in';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white);
	font-weight: 700;
}

.instagram-link::after {
	content: '📷';
	font-size: 1.2rem;
	font-weight: normal;
	align-self: center;
}

/* Contact Section */
.contact-section {
	background: var(--primary-dark);
	padding: 5rem 2rem;
	color: var(--white);
}

.contact-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.contact-container h2 {
	color: var(--white);
}

.contact-form {
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	text-align: left;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: none;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	font-family: inherit;
	transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 0 2px var(--primary-green);
}

.form-group textarea {
	resize: vertical;
	min-height: 150px;
}

.contact-result {
	visibility: hidden;
	margin-top: 1em;
	color: var(--primary-green);
	font-weight: 600;
	text-align: center;
}

/* Footer */
footer {
	background: var(--dark-gray);
	color: var(--white);
	padding: 3rem 2rem 2rem;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 1rem;
	margin-bottom: 2rem;
}

.footer-section h4 {
	margin-bottom: 1rem;
	color: var(--white);
}

.footer-section p,
.footer-section a {
	color: var(--light-gray);
	text-decoration: none;
	line-height: 1.8;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: var(--primary-green);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.social-icons {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-icon {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: var(--primary-dark);
	border-radius: 50%;
	text-decoration: none;
	position: relative;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background: var(--primary-green);
	transform: scale(1.1);
}

.social-icon::after {
	content: attr(aria-label);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white);
	font-size: 0.8rem;
	font-weight: 600;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--light-gray);
}

/* Privacy Section */
.privacy {
	background: var(--primary-dark);
	color: var(--white);
	padding: 6rem 2rem;
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	text-align: left;
}


.privacy-container {
	max-width: 1200px;
	margin: 0 auto;
}

.privacy h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--white);
	text-align: center;
}

.privacy h2 {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--pwhite);
	margin-top: 2rem;
	margin-bottom: 0;
}

.privacy h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--light-gray);
}

.privacy p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--light-gray);
}

.privacy a {
	color: var(--primary-green);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s ease;
}

.privacy a:hover {
	color: var(--white);
}

.privacy ul {
	list-style: disc;
	padding-left: 2rem;
}

.privacy .address {
	padding-left: 1rem;
}


/* Mobile Responsive */
@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--white);
		flex-direction: column;
		padding: 2rem;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}

	.nav-links.active {
		display: flex;
	}

	.mobile-menu {
		display: flex;
	}

	.home-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.home-images {
		height: 300px;
		margin-top: 2rem;
	}

	.home-image.portrait {
		width: 180px;
		height: 250px;
	}

	.home-image.landscape {
		width: 250px;
		height: 180px;
	}

	.about-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.team-grid {
		grid-template-columns: 1fr;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}
}

/* Accessibility */
:focus {
	outline: 2px solid var(--primary-green);
	outline-offset: 2px;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}