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

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f8f9fa;
}

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

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

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

.nav-logo {
	height: 40px;
	color: #007bff;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

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

.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 {
	color: #007bff;
}

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

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

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

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

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

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

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

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

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

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

.btn-secondary {
	background: transparent;
	color: rgb(154, 154, 154);
	border: 2px solid rgb(154, 154, 154);
}

.btn-secondary:hover {
	background: white;
	color: #333;
	border: 2px solid white;
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
	padding: 80px 0;
	background: white;
}

.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(350px, 1fr));
	gap: 2rem;
}

.feature-card {
	text-align: center;
	padding: 2rem;
	border-radius: 15px;
	background: #f8f9fa;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon img {
	width: 100%;
	height: auto;
	margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

/* Checkbox styles */
.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.5;
}

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

.checkbox-label input[type='checkbox']:focus {
	outline: 2px solid #007bff;
	outline-offset: 2px;
}

/* About Page Styles */
.about-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	color: white;
}

.about-content h1 {
	font-size: 3rem;
	margin-bottom: 2rem;
	text-align: center;
}

.about-content p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	opacity: 0.9;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Team Section */
.team {
	padding: 80px 0;
	background: white;
}

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

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

.team-card {
	text-align: center;
	padding: 2rem;
	border-radius: 15px;
	background: #f8f9fa;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.team-role {
	color: #007bff;
	font-weight: 600;
	margin-bottom: 1rem;
}

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

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

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

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

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

.contact-info p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 2rem;
}

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

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

.contact-item .emoji {
	font-size: 2rem;
	margin-top: 0.5rem;
}

.contact-item h4 {
	margin-bottom: 0.5rem;
	color: #333;
}

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

/* Contact Form */
.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.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 select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

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

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

/* 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: #007bff;
}

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

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

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

.footer-section a:hover {
	color: #007bff;
}

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

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	padding: 2rem;
}

.cookie-content {
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	max-width: 600px;
	margin: 0 auto;
	background: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
}

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

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

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

.cookie-content a {
	color: #007bff;
	text-decoration: none;
	font-size: 0.9rem;
}

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

/* Animation Classes */
.section-animate {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease-out;
}

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

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

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

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

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

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

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

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

.legal-content strong {
	color: #333;
}

/* Success Message */
.success-message {
	background: #d4edda;
	color: #155724;
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	display: none;
}

.success-message.show {
	display: block;
}

/* Form Success Modal */
.form-success-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	justify-content: center;
	align-items: center;
}

.form-success-modal.show {
	display: flex;
}

.form-success-content {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	position: relative;
	animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

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

.form-success-content p {
	color: #666;
	margin-bottom: 1.5rem;
}

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

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

.loading-text {
	color: #666;
	font-size: 0.9rem;
	margin-top: 1rem;
}
