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

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

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

.navbar {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: bold;
	color: #d4af37;
	transition: color 0.3s ease;
}

.nav-logo:hover {
	color: #667eea;
}

.logo {
	width: 40px;
	height: 40px;
	margin-right: 10px;
	border-radius: 50%;
}

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

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

.nav-link:hover,
.nav-link.active {
	color: #d4af37;
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #d4af37;
}

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

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

.hero {
	display: flex;
	align-items: center;
	min-height: 100vh;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	margin-top: 80px;
	padding: 2rem 0;
}

.hero-content {
	flex: 1;
	padding: 2rem;
}

.hero-content h1 {
	font-size: 3.5rem;
	font-weight: bold;
	margin-bottom: 1rem;
	color: #212529;
	background: linear-gradient(45deg, #d4af37, #f4d03f);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-content p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	color: #6c757d;
}

.cta-button {
	display: inline-block;
	background: linear-gradient(45deg, #d4af37, #f4d03f);
	color: white;
	padding: 1rem 2rem;
	text-decoration: none;
	border-radius: 50px;
	font-weight: bold;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.hero-image {
	flex: 1;
	text-align: center;
}

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

.stats {
	padding: 4rem 0;
	background: #212529;
	color: white;
}

.stats .container {
	display: flex;
	justify-content: space-around;
	text-align: center;
}

.stat-item h3 {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	color: #d4af37;
}

.stat-item p {
	font-size: 1.1rem;
	color: #adb5bd;
}

.quote-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

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

.quote-block h3 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #d4af37;
}

.quote-block blockquote {
	font-size: 1.5rem;
	font-style: italic;
	margin-bottom: 1rem;
	line-height: 1.8;
}

.quote-block cite {
	font-size: 1.1rem;
	opacity: 0.9;
}

.services {
	padding: 4rem 0;
	background: #f8f9fa;
}

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

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

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 1rem;
}

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

.service-card p {
	color: #6c757d;
	line-height: 1.6;
}

.page-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 8rem 0 4rem;
	text-align: center;
	margin-top: 80px;
}

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

.page-header p {
	font-size: 1.2rem;
	opacity: 0.9;
}

.about-content {
	padding: 4rem 0;
}

.about-text h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #212529;
}

.about-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: #495057;
}

.team-section {
	padding: 4rem 0;
	background: #f8f9fa;
}

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

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

.team-member {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease;
}

.team-member:hover {
	transform: translateY(-5px);
}

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

.team-member h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #212529;
}

.team-member p:first-of-type {
	font-weight: bold;
	color: #d4af37;
	margin-bottom: 1rem;
}

.blog-posts {
	padding: 4rem 0;
}

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

.post-card {
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.post-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.post-content {
	padding: 1.5rem;
}

.post-content h2 {
	margin-bottom: 1rem;
}

.post-content h2 a {
	color: #212529;
	text-decoration: none;
	transition: color 0.3s ease;
}

.post-content h2 a:hover {
	color: #d4af37;
}

.post-meta {
	color: #6c757d;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.read-more {
	color: #d4af37;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
}

.read-more:hover {
	color: #212529;
}

.blog-post {
	margin-top: 80px;
	padding: 2rem 0;
}

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

.post-header h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #212529;
}

.post-hero-image {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
	border-radius: 15px;
	margin-top: 2rem;
}

.blog-post .post-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.blog-post .post-content h2 {
	font-size: 1.8rem;
	margin: 2rem 0 1rem;
	color: #212529;
}

.blog-post .post-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: #495057;
}

.post-navigation {
	max-width: 800px;
	margin: 3rem auto 0;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.back-to-blog,
.prev-post,
.next-post {
	color: #d4af37;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
}

.back-to-blog:hover,
.prev-post:hover,
.next-post:hover {
	color: #212529;
}

.post-nav-links {
	display: flex;
	gap: 2rem;
}

.contact-section {
	padding: 4rem 0;
}

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

.contact-info h2,
.contact-form h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #212529;
}

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

.contact-item h3 {
	font-size: 1.2rem;
	color: #d4af37;
	margin-bottom: 0.5rem;
}

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

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: bold;
	color: #212529;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid #e9ecef;
	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: #d4af37;
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.checkbox-label input {
	width: auto;
}

.submit-btn {
	background: linear-gradient(45deg, #d4af37, #f4d03f);
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-weight: bold;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.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-content {
	background-color: white;
	margin: 15% auto;
	padding: 2rem;
	border-radius: 15px;
	width: 80%;
	max-width: 500px;
	text-align: center;
	position: relative;
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 15px;
}

.close:hover {
	color: black;
}

.footer {
	background: #212529;
	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: #d4af37;
}

.footer-section p,
.footer-section li {
	color: #adb5bd;
	line-height: 1.6;
}

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

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

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

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

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-links a {
	display: inline-block;
	padding: 0.5rem;
	background: #495057;
	border-radius: 50%;
	transition: background 0.3s ease;
}

.social-links a:hover {
	background: #d4af37;
}

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

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(33, 37, 41, 0.95);
	backdrop-filter: blur(10px);
	color: white;
	padding: 1rem;
	z-index: 1500;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

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

.cookie-content p {
	flex: 1;
	margin: 0;
	font-size: 0.9rem;
}

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

.cookie-btn {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: background 0.3s ease;
}

.cookie-btn.accept {
	background: #d4af37;
	color: white;
}

.cookie-btn.customize {
	background: #495057;
	color: white;
}

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

.cookie-btn:hover {
	opacity: 0.8;
}

.cookie-content a {
	color: #d4af37;
	text-decoration: none;
}

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

@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 80px;
		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;
	}

	.hamburger {
		display: flex;
	}

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

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

	.stats .container {
		flex-direction: column;
		gap: 2rem;
	}

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

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

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

	.post-nav-links {
		flex-direction: column;
		gap: 1rem;
	}

	.post-navigation {
		flex-direction: column;
		gap: 1rem;
	}
}

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

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

	.services h2,
	.team-section h2 {
		font-size: 2rem;
	}

	.container {
		padding: 0 15px;
	}
}
