@import url("fonts/poppins-local.css");

:root {
	--primary-color: #2d5a5a; /* Petrol/Teal from logo */
	--secondary-color: #1e3e3e; /* Darker teal for contrast */
	--accent-color: #f4b942; /* Gold from logo */
	--accent-light: #f7c96b; /* Lighter gold */
	--dark-color: #1a1a1a;
	--light-color: #ffffff;
	--cream-color: #f5f1e8; /* Cream from logo */
	--gray-color: #f5f5f5;
	--text-color: #333333;
	--border-radius: 8px;
	--box-shadow: 0 5px 15px rgba(45, 90, 90, 0.15);
	--transition: all 0.3s ease;
}

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

/* Font Awesome alias: ensure fa-x-twitter works with our hosted version */
.fab.fa-x-twitter:before {
	content: "\f099"; /* maps to Twitter glyph in brands font */
}

body {
	font-family: "Poppins", sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	overflow-x: hidden;
}

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

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

/* Header and Navigation */
header {
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	color: var(--light-color);
	padding: 20px 0;
	position: relative;
	overflow: hidden;
}

header::after {
	content: "";
	position: absolute;
	bottom: -50px;
	left: 0;
	width: 100%;
	height: 100px;
	background-color: var(--light-color);
	transform: skewY(-3deg);
	z-index: 1;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	position: relative;
	z-index: 2;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.logo span {
	font-size: 1.4rem;
	font-weight: 600;
}

.nav-links {
	display: flex;
}

.nav-links li {
	margin: 0 15px;
}

.nav-links a {
	font-weight: 500;
	transition: var(--transition);
}

.nav-links a:hover {
	opacity: 0.8;
}

.download-btn {
	background-color: var(--accent-color);
	color: var(--dark-color);
	padding: 10px 20px;
	border-radius: var(--border-radius);
	font-weight: 600;
	transition: var(--transition);
}

.download-btn:hover {
	background-color: var(--accent-light);
	transform: translateY(-2px);
}

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px 0;
	position: relative;
	z-index: 2;
}

.hero-content {
	width: 50%;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero p {
	font-size: 1.1rem;
	margin-bottom: 30px;
	max-width: 500px;
}

/* Platform Badges */
.platform-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}

.platform-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	transition: var(--transition);
}

.platform-badge:hover {
	background-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.cta-buttons {
	display: flex;
	gap: 15px;
}

.cta-primary,
.cta-secondary {
	padding: 12px 25px;
	border-radius: var(--border-radius);
	font-weight: 600;
	transition: var(--transition);
}

.cta-primary {
	background-color: var(--accent-color);
	color: var(--dark-color);
}

.cta-primary:hover {
	background-color: var(--accent-light);
	transform: translateY(-2px);
}

.cta-secondary {
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.cta-secondary:hover {
	background-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.hero-image {
	width: 45%;
	animation: float 4s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-15px);
	}
	100% {
		transform: translateY(0px);
	}
}

/* Features Section */
.features {
	padding: 100px 0;
	background-color: var(--light-color);
	position: relative;
}

.features h2,
.demo h2,
.installation h2,
.setup h2,
.download h2,
.faq h2,
.contact h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 60px;
	color: var(--dark-color);
}

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

.feature-card {
	background-color: var(--gray-color);
	border-radius: var(--border-radius);
	padding: 30px;
	text-align: center;
	transition: var(--transition);
	box-shadow: var(--box-shadow);
}

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

.feature-icon {
	width: 70px;
	height: 70px;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	border-radius: 50%;
}

.feature-icon i {
	color: var(--light-color);
	font-size: 1.8rem;
}

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

/* FAQ Section */
.faq {
	padding: 100px 0;
	background-color: var(--light-color);
}

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

.faq-accordion {
	background-color: var(--gray-color);
	border-radius: var(--border-radius);
	margin-bottom: 15px;
	box-shadow: var(--box-shadow);
	overflow: hidden;
	transition: var(--transition);
}

.faq-accordion:hover {
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
	padding: 20px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	background-color: #fff;
	transition: var(--transition);
}

.faq-question-text {
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--primary-color);
	flex: 1;
}

.faq-toggle {
	color: var(--primary-color);
	margin-left: 15px;
	transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
	transform: rotate(180deg);
}

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

.faq-answer.show {
	padding: 30px;
	max-height: 1000px; /* Großer Wert, um Platz für Inhalte zu bieten */
}

.faq-answer p {
	margin-bottom: 15px;
	font-size: 1rem;
	line-height: 1.6;
}

.faq-answer ol,
.faq-answer ul {
	margin-left: 20px;
	margin-bottom: 15px;
}

.faq-answer li {
	margin-bottom: 8px;
	line-height: 1.5;
}

/* Demo Section */
.demo {
	padding: 100px 0;
	background-color: var(--gray-color);
}

.demo-content {
	max-width: 900px;
	margin: 0 auto;
}

.demo-tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.tab-btn {
	padding: 12px 30px;
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-color);
	cursor: pointer;
	transition: var(--transition);
}

.tab-btn.active {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.demo-display {
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	overflow: hidden;
	position: relative;
	min-height: 400px;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.tab-content img {
	width: 100%;
	height: auto;
	display: block;
}

/* Installation Section */
.installation {
	padding: 100px 0;
	background-color: var(--light-color);
}

.installation-steps {
	max-width: 800px;
	margin: 0 auto;
}

.step {
	display: flex;
	margin-bottom: 30px;
	align-items: flex-start;
}

.step-number {
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	color: var(--light-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 600;
	flex-shrink: 0;
	margin-right: 20px;
}

.step-content h3 {
	margin-bottom: 10px;
	color: var(--dark-color);
}

/* Setup Section */
.setup {
	padding: 100px 0;
	background-color: var(--gray-color);
}

.setup-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
}

.setup-image {
	width: 45%;
	box-shadow: var(--box-shadow);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.setup-steps {
	width: 50%;
}

.setup-steps .step {
	flex-direction: column;
	margin-bottom: 25px;
}

.setup-steps .step h3 {
	color: var(--primary-color);
	margin-bottom: 10px;
}

.setup-steps .step p a {
	color: var(--primary-color);
	text-decoration: underline;
}

/* Coming Soon Section */
.coming-soon {
	padding: 100px 0;
	background-color: var(--gray-color);
	text-align: center;
}

.coming-soon-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
	gap: 30px;
}

.coming-soon-text {
	flex: 1;
	text-align: left;
}

.coming-soon-text h3 {
	color: var(--primary-color);
	margin-bottom: 20px;
	font-size: 1.8rem;
}

.coming-soon-text p {
	margin-bottom: 15px;
	font-size: 1.1rem;
}

.coming-soon-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.coming-soon-image img {
	max-width: 250px;
	animation: float 4s ease-in-out infinite;
}

.notification-box {
	background-color: var(--light-color);
	border-radius: var(--border-radius);
	padding: 30px;
	box-shadow: var(--box-shadow);
	max-width: 800px;
	margin: 0 auto;
}

.notification-box h4 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 1.4rem;
}

/* Download Section */
.download {
	padding: 100px 0;
	background-color: var(--light-color);
	text-align: center;
}

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

.download-button {
	display: inline-flex;
	align-items: center;
	background-color: var(--primary-color);
	color: var(--light-color);
	padding: 15px 30px;
	border-radius: var(--border-radius);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 50px;
	transition: var(--transition);
}

.download-button:hover {
	background-color: var(--secondary-color);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.download-button i {
	margin-right: 10px;
	font-size: 1.3rem;
}

.technical-info {
	background-color: var(--cream-color);
	padding: 40px;
	border-radius: var(--border-radius);
	max-width: 800px;
	margin: 0 auto;
}

.technical-info h3 {
	margin-bottom: 20px;
	color: var(--dark-color);
}

.tech-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.tech-list li {
	background-color: var(--light-color);
	padding: 10px 20px;
	border-radius: var(--border-radius);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
}

.tech-list li i {
	color: var(--primary-color);
	margin-right: 10px;
}

/* Contact Section */
.contact {
	padding: 100px 0;
	background-color: var(--light-color);
}

.contact-flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
}

.contact-info {
	flex: 1;
}

.contact-info h3 {
	color: var(--primary-color);
	margin-bottom: 20px;
	font-size: 1.8rem;
}

.contact-info p {
	margin-bottom: 30px;
	font-size: 1.1rem;
}

.contact-methods {
	margin-top: 30px;
}

.contact-method {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.contact-method i {
	color: var(--primary-color);
	font-size: 1.2rem;
	margin-right: 15px;
}

.contact-form-container {
	flex: 1;
	background-color: var(--cream-color);
	border-radius: var(--border-radius);
	padding: 30px;
	box-shadow: var(--box-shadow);
}

/* Footer */
footer {
	background-color: var(--dark-color);
	color: var(--light-color);
	padding: 60px 0 20px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}

.footer-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-logo img {
	width: 40px;
	height: 40px;
	margin-bottom: 10px;
}

.footer-links ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-links a {
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--primary-color);
}

.footer-social {
	display: flex;
	gap: 15px;
}

.social-icon {
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.social-icon:hover {
	background-color: var(--primary-color);
	transform: translateY(-3px);
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	opacity: 0.7;
}

/* Legal Links */
.legal-links {
	margin-top: 15px;
	font-size: 0.9rem;
}

.legal-links a {
	color: var(--light-color);
	opacity: 0.7;
	transition: var(--transition);
	margin: 0 10px;
}

.legal-links a:hover {
	opacity: 1;
	color: var(--primary-color);
}

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

.modal-content {
	background-color: var(--light-color);
	margin: 5% auto;
	padding: 30px;
	border-radius: var(--border-radius);
	max-width: 800px;
	position: relative;
	color: var(--text-color);
}

.close {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	color: var(--text-color);
}

.close:hover {
	color: var(--accent-color);
}

#modalContent {
	margin-top: 20px;
}

#modalContent h2 {
	color: var(--primary-color);
	margin-bottom: 20px;
}

#modalContent p {
	margin-bottom: 15px;
	line-height: 1.6;
}

#modalContent address {
	font-style: normal;
	margin-bottom: 20px;
}

/* Nutzen Section */
.nutzen {
	padding: 100px 0;
	background-color: var(--cream-color);
}

.nutzen-content {
	display: flex;
	align-items: center;
	gap: 60px;
}

.nutzen-text {
	flex: 1;
}

.nutzen-text h3 {
	color: var(--primary-color);
	font-size: 2rem;
	margin-bottom: 20px;
}

.nutzen-text p {
	font-size: 1.1rem;
	margin-bottom: 30px;
	line-height: 1.7;
}

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

.nutzen-list li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-size: 1.1rem;
}

.nutzen-list li i {
	color: var(--accent-color);
	margin-right: 15px;
	font-size: 1.2rem;
}

.nutzen-image {
	flex: 1;
}

/* Plattformen Section */
.plattformen {
	padding: 100px 0;
	background-color: var(--light-color);
}

.plattformen-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.platform-card {
	background-color: var(--light-color);
	border-radius: var(--border-radius);
	padding: 30px;
	box-shadow: var(--box-shadow);
	transition: var(--transition);
	border: 2px solid transparent;
}

.platform-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	border-color: var(--accent-color);
}

.platform-header {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.platform-icon {
	font-size: 2.5rem;
	margin-right: 15px;
	color: var(--accent-color);
}

.platform-header h3 {
	font-size: 1.5rem;
	color: var(--dark-color);
}

.platform-behavior {
	margin-bottom: 20px;
}

.behavior-step {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	padding: 8px 0;
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	background-color: var(--accent-color);
	color: var(--dark-color);
	border-radius: 50%;
	font-size: 0.9rem;
	font-weight: 600;
	margin-right: 12px;
	flex-shrink: 0;
}

.step-text {
	font-size: 0.95rem;
	line-height: 1.4;
}

.platform-summary {
	font-style: italic;
	color: var(--secondary-color);
	font-size: 0.9rem;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

/* Ollama Section */
.ollama {
	padding: 100px 0;
	background-color: var(--cream-color);
}

.ollama-content {
	max-width: 1000px;
	margin: 0 auto;
}

.warning-box {
	display: flex;
	align-items: flex-start;
	background-color: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: var(--border-radius);
	padding: 20px;
	margin-bottom: 40px;
}

.warning-box i {
	color: #f39c12;
	font-size: 1.5rem;
	margin-right: 15px;
	margin-top: 2px;
}

.warning-text h4 {
	color: #d68910;
	margin-bottom: 8px;
	font-size: 1.1rem;
}

.warning-text p {
	color: #856404;
	margin: 0;
}

.ollama-info {
	display: flex;
	align-items: flex-start;
	gap: 50px;
}

.ollama-description {
	flex: 2;
}

.ollama-description h3 {
	color: var(--primary-color);
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.ollama-description p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 25px;
}

.ollama-description h4 {
	color: var(--dark-color);
	font-size: 1.2rem;
	margin-bottom: 15px;
	margin-top: 25px;
}

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

.setup-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
	padding-left: 25px;
	position: relative;
}

.setup-list li::before {
	content: "•";
	color: var(--accent-color);
	font-size: 1.2rem;
	position: absolute;
	left: 0;
	top: 0;
}

.ollama-image {
	flex: 1;
}

/* Feedback Section */
.feedback {
	padding: 100px 0;
	background-color: var(--light-color);
}

.feedback-content {
	max-width: 1000px;
	margin: 0 auto;
}

.development-notice {
	margin-bottom: 50px;
}

.notice-box {
	display: flex;
	align-items: flex-start;
	background-color: #e8f4fd;
	border: 1px solid #bee5eb;
	border-radius: var(--border-radius);
	padding: 25px;
}

.notice-box i {
	color: var(--primary-color);
	font-size: 1.8rem;
	margin-right: 20px;
	margin-top: 2px;
}

.notice-text h3 {
	color: var(--primary-color);
	margin-bottom: 10px;
	font-size: 1.3rem;
}

.notice-text p {
	color: var(--text-color);
	margin: 0;
	line-height: 1.6;
}

.feedback-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.feedback-card {
	background-color: var(--light-color);
	border-radius: var(--border-radius);
	padding: 30px;
	box-shadow: var(--box-shadow);
	text-align: center;
	transition: var(--transition);
}

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

.feedback-icon {
	margin-bottom: 20px;
}

.feedback-icon i {
	font-size: 3rem;
	color: var(--accent-color);
}

.feedback-card h3 {
	color: var(--dark-color);
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.feedback-card p {
	color: var(--text-color);
	margin-bottom: 25px;
	line-height: 1.6;
}

.feedback-btn {
	display: inline-block;
	background-color: var(--primary-color);
	color: var(--light-color);
	padding: 12px 25px;
	border-radius: var(--border-radius);
	font-weight: 600;
	transition: var(--transition);
	text-decoration: none;
}

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

/* Demo Section Updates */
.platform-demos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.platform-demos img {
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.platform-demos img:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
	.hero {
		flex-direction: column;
		text-align: center;
	}

	.hero-content,
	.hero-image {
		width: 100%;
	}

	.hero-content {
		margin-bottom: 40px;
	}

	.hero p {
		margin: 0 auto 30px;
	}

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

	.coming-soon-flex {
		flex-direction: column;
		text-align: center;
	}

	.coming-soon-text {
		text-align: center;
		order: 1;
	}

	.coming-soon-image {
		order: 0;
		margin-bottom: 30px;
	}

	.contact-flex {
		flex-direction: column;
	}

	.contact-info {
		text-align: center;
		margin-bottom: 30px;
	}

	.contact-method {
		justify-content: center;
	}

	.setup-content {
		flex-direction: column;
	}

	.setup-image,
	.setup-steps {
		width: 100%;
	}

	.setup-image {
		margin-bottom: 40px;
	}

	.nutzen-content {
		flex-direction: column;
		text-align: center;
		gap: 40px;
	}

	.platform-badges {
		justify-content: center;
	}

	.plattformen-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.ollama-info {
		flex-direction: column;
		gap: 30px;
	}

	.feedback-options {
		grid-template-columns: 1fr;
		gap: 25px;
	}

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

	.footer-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-logo {
		align-items: center;
		margin-bottom: 30px;
	}

	.footer-links {
		margin-bottom: 30px;
	}

	.footer-links ul {
		justify-content: center;
	}
}

@media screen and (max-width: 768px) {
	nav {
		flex-direction: column;
	}

	.logo {
		margin-bottom: 20px;
	}

	.nav-links {
		margin-bottom: 20px;
	}

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

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

	.step {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.step-number {
		margin-right: 0;
		margin-bottom: 15px;
	}
}

@media screen and (max-width: 576px) {
	.nav-links {
		flex-direction: column;
		align-items: center;
	}

	.nav-links li {
		margin: 5px 0;
	}

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

	.tab-btn {
		padding: 8px 15px;
		font-size: 1rem;
	}

	.tech-list {
		flex-direction: column;
		align-items: center;
	}

	.faq-question {
		padding: 15px;
	}

	.faq-question-text {
		font-size: 1rem;
	}

	.faq-answer.show {
		padding: 20px;
	}
}

@media screen and (max-width: 768px) {
	.modal-content {
		margin: 10% 20px;
		padding: 20px;
	}

	.legal-links {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: white;
	box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	padding: 20px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-banner.visible {
	transform: translateY(0);
}

.cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 30px;
}

.cookie-text h3 {
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.cookie-text p {
	font-size: 0.9rem;
	color: #555;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
	flex-shrink: 0;
}

.cookie-buttons button {
	padding: 10px 20px;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	border: none;
}

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

.cookie-buttons .btn-primary:hover {
	background-color: var(--secondary-color);
}

.cookie-buttons .btn-secondary {
	background-color: #f1f1f1;
	color: #333;
}

.cookie-buttons .btn-secondary:hover {
	background-color: #e1e1e1;
}

@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.cookie-buttons {
		width: 100%;
		justify-content: space-between;
		margin-top: 15px;
	}
}
