/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: 24 54% 20%; /* #1a4d33 */
	--secondary-color: 210 11% 15%; /* #202529 */
	--accent-color: 39 100% 50%; /* #ffcc00 */
	--background: 210 11% 98%; /* #f5f7fa */
	--surface: 0 0% 100%; /* #ffffff */
	--text-primary: 210 11% 15%; /* #202529 */
	--text-secondary: 210 11% 45%; /* #6b7280 */
	--border-color: 210 11% 90%; /* #e5e7eb */
	--shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

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

a {
	color: hsl(var(--primary-color));
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: hsl(var(--accent-color));
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-link {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 5px;
	font-weight: 500;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	text-decoration: none;
}

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

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

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

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

.btn-link {
	background: none;
	color: hsl(var(--primary-color));
	padding: 8px 0;
	font-weight: 500;
}

.btn-link:hover {
	color: hsl(var(--accent-color));
}

/* Navigation */
.navbar {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(255, 255, 255, 0.9) 100%
	);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0.5rem 0;
}

.nav-container {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	padding: 0 20px;
	max-width: 1400px;
	margin: 0 auto;
	gap: 2rem;
}

.nav-logo {
	position: relative;
}

.nav-logo a {
	font-size: 2rem;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		hsl(var(--primary-color)) 0%,
		hsl(var(--accent-color)) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	letter-spacing: -0.5px;
}

.nav-logo::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 60%;
	height: 3px;
	background: linear-gradient(
		90deg,
		hsl(var(--accent-color)) 0%,
		transparent 100%
	);
	border-radius: 2px;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 0;
	justify-content: center;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 50px;
	padding: 0.8rem 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-menu li {
	position: relative;
}

.nav-menu a {
	color: hsl(var(--text-primary));
	font-weight: 600;
	padding: 0.8rem 1.5rem;
	border-radius: 25px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
}

.nav-menu a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		hsl(var(--primary-color)) 0%,
		hsl(var(--accent-color)) 100%
	);
	transition: left 0.3s ease;
	z-index: -1;
	border-radius: 25px;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
	left: 0;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.nav-contact {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.nav-phone {
	color: hsl(var(--primary-color));
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	padding: 0.8rem 1.5rem;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.9) 0%,
		rgba(255, 255, 255, 0.7) 100%
	);
	border-radius: 25px;
	border: 2px solid hsl(var(--accent-color));
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-phone:hover {
	background: linear-gradient(
		135deg,
		hsl(var(--accent-color)) 0%,
		hsl(var(--primary-color)) 100%
	);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: linear-gradient(
		90deg,
		hsl(var(--primary-color)) 0%,
		hsl(var(--accent-color)) 100%
	);
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.hamburger:hover span {
	background: linear-gradient(
		90deg,
		hsl(var(--accent-color)) 0%,
		hsl(var(--primary-color)) 100%
	);
}

/* Mobile Navigation */
@media (max-width: 768px) {
	.nav-container {
		grid-template-columns: auto 1fr auto;
		gap: 1rem;
	}

	.nav-menu {
		position: absolute;
		top: 100%;
		left: 20px;
		right: 20px;
		flex-direction: column;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(15px);
		border-radius: 15px;
		padding: 1.5rem;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
		transform: translateY(-20px);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		gap: 0.5rem;
	}

	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-phone {
		display: none;
	}

	.hamburger {
		display: flex;
	}
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: hsl(var(--secondary-color));
	color: white;
	padding: 1rem;
	z-index: 1001;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

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

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

.btn-accept,
.btn-decline,
.btn-info {
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 0.9rem;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-accept {
	background-color: hsl(var(--accent-color));
	color: hsl(var(--text-primary));
}

.btn-decline {
	background-color: transparent;
	color: white;
	border: 1px solid white;
}

.btn-info {
	background-color: transparent;
	color: white;
	text-decoration: underline;
}

/* Hero Section */
.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 120px 20px 80px;
	background: linear-gradient(
		135deg,
		hsl(var(--background)) 0%,
		hsl(var(--surface)) 100%
	);
}

.hero-content {
	flex: 1;
	max-width: 600px;
}

.hero-content h1 {
	font-size: 3rem;
	color: hsl(var(--text-primary));
	margin-bottom: 1.5rem;
}

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

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

.hero-image {
	flex: 1;
	max-width: 500px;
	margin-left: 2rem;
}

/* Image Placeholders */
.image-placeholder {
	background: linear-gradient(
		135deg,
		hsl(var(--border-color)) 0%,
		hsl(var(--background)) 100%
	);
	border: 2px dashed hsl(var(--border-color));
	display: flex;
	align-items: center;
	justify-content: center;
	color: hsl(var(--text-secondary));
	font-weight: 500;
	text-align: center;
	padding: 2rem;
	border-radius: 8px;
	min-height: 300px;
}

/* Page Header */
.page-header {
	background: linear-gradient(
		135deg,
		hsl(var(--primary-color)) 0%,
		hsl(var(--secondary-color)) 100%
	);
	color: white;
	text-align: center;
	padding: 120px 0 80px;
}

.page-header h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.page-header p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
}

/* Services Preview */
.services-preview {
	padding: 80px 0;
	background-color: hsl(var(--surface));
}

.services-preview h2 {
	text-align: center;
	margin-bottom: 3rem;
	color: hsl(var(--text-primary));
}

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

.service-card {
	background-color: hsl(var(--background));
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.service-image {
	margin-bottom: 1.5rem;
}

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

/* Portfolio Sections */
.portfolio-preview,
.portfolio-gallery {
	padding: 80px 0;
}

.portfolio-preview h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.portfolio-grid,
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.portfolio-item,
.gallery-item {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}

.portfolio-item:hover,
.gallery-item:hover {
	transform: scale(1.05);
}

.gallery-item {
	position: relative;
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: white;
	padding: 1.5rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay h3 {
	margin-bottom: 0.5rem;
}

.gallery-overlay p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
}

/* Portfolio Filter */
.portfolio-filter {
	padding: 2rem 0;
	background-color: hsl(var(--background));
}

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

.filter-btn {
	padding: 10px 20px;
	border: 2px solid hsl(var(--border-color));
	background-color: hsl(var(--surface));
	color: hsl(var(--text-primary));
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
	background-color: hsl(var(--primary-color));
	color: white;
	border-color: hsl(var(--primary-color));
}

/* About Sections */
.about-preview,
.about-story {
	padding: 80px 0;
}

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

.team-section {
	padding: 80px 0;
	background-color: hsl(var(--background));
}

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

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

.team-member {
	background-color: hsl(var(--surface));
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	box-shadow: var(--shadow);
}

.member-image {
	margin-bottom: 1.5rem;
}

.member-role {
	color: hsl(var(--primary-color));
	font-weight: 500;
	margin-bottom: 1rem;
}

/* Values Section */
.values-section {
	padding: 80px 0;
}

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

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

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

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

/* Experience Section */
.experience-section {
	padding: 80px 0;
	background-color: hsl(var(--background));
}

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

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

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

.stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: hsl(var(--primary-color));
	margin-bottom: 0.5rem;
}

.stat-label {
	color: hsl(var(--text-secondary));
	font-weight: 500;
}

/* Equipment Section */
.equipment-section {
	padding: 80px 0;
}

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

.equipment-text ul {
	margin: 1.5rem 0;
	padding-left: 1.5rem;
}

.equipment-text li {
	margin-bottom: 0.5rem;
	color: hsl(var(--text-secondary));
}

/* Service Detail Sections */
.service-detail {
	padding: 80px 0;
}

.service-detail.alt {
	background-color: hsl(var(--background));
}

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

.service-text h3 {
	color: hsl(var(--primary-color));
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.service-text ul {
	margin: 1rem 0;
	padding-left: 1.5rem;
}

.service-text li {
	margin-bottom: 0.5rem;
	color: hsl(var(--text-secondary));
}

.pricing {
	margin-top: 2rem;
	padding: 2rem;
	background-color: hsl(var(--background));
	border-radius: 10px;
}

.price-item {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid hsl(var(--border-color));
}

.price-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.price-item strong {
	color: hsl(var(--primary-color));
	font-size: 1.1rem;
}

.price-item p {
	margin-top: 0.5rem;
	font-size: 0.9rem;
}

/* Additional Services */
.additional-services {
	padding: 80px 0;
	background-color: hsl(var(--background));
}

.additional-services h2 {
	text-align: center;
	margin-bottom: 3rem;
}

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

.additional-item {
	background-color: hsl(var(--surface));
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: var(--shadow);
}

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

.additional-item strong {
	color: hsl(var(--accent-color));
	font-weight: 600;
}

/* Contact Sections */
.contact-section {
	padding: 80px 0;
}

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

.contact-info h2 {
	margin-bottom: 1.5rem;
}

.contact-details {
	margin-top: 2rem;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
	gap: 1rem;
}

.contact-icon {
	font-size: 1.5rem;
	width: 50px;
	height: 50px;
	background-color: hsl(var(--primary-color));
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-text h3 {
	margin-bottom: 0.5rem;
	color: hsl(var(--text-primary));
}

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

/* Contact Form */
.contact-form {
	background-color: hsl(var(--background));
	padding: 2rem;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.contact-form h2 {
	margin-bottom: 1.5rem;
	text-align: center;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: hsl(var(--text-primary));
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid hsl(var(--border-color));
	border-radius: 5px;
	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: hsl(var(--primary-color));
}

.checkbox-group {
	display: flex;
	align-items: start;
	gap: 0.5rem;
}

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

.checkbox-group label {
	margin-bottom: 0;
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Map Section */
.map-section {
	padding: 80px 0;
	background-color: hsl(var(--background));
}

.map-section h2 {
	text-align: center;
	margin-bottom: 2rem;
}

.map-container {
	height: 400px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.map-placeholder {
	height: 100%;
	background-color: hsl(var(--border-color));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: hsl(var(--text-secondary));
}

/* FAQ Section */
.faq-section {
	padding: 80px 0;
}

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

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

.faq-item {
	background-color: hsl(var(--background));
	padding: 2rem;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

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

/* CTA Sections */
.contact-cta,
.portfolio-cta,
.service-cta,
.about-cta {
	padding: 80px 0;
	text-align: center;
	background: linear-gradient(
		135deg,
		hsl(var(--primary-color)) 0%,
		hsl(var(--secondary-color)) 100%
	);
	color: white;
}

.contact-cta h2,
.portfolio-cta h2,
.service-cta h2,
.about-cta h2 {
	margin-bottom: 1rem;
}

.contact-cta p,
.portfolio-cta p,
.service-cta p,
.about-cta p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
}

.contact-info {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 2rem 0;
	flex-wrap: wrap;
}

.contact-info .contact-item {
	color: white;
}

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

/* Legal Content */
.legal-content {
	padding: 80px 0;
}

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

.legal-text h2 {
	color: hsl(var(--primary-color));
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	border-bottom: 2px solid hsl(var(--border-color));
	padding-bottom: 0.5rem;
}

.legal-text h2:first-child {
	margin-top: 0;
}

.legal-text h3 {
	color: hsl(var(--text-primary));
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.legal-text ul {
	margin: 1rem 0;
	padding-left: 2rem;
}

.legal-text li {
	margin-bottom: 0.5rem;
	color: hsl(var(--text-secondary));
}

.legal-text strong {
	color: hsl(var(--text-primary));
}

.contact-details {
	background-color: hsl(var(--background));
	padding: 1.5rem;
	border-radius: 8px;
	margin: 2rem 0;
}

/* Cookies Table */
.cookies-table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
	background-color: hsl(var(--surface));
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.cookies-table th,
.cookies-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid hsl(var(--border-color));
}

.cookies-table th {
	background-color: hsl(var(--background));
	font-weight: 600;
	color: hsl(var(--text-primary));
}

.cookies-table td {
	color: hsl(var(--text-secondary));
}

/* Footer */
.footer {
	background-color: hsl(var(--secondary-color));
	color: white;
	padding: 60px 0 20px;
}

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

.footer-section h3 {
	margin-bottom: 1rem;
	color: white;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: hsl(var(--accent-color));
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

/* Utility Classes */
.text-center {
	text-align: center;
}

.hidden {
	display: none;
}

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

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: hsl(var(--surface));
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: var(--shadow);
		padding: 2rem 0;
		gap: 0;
	}

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

	.nav-menu li {
		margin: 1rem 0;
	}

	.hero {
		flex-direction: column;
		text-align: center;
		padding: 100px 20px 60px;
	}

	.hero-image {
		margin-left: 0;
		margin-top: 2rem;
	}

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

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

	.about-content,
	.story-content,
	.service-content,
	.equipment-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

	.form-row {
		grid-template-columns: 1fr;
	}

	.services-grid,
	.portfolio-grid,
	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.team-grid,
	.values-grid,
	.additional-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

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

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

	.contact-info {
		flex-direction: column;
		gap: 1rem;
	}

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

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

	.cookie-buttons {
		justify-content: center;
		flex-wrap: wrap;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	.page-header h1 {
		font-size: 2.5rem;
	}
}

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

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

	.page-header h1 {
		font-size: 2rem;
	}

	.experience-stats {
		grid-template-columns: 1fr;
	}

	.stat-number {
		font-size: 2rem;
	}

	.service-card,
	.team-member,
	.additional-item,
	.faq-item {
		padding: 1.5rem;
	}

	.contact-form {
		padding: 1.5rem;
	}

	.legal-text {
		padding: 0 1rem;
	}
}

/* Print Styles */
@media print {
	.navbar,
	.cookie-banner,
	.footer {
		display: none;
	}

	.page-header {
		background: none;
		color: black;
	}

	.hero {
		min-height: auto;
		padding: 2rem 0;
	}

	.image-placeholder {
		border: 1px solid #ccc;
		background: #f9f9f9;
	}
}
