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

body {
	font-family: 'Cal Sans', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

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

/* Header */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
}

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 1.2rem;
	font-weight: 700;
	text-decoration: none;
	color: #333;
}

.nav-brand img {
	height: 40px;
	width: auto;
}

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

.nav-menu a {
	text-decoration: none;
	color: #333;
	transition: color 0.3s ease;
}

.nav-menu a:hover {
	color: #007bff;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: #333;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
		url('../img/hero-bg.png');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

.hero-content h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards;
}

.hero-content p {
	font-size: 1.2rem;
	margin: 0 auto 2rem;
	max-width: 600px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease 0.3s forwards;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.section-cta {
	text-align: center;
	margin-top: 3rem;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 30px;
	border: none;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.btn-primary {
	background: #007bff;
	color: white;
}

.hero-content .btn-primary {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease 0.6s forwards;
}

.btn-primary:hover {
	background: #0056b3;
	transform: translateY(-2px);
}

.btn-secondary {
	background: #6c757d;
	color: white;
}

.btn-secondary:hover {
	background: #545b62;
}

/* Sections */
.section {
	padding: 80px 0;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

.section.animate {
	opacity: 1;
	transform: translateY(0);
}

.section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #333;
}

/* Features Section */
.features {
	background: #f8f9fa;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.feature-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.feature-card p {
	color: #666;
	line-height: 1.8;
}

/* About Section */
.about-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.about-content h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #333;
}

.about-content p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.8;
}

/* Mission Section */
.mission {
	background: #f8f9fa;
	padding-top: 120px;
}

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

.mission-text p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.8;
}

/* Team Section */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.team-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.team-card:hover {
	transform: translateY(-5px);
}

.team-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #333;
}

.team-card p {
	color: #666;
	line-height: 1.6;
}

/* Contact Form */
.contact-form {
	background: #f8f9fa;
}

.form-container {
	max-width: 600px;
	margin: 0 auto;
}

.contact-form-element {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #007bff;
}

.form-success {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.form-success h3 {
	color: #28a745;
	margin-bottom: 1rem;
}

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

.faq-item {
	background: white;
	margin-bottom: 1rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background: #f8f9fa;
}

.faq-question h3 {
	font-size: 1.1rem;
	color: #333;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	color: #007bff;
	transition: transform 0.3s ease;
}

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

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
	padding: 0 1.5rem 1.5rem;
	max-height: 200px;
}

.faq-answer p {
	color: #666;
	line-height: 1.6;
}

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
	margin-bottom: 1rem;
	color: white;
}

.footer-section p {
	color: #ccc;
	line-height: 1.6;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: white;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #555;
	color: #ccc;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.9);
	color: white;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-modal.show {
	transform: translateY(0);
}

.cookie-content {
	padding: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.cookie-content h3 {
	margin-bottom: 1rem;
}

.cookie-content p {
	margin-bottom: 1.5rem;
	color: #ccc;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

/* Legal Pages */
.legal-page {
	padding-top: 100px;
	padding-bottom: 50px;
	min-height: 100vh;
}

.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.legal-page h2 {
	font-size: 1.5rem;
	margin: 2rem 0 1rem;
	color: #333;
}

.legal-page h3 {
	font-size: 1.2rem;
	margin: 1.5rem 0 0.5rem;
	color: #333;
}

.legal-page p {
	margin-bottom: 1rem;
	line-height: 1.6;
	color: #666;
}

.legal-page ul {
	margin-bottom: 1rem;
	padding-left: 2rem;
}

.legal-page li {
	margin-bottom: 0.5rem;
	color: #666;
}

/* Checkbox styling */
.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
	margin-bottom: 0 !important;
}

.checkbox-label input[type='checkbox'] {
	width: auto !important;
	margin-right: 10px;
	margin-top: 2px;
	transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 80px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active span:nth-child(1) {
		transform: translateY(9px) rotate(45deg);
	}

	.nav-toggle.active span:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-content p {
		font-size: 1rem;
	}

	.section h2 {
		font-size: 2rem;
	}

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

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

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.nav {
		padding: 1rem;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.section {
		padding: 60px 0;
	}

	.section h2 {
		font-size: 1.8rem;
	}

	.btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}
}

/* Animation Classes */
.section-animate {
	opacity: 0;
	transform: translateY(50px) scale(0.95);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.animate {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}
