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

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #ffffff;
	background-color: #0a0a0a;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

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

.nav-link {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: #667eea;
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

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

.hamburger span {
	width: 25px;
	height: 3px;
	background: #ffffff;
	margin: 3px 0;
	transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	opacity: 0.1;
	z-index: -1;
}

.hero-background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(
			103deg,
			rgba(18, 18, 17, 0.78) 2.03%,
			rgba(18, 18, 17, 0.6) 58.46%,
			rgba(18, 18, 17, 0) 90.36%
		),
		url('../img/h1.webp');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	opacity: 0.3;
}

.hero-content {
	text-align: center;
	max-width: 800px;
	padding: 0 20px;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	color: #cccccc;
}

.cta-button {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	padding: 1rem 2rem;
	font-size: 1.1rem;
	border-radius: 50px;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Section Animations */
.section-animate {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Features Section */
.features {
	padding: 6rem 0;
	background: rgba(15, 15, 15, 0.5);
}

.features h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.feature-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 2rem;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
}

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

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

.feature-card p {
	color: #cccccc;
	line-height: 1.6;
}

/* About Text Section */
.about-text {
	padding: 6rem 0;
}

.about-text h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

/* Contact Section */
.contact {
	padding: 6rem 0;
	background: rgba(15, 15, 15, 0.5);
}

.contact h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.contact-info h3 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: #ffffff;
}

.contact-item {
	margin-bottom: 1.5rem;
}

.contact-item strong {
	color: #667eea;
	display: block;
	margin-bottom: 0.5rem;
}

.contact-item p {
	color: #cccccc;
	margin: 0;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.checkbox-container {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.checkbox-container label {
	font-size: 0.9rem;
	color: #cccccc;
	cursor: pointer;
}

.checkbox-container input[type='checkbox'] {
	width: 16px;
	height: 16px;
	accent-color: #667eea;
	cursor: pointer;
}

.contact-form input[type='text'],
.contact-form input[type='email'],
.contact-form textarea {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 1rem;
	color: #ffffff;
	font-family: inherit;
	transition: border-color 0.3s ease;
}

.contact-form input[type='text']:focus,
.contact-form input[type='email']:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #667eea;
}

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

.btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* FAQ Section */
.faq {
	padding: 6rem 0;
}

.faq h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	margin-bottom: 1rem;
	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: rgba(255, 255, 255, 0.08);
}

.faq-question h3 {
	margin: 0;
	font-size: 1.1rem;
	color: #ffffff;
}

.faq-toggle {
	font-size: 1.5rem;
	color: #667eea;
	transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
	color: #cccccc;
	line-height: 1.6;
	margin: 0;
}

/* Cookie Modal */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background: rgba(20, 20, 20, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 2rem;
	max-width: 500px;
	width: 90%;
	text-align: center;
}

.modal-content h3 {
	margin-bottom: 1rem;
	color: #ffffff;
	font-size: 1.3rem;
}

.modal-content p {
	margin-bottom: 2rem;
	color: #cccccc;
	line-height: 1.6;
}

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

.btn-secondary {
	background: transparent;
	color: #cccccc;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

/* About Page Styles */
.about-hero {
	padding: 8rem 0 4rem;
	text-align: center;
}

.about-hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-hero p {
	font-size: 1.2rem;
	color: #cccccc;
}

.mission {
	padding: 4rem 0;
}

.mission-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.mission-text h2 {
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.mission-text p {
	color: #cccccc;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.mission-image img {
	width: 100%;
	border-radius: 15px;
}

.team {
	padding: 4rem 0;
	background: rgba(15, 15, 15, 0.5);
}

.team h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.team-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 2rem;
	text-align: center;
	transition: transform 0.3s ease;
}

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

.team-card img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin-bottom: 1rem;
	object-fit: cover;
}

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

.team-card p:first-of-type {
	color: #667eea;
	font-weight: 500;
	margin-bottom: 1rem;
}

.team-card p:last-of-type {
	color: #cccccc;
	line-height: 1.6;
}

.values {
	padding: 4rem 0;
}

.values h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.value-item {
	text-align: center;
	padding: 1.5rem;
}

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

.value-item h3 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: #ffffff;
}

.value-item p {
	color: #cccccc;
	line-height: 1.6;
}

/* Legal Pages */
.legal-page {
	padding: 8rem 0 4rem;
	min-height: 80vh;
}

.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

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

.legal-page ul {
	color: #cccccc;
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.legal-page li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

/* Footer */
.footer {
	background: rgba(5, 5, 5, 0.9);
	padding: 3rem 0 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.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: #ffffff;
}

.footer-section h3 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-section p {
	color: #cccccc;
	margin-bottom: 1rem;
}

.footer-section a {
	display: block;
	color: #cccccc;
	text-decoration: none;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: #667eea;
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
		z-index: 1001;
	}

	.nav-menu {
		display: none;
		position: fixed;
		top: 70px;
		left: 0;
		width: 100%;
		height: calc(100vh - 70px);
		background: rgba(10, 10, 10, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		padding-top: 2rem;
		gap: 2rem;
		z-index: 1000;
	}

	.nav-menu.active {
		display: flex;
	}

	.nav-link {
		font-size: 1.2rem;
		padding: 1rem;
	}

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

	.hero p {
		font-size: 1.1rem;
	}

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

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.mission-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

	.values-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.modal-buttons {
		flex-direction: column;
	}

	.about-hero h1 {
		font-size: 2.2rem;
	}

	.features h2,
	.about-text h2,
	.contact h2,
	.faq h2,
	.team h2,
	.values h2 {
		font-size: 2rem;
	}
}

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

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

	.feature-card,
	.team-card {
		padding: 1.5rem;
	}

	.modal-content {
		padding: 1.5rem;
	}
}

/* Success message styles */
.success-message {
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.3);
	color: #22c55e;
	padding: 1rem;
	border-radius: 8px;
	margin-top: 1rem;
	text-align: center;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.success-message.show {
	opacity: 1;
	transform: translateY(0);
}
