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

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #ffffff;
}

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

/* Header Styles */
.header {
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

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

.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 1.2rem;
	font-weight: bold;
	color: #333;
	text-decoration: none;
	z-index: 1001;
}

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

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
}

.hamburger-line {
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 3px 0;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

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

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

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

/* Section Animation */
.section-animate {
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 120px 0 80px;
	text-align: center;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	background-color: #ffffff;
	color: #667eea;
	padding: 12px 30px;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
	padding: 80px 0;
	background-color: #f8f9fa;
}

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

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

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

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

.emoji {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: block;
}

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

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

/* Innovation Topics Section */
.innovation-topics {
	padding: 80px 0;
	background-color: #ffffff;
}

.innovation-topics h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #333;
	text-align: center;
}

.innovation-topics p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: #555;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Innovation Showcase Section */
.innovation-showcase {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.innovation-showcase h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.innovation-showcase p {
	text-align: center;
	font-size: 1.1rem;
	margin-bottom: 3rem;
	color: #666;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

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

.innovation-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.innovation-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.innovation-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.innovation-card:hover img {
	transform: scale(1.05);
}

.innovation-card h3 {
	padding: 1.5rem 1.5rem 1rem;
	font-size: 1.3rem;
	color: #333;
	margin: 0;
}

.innovation-card p {
	padding: 0 1.5rem 1.5rem;
	color: #666;
	line-height: 1.6;
	margin: 0;
	text-align: left;
}

/* FAQ Section */
.faq {
	padding: 80px 0;
	background-color: #f8f9fa;
}

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

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

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

.faq-question {
	width: 100%;
	padding: 1.5rem;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

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

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

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

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

/* Contact Section */
.contact {
	padding: 80px 0;
	background-color: #ffffff;
}

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

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	max-width: 1000px;
	margin: 0 auto;
}

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

.contact-info p {
	margin-bottom: 1rem;
	color: #666;
}

.contact-form {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 10px;
}

.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: 0.75rem;
	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;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
	font-weight: normal;
	color: #555;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin-right: 0.5rem;
	margin-top: 0.2rem;
	cursor: pointer;
}

.checkbox-label:hover {
	color: #333;
}

.submit-btn {
	background-color: #007bff;
	color: white;
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.submit-btn:hover {
	background-color: #0056b3;
}

/* About Page Styles */
.about-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 120px 0 80px;
	text-align: center;
}

.about-hero h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.about-hero p {
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto;
}

.about-story {
	padding: 80px 0;
	background-color: #ffffff;
}

.about-story h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #333;
	text-align: center;
}

.story-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: #555;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.methodology {
	padding: 80px 0;
	background-color: #f8f9fa;
}

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

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

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

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

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

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

.team {
	padding: 80px 0;
	background-color: #ffffff;
}

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

.team p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: #555;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.values {
	padding: 80px 0;
	background-color: #f8f9fa;
}

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

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

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

.value-item:hover {
	transform: translateY(-5px);
}

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

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

.commitment {
	padding: 80px 0;
	background-color: #ffffff;
}

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

.commitment p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: #555;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Legal Pages */
.legal-page {
	padding: 120px 0 80px;
	background-color: #ffffff;
}

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

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

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

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

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

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

/* Footer */
.footer {
	background-color: #333;
	color: white;
	padding: 40px 0 20px;
}

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

.footer-section h4 {
	margin-bottom: 1rem;
	color: #fff;
}

.footer-section p {
	color: #ccc;
	margin-bottom: 0.5rem;
}

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

.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-color: rgba(0, 0, 0, 0.9);
	color: white;
	padding: 2rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	z-index: 2000;
}

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

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

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

.cookie-content p {
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

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

.cookie-accept,
.cookie-decline {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	transition: background-color 0.3s ease;
}

.cookie-accept {
	background-color: #007bff;
	color: white;
}

.cookie-accept:hover {
	background-color: #0056b3;
}

.cookie-decline {
	background-color: #6c757d;
	color: white;
}

.cookie-decline:hover {
	background-color: #545b62;
}

/* Form Submission Modal */
.form-submission-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.form-submission-modal.show {
	opacity: 1;
}

.form-modal-content {
	background: white;
	padding: 3rem 2rem;
	border-radius: 15px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.form-submission-modal.show .form-modal-content {
	transform: scale(1);
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #007bff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.success-icon {
	width: 60px;
	height: 60px;
	background-color: #28a745;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	margin: 0 auto 1rem;
}

.form-modal-content h3 {
	margin-bottom: 1rem;
	color: #333;
	font-size: 1.5rem;
}

.form-modal-content p {
	color: #666;
	margin: 0;
	line-height: 1.5;
}

/* Success Message */
.success-message {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #28a745;
	color: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	z-index: 3000;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.success-message.show {
	opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100vh;
		background-color: #ffffff;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		transition: left 0.3s ease;
		z-index: 1000;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	}

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

	.nav-menu li {
		margin: 0;
	}

	.nav-link {
		font-size: 1.2rem;
		padding: 1rem;
		display: block;
		text-align: center;
	}

	.nav-container {
		flex-direction: row;
		gap: 0;
	}

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

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

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

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

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

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

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

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

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

	.innovation-card {
		margin-bottom: 1rem;
	}
}

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

	.hero {
		padding: 100px 0 60px;
	}

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

	.features,
	.innovation-topics,
	.faq,
	.contact {
		padding: 60px 0;
	}

	.feature-card,
	.method-card,
	.value-item {
		padding: 1.5rem;
	}
}
