:root {
	--primary-color: #000;
	--secondary-color: #666;
	--accent-color: #007bff;
	--background-color: #fff;
	--surface-color: #f8f9fa;
	--border-color: #e9ecef;
	--text-primary: #000;
	--text-secondary: #666;
	--shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s ease;
}

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

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--background-color);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Cal Sans', 'Noto Sans', sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
}
h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 1.8rem;
}
h4 {
	font-size: 1.4rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 14px 32px;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
}

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

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
	background-color: var(--primary-color);
	color: white;
	transform: translateY(-2px);
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	border-bottom: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.navbar.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	padding: 0.7rem 0;
}

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

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
}

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

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

.nav-menu a {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: var(--primary-color);
}

.nav-menu a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: var(--primary-color);
	transition: var(--transition);
}

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

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 8px;
	border-radius: 4px;
	transition: var(--transition);
}

.nav-toggle:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: var(--primary-color);
	margin: 3px 0;
	transition: var(--transition);
	border-radius: 2px;
}

/* Mobile Menu Overlay */
.mobile-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mobile-overlay.active {
	display: block;
	opacity: 1;
}

/* Sections */
.section {
	padding: 100px 0;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.section-header {
	text-align: center;
	margin-bottom: 4rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.section-header p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-top: 1rem;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
}

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

.hero-text h1 {
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

.hero-text p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
}

/* Features Section */
.features {
	background-color: var(--surface-color);
}

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

.feature-card {
	background: white;
	padding: 3rem 2rem;
	border-radius: 16px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	margin: 0 auto 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--surface-color);
}

.feature-icon img {
	width: 100%;
	height: auto;
}

.feature-card h3 {
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.feature-card p {
	color: var(--text-secondary);
	line-height: 1.7;
}

/* Text Only Section */
.text-only {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.text-content h2 {
	margin-bottom: 2rem;
	color: var(--primary-color);
}

.text-content p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.contact-info h2 {
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.contact-info > p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	line-height: 1.7;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.contact-icon {
	font-size: 1.5rem;
	min-width: 40px;
}

.contact-item h4 {
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}

.contact-item p {
	color: var(--text-secondary);
	margin: 0;
}

/* Contact Form */
.contact-form {
	background: var(--surface-color);
	padding: 3rem;
	border-radius: 16px;
}

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 1rem;
	font-family: 'Noto Sans', sans-serif;
	transition: var(--transition);
}

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

.form-message {
	padding: 1rem;
	border-radius: 8px;
	margin-top: 1rem;
}

.form-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

/* FAQ Section */
.faq {
	background-color: var(--surface-color);
}

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

.faq-item {
	background: white;
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.faq-question {
	padding: 2rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--transition);
}

.faq-question:hover {
	background-color: var(--surface-color);
}

.faq-question h3 {
	margin: 0;
	color: var(--primary-color);
	font-size: 1.2rem;
}

.faq-toggle {
	font-size: 1.5rem;
	color: var(--text-secondary);
	transition: var(--transition);
}

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

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

.faq-answer p {
	padding: 0 2rem 2rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin: 0;
}

.faq-item.active .faq-answer {
	max-height: 200px;
}

/* Checkbox Styling */
.checkbox-group {
	margin-bottom: 2rem;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--text-secondary);
}

.checkbox-label input[type='checkbox'] {
	display: none;
}

.checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid var(--border-color);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-label:hover .checkmark {
	border-color: var(--primary-color);
}

.checkbox-label input[type='checkbox']:checked + .checkmark {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.checkbox-label input[type='checkbox']:checked + .checkmark::after {
	content: '✓';
	color: white;
	font-size: 14px;
	font-weight: bold;
}

/* About Page Styles */
.about-hero {
	min-height: 80vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
}

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

.story-text h2 {
	margin-bottom: 2rem;
	color: var(--primary-color);
}

.story-text p {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.story-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
}

/* Values Section */
.values {
	background-color: var(--surface-color);
}

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

.value-card {
	background: white;
	padding: 2rem;
	border-radius: 16px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

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

.value-image {
	width: 100%;
	height: 200px;
	margin-bottom: 1.5rem;
	border-radius: 8px;
	overflow: hidden;
}

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

.value-card h3 {
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.value-card p {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Emoji Section */
.emoji-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 4rem;
	max-width: 1000px;
	margin: 0 auto;
}

.emoji-item {
	text-align: center;
	padding: 2rem;
}

.emoji {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	display: block;
}

.emoji-item h3 {
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.emoji-item p {
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 1.1rem;
}

/* Cookie Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background-color: white;
	margin: 2rem;
	padding: 0;
	border-radius: 16px;
	max-width: 500px;
	width: 100%;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-content {
	padding: 2.5rem;
}

.cookie-content h3 {
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.cookie-content p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.cookie-content a {
	color: var(--accent-color);
	text-decoration: none;
}

.cookie-content a:hover {
	text-decoration: underline;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Form Modal Styles */
.form-modal-content {
	padding: 3rem;
	text-align: center;
}

.modal-state h3 {
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.modal-state p {
	color: var(--text-secondary);
	margin-bottom: 0;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--border-color);
	border-top: 4px solid var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 2rem;
}

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

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

/* Footer */
.footer {
	background-color: var(--primary-color);
	color: white;
	padding: 4rem 0 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-brand h3 {
	font-family: 'Cal Sans', sans-serif;
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
}

.footer-brand p {
	color: #ccc;
}

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

.footer-column h4 {
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

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

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

.footer-column ul li a {
	color: #ccc;
	text-decoration: none;
	transition: var(--transition);
}

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

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

/* Legal Pages */
.legal-page {
	padding-top: 120px;
	padding-bottom: 80px;
}

.legal-content {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.legal-content h1 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: var(--primary-color);
}

.legal-content h2 {
	margin: 2rem 0 1rem;
	color: var(--primary-color);
	font-size: 1.5rem;
}

.legal-content h3 {
	margin: 1.5rem 0 1rem;
	color: var(--primary-color);
	font-size: 1.2rem;
}

.legal-content p {
	margin-bottom: 1rem;
	color: var(--text-secondary);
}

.legal-content ul,
.legal-content ol {
	margin-bottom: 1rem;
	padding-left: 2rem;
	color: var(--text-secondary);
}

.legal-content ul li,
.legal-content ol li {
	margin-bottom: 0.5rem;
}

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

	.nav-menu {
		position: fixed;
		top: 80px;
		right: -100%;
		width: 400px;
		height: calc(100vh - 80px);
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		gap: 0;
		padding: 0;
		transition: right 0.3s ease;
		border-left: 1px solid var(--border-color);
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
		z-index: 999;
	}

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

	.nav-menu a {
		font-size: 1.1rem;
		padding: 1rem 2rem;
		width: 100%;
		text-align: left;
		border-bottom: 1px solid var(--border-color);
		display: flex;
		align-items: center;
		transition: all 0.3s ease;
		position: relative;
	}

	.nav-menu a:hover {
		background-color: rgba(0, 0, 0, 0.05);
		padding-left: 2.5rem;
	}

	.nav-menu a.active {
		background-color: rgba(0, 0, 0, 0.1);
		font-weight: 600;
	}

	.nav-menu a.active::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 4px;
		background-color: var(--primary-color);
	}

	.nav-menu a:last-child {
		border-bottom: none;
	}

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

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

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

@media (max-width: 768px) {
	.nav-menu {
		width: 100%;
		padding: 0;
		align-items: stretch;
	}

	.nav-menu a {
		font-size: 1.2rem;
		padding: 1.2rem 2rem;
		text-align: left;
	}

	h1 {
		font-size: 2.2rem;
	}
	h2 {
		font-size: 1.8rem;
	}
	h3 {
		font-size: 1.4rem;
	}

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

	.hero-buttons {
		justify-content: center;
	}

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

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

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

	.emoji-item {
		padding: 1rem;
	}

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

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.modal-content {
		margin: 1rem;
	}

	.cookie-content {
		padding: 2rem;
	}
}

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

	h1 {
		font-size: 1.8rem;
	}
	h2 {
		font-size: 1.5rem;
	}

	.hero {
		min-height: auto;
		padding: 100px 0 60px;
	}

	.contact-form {
		padding: 2rem;
	}

	.footer-links {
		grid-template-columns: 1fr;
	}
}
