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

body {
	font-family: 'Cal Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

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

/* Header & Navigation */
.navbar {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

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

.nav-logo {
	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-logo img {
	height: 40px;
	width: auto;
}

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

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

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

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

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

/* Main Content */
main {
	margin-top: 80px;
}

/* Hero Section */
.hero {
	padding: 4rem 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #666;
}

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

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

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

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

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

.btn-secondary {
	background: transparent;
	color: #007bff;
	border: 2px solid #007bff;
}

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

/* Sections */
.animate-section {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
	padding: 4rem 0;
}

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

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #333;
}

.section-header p {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

/* Content Grids */
.content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.content-text h3 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

.content-text p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #666;
}

.feature-list {
	list-style: none;
	margin-top: 2rem;
}

.feature-list li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 1.5rem;
}

.feature-list li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #007bff;
	font-weight: bold;
}

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

/* Tools Showcase */
.tools-showcase {
	background: #f8f9fa;
}

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

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

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

.tool-card img {
	width: 80px;
	height: 80px;
	margin-bottom: 1.5rem;
	border-radius: 10px;
}

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

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

/* Text Only Section */
.text-only {
	background: #333;
	color: white;
}

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

.text-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
}

.text-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	line-height: 1.7;
}

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

.faq-item {
	margin-bottom: 1rem;
	border: 1px solid #e9ecef;
	border-radius: 10px;
	overflow: hidden;
}

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

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

.faq-question h3 {
	font-size: 1.2rem;
	font-weight: 600;
	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: all 0.3s ease;
}

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

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

/* Contact Section */
.contact {
	background: #f8f9fa;
}

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

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

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

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

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

/* Contact Form */
.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 20px 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 16px;
	border: 2px solid #e9ecef;
	border-radius: 6px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	font-family: inherit;
}

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

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

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

.form-group-checkbox input {
	width: auto !important;
	flex-shrink: 0;
}

.form-group-checkbox label {
	font-weight: normal;
	font-size: 0.9rem;
	margin-bottom: 0;
	color: #666;
}

/* About Page Specific */
.about-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.about-hero .hero-content h1 {
	color: white;
}

.about-hero .hero-content p {
	color: rgba(255, 255, 255, 0.9);
}

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

.service-card {
	text-align: center;
	padding: 2rem;
}

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

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

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

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

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

.benefits-list {
	list-style: none;
}

.benefits-list li {
	padding: 0.8rem 0;
	border-bottom: 1px solid #e9ecef;
}

.benefits-list li:last-child {
	border-bottom: none;
}

.get-started {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-align: center;
}

.cta-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: white;
}

.cta-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

/* Legal Pages */
.legal-page {
	padding: 2rem 0;
	line-height: 1.8;
}

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

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

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

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

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

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

.legal-page section {
	margin-bottom: 2rem;
}

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

.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 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-section p a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

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

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

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

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

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

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

.cookie-content p {
	margin-bottom: 2rem;
	line-height: 1.6;
}

.cookie-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 1rem;
}

.cookie-content a {
	color: #ccc;
	font-size: 0.9rem;
}

.cookie-content a:hover {
	color: white;
}

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

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

.success-modal-content {
	background: white;
	padding: 3rem 2rem;
	border-radius: 15px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	transform: scale(0.7);
	transition: transform 0.3s ease;
}

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

.success-modal h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

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

.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 auto;
}

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

.success-icon {
	font-size: 3rem;
	color: #28a745;
	margin-bottom: 1rem;
	display: block;
}

/* Success Message */
.success-message {
	position: fixed;
	top: 100px;
	right: 20px;
	background: #28a745;
	color: white;
	padding: 1rem 2rem;
	border-radius: 6px;
	z-index: 1000;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}

.success-message.show {
	transform: translateX(0);
}

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

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		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;
	}

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

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

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

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

	.hero-actions,
	.cta-actions,
	.cookie-actions {
		flex-direction: column;
		align-items: center;
	}

	.container {
		padding: 0 15px;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem;
	}

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

	.text-content h2 {
		font-size: 2rem;
	}

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