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

:root {
	--primary-color: #c2935f;
	--secondary-color: #333333;
	--light-color: #ffffff;
	--dark-color: #1a1a1a;
	--gray-color: #f5f5f5;
	--text-color: #333333;
	--border-color: #e0e0e0;
	--accent-color: #9f784a;
	--error-color: #d32f2f;
	--success-color: #388e3c;
	--font-primary: 'Montserrat', sans-serif;
	--font-secondary: 'Playfair Display', serif;
	--box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s ease;
}

body {
	font-family: var(--font-primary);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-secondary);
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

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

ul {
	list-style: none;
}

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

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Button Styles */
.btn-primary,
.btn-secondary,
.btn-tertiary {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 4px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	border: none;
	font-family: var(--font-primary);
}

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

.btn-primary:hover {
	background-color: var(--accent-color);
	color: var(--light-color);
}

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

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

.btn-tertiary {
	background-color: var(--gray-color);
	color: var(--secondary-color);
}

.btn-tertiary:hover {
	background-color: #e0e0e0;
}

/* Header & Navigation */
header {
	background-color: var(--light-color);
	box-shadow: var(--box-shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 15px 0;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	height: 60px;
}
.nav-logo {
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--primary-color);
	transition: var(--transition);
}
nav ul {
	display: flex;
}

nav ul li {
	margin-left: 30px;
}

nav ul li a {
	color: var(--secondary-color);
	font-weight: 500;
	padding: 5px 0;
	position: relative;
}

nav ul li a:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
	width: 100%;
}

nav ul li a.active {
	color: var(--primary-color);
}

/* Hero Section */
.hero {
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url('images/23.jpg');
	background-size: cover;
	background-position: center;
	color: var(--light-color);
	padding: 150px 0;
	text-align: center;
}

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

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
}

.hero h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	font-weight: 400;
}

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

/* Featured Models Section */
.featured-models {
	padding: 80px 0;
	background-color: var(--gray-color);
}

.featured-models h2 {
	text-align: center;
	margin-bottom: 40px;
}

.models-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
}

.model-card {
	background-color: var(--light-color);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.model-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.model-card h3 {
	padding: 15px 15px 5px;
}

.model-card p {
	padding: 0 15px 15px;
	color: #666;
}

.model-details {
	padding: 0 15px 15px;
}

.model-details p {
	margin-bottom: 5px;
	font-size: 0.9rem;
	color: #666;
	padding: 0;
}

.model-details strong {
	color: var(--text-color);
	font-weight: 600;
}

.view-more {
	text-align: center;
	margin-top: 40px;
}

/* Services Section */
.services {
	padding: 80px 0;
}

.services h2 {
	text-align: center;
	margin-bottom: 40px;
}

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

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

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

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

.service-card h3 {
	margin-bottom: 15px;
}

.service-card p {
	color: #666;
}

/* Testimonials Section */
.testimonials {
	background-color: var(--gray-color);
	padding: 80px 0;
}

.testimonials h2 {
	text-align: center;
	margin-bottom: 40px;
}

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

.testimonial-card {
	background-color: var(--light-color);
	border-radius: 8px;
	padding: 30px;
	box-shadow: var(--box-shadow);
}

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

.testimonial-card p {
	font-style: italic;
	margin-bottom: 20px;
}

.testimonial-card .client h4 {
	margin-bottom: 5px;
	color: var(--secondary-color);
}

.testimonial-card .client p {
	font-style: normal;
	color: #666;
	margin-bottom: 0;
}

/* Latest Blog Section */
.latest-blog {
	padding: 80px 0;
}

.latest-blog h2 {
	text-align: center;
	margin-bottom: 40px;
}

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

.blog-card {
	background-color: var(--light-color);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.blog-content {
	padding: 20px;
}

.blog-content h3 {
	margin-bottom: 10px;
}

.blog-content .date {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 10px;
	display: block;
}

.blog-content p {
	margin-bottom: 15px;
}

.read-more {
	font-weight: 600;
	display: inline-block;
}

.read-more:after {
	content: '→';
	margin-left: 5px;
	transition: var(--transition);
}

.read-more:hover:after {
	margin-left: 10px;
}

/* CTA Section */
.cta {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
		url('images/24.jpg');
	background-size: cover;
	background-position: center;
	color: var(--light-color);
	padding: 80px 0;
	text-align: center;
}

.cta h2 {
	margin-bottom: 15px;
}

.cta p {
	margin-bottom: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

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

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

.footer-logo img {
	height: 60px;
	margin-bottom: 15px;
}

.footer-logo p {
	font-size: 0.9rem;
	opacity: 0.8;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
	margin-bottom: 20px;
	color: var(--primary-color);
}

.footer-links ul li {
	margin-bottom: 10px;
}

.footer-links ul li a {
	color: var(--light-color);
	opacity: 0.8;
	transition: var(--transition);
}

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

.footer-contact p {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	opacity: 0.8;
}

.footer-contact p svg {
	margin-right: 10px;
}

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

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

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

.footer-bottom {
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-bottom p {
	margin-bottom: 0;
	font-size: 0.9rem;
	opacity: 0.7;
}

.legal-links {
	display: flex;
	gap: 20px;
}

.legal-links a {
	color: var(--light-color);
	font-size: 0.9rem;
	opacity: 0.7;
}

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

/* Cookie Consent */
.cookie-consent {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--light-color);
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	padding: 20px;
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.cookie-content p {
	margin-bottom: 20px;
	max-width: 800px;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}

.cookie-content a {
	font-size: 0.9rem;
	text-decoration: underline;
}

/* Page Header */
.page-header {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
		url('images/25.jpg');
	background-size: cover;
	background-position: center;
	color: var(--light-color);
	padding: 80px 0;
	text-align: center;
}

.page-header h1 {
	margin-bottom: 15px;
}

.page-header p {
	max-width: 700px;
	margin: 0 auto;
	opacity: 0.9;
}

/* About Page Styles */
.about-intro {
	padding: 80px 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-content h2 {
	margin-top: 40px;
}

.about-content h2:first-child {
	margin-top: 0;
}

.about-image img {
	border-radius: 8px;
	width: 100%;
}

.values {
	background-color: var(--gray-color);
	padding: 80px 0;
}

.values h2 {
	text-align: center;
	margin-bottom: 40px;
}

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

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

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

.team {
	padding: 80px 0;
}

.team h2 {
	text-align: center;
	margin-bottom: 40px;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
}

.team-card {
	background-color: var(--light-color);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--box-shadow);
	text-align: center;
}

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

.team-card h3 {
	margin-top: 20px;
	margin-bottom: 5px;
}

.team-card p {
	padding: 0 20px 20px;
}

.team-card p:first-of-type {
	font-weight: 600;
	color: var(--primary-color);
}

.achievements {
	background-color: var(--secondary-color);
	color: var(--light-color);
	padding: 80px 0;
}

.achievements h2 {
	text-align: center;
	margin-bottom: 40px;
}

.achievements-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 30px;
}

.achievement-card {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 30px;
	text-align: center;
}

.achievement-card h3 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.clients {
	padding: 80px 0;
}

.clients h2 {
	text-align: center;
	margin-bottom: 40px;
}

.clients-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 30px;
	align-items: center;
}

.client-logo {
	padding: 20px;
	background-color: var(--light-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--box-shadow);
}

.client-logo img {
	max-width: 100%;
	max-height: 80px;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: var(--transition);
}

.client-logo:hover img {
	filter: grayscale(0);
	opacity: 1;
}

/* Services Page Styles */
.services-intro {
	padding: 80px 0;
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.services-image img {
	border-radius: 8px;
	width: 100%;
}

.service-categories {
	background-color: var(--gray-color);
	padding: 80px 0;
}

.service-categories h2 {
	text-align: center;
	margin-bottom: 40px;
}

.categories-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.category-card {
	background-color: var(--light-color);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--box-shadow);
	display: grid;
	grid-template-columns: 1fr 2fr;
}

.category-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-content {
	padding: 30px;
}

.category-content h3 {
	margin-bottom: 15px;
}

.category-content ul {
	list-style: disc;
	margin-left: 20px;
	margin-top: 15px;
}

.category-content ul li {
	margin-bottom: 5px;
}

.specialty-services {
	padding: 80px 0;
}

.specialty-services h2 {
	text-align: center;
	margin-bottom: 40px;
}

.specialty-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
}

.specialty-card {
	background-color: var(--light-color);
	border-radius: 8px;
	padding: 30px;
	border: 1px solid var(--border-color);
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.specialty-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.specialty-card .icon {
	color: var(--primary-color);
	margin-bottom: 20px;
}

.process {
	background-color: var(--gray-color);
	padding: 80px 0;
}

.process h2 {
	text-align: center;
	margin-bottom: 40px;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 30px;
}

.process-step {
	background-color: var(--light-color);
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	box-shadow: var(--box-shadow);
	position: relative;
}

.step-number {
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	color: var(--light-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin: 0 auto 20px;
}

.pricing {
	padding: 80px 0;
}

.pricing h2 {
	text-align: center;
	margin-bottom: 40px;
}

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

.pricing-content ul {
	list-style: disc;
	margin-left: 20px;
	margin-bottom: 20px;
}

.pricing-content ul li {
	margin-bottom: 10px;
}

.faq {
	background-color: var(--gray-color);
	padding: 80px 0;
}

.faq h2 {
	text-align: center;
	margin-bottom: 40px;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 30px;
}

.faq-item {
	background-color: var(--light-color);
	border-radius: 8px;
	padding: 30px;
	box-shadow: var(--box-shadow);
}

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

/* Blog Page Styles */
.blog-content {
	padding: 80px 0;
}

.blog-layout {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 40px;
}

.blog-main {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

.blog-post-card {
	background-color: var(--light-color);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--box-shadow);
	display: grid;
	grid-template-columns: 1fr;
}

.blog-post-card.featured {
	grid-template-columns: 1fr 1fr;
}

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

.blog-post-card .post-content {
	padding: 30px;
}

.blog-post-card .post-meta {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
	font-size: 0.9rem;
	color: #666;
}

.blog-post-card h2 {
	margin-bottom: 15px;
}

.blog-sidebar {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	align-content: start;
}

.sidebar-widget {
	background-color: var(--light-color);
	border-radius: 8px;
	padding: 25px;
	box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--primary-color);
}

.category-list li {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
}

.category-list li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.popular-posts li {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--border-color);
}

.popular-posts li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.popular-posts li a {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 15px;
	align-items: center;
}

.popular-posts li img {
	width: 80px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
}

.popular-posts li h4 {
	font-size: 1rem;
	margin-bottom: 5px;
	transition: var(--transition);
}

.popular-posts li span {
	font-size: 0.8rem;
	color: #666;
}

.popular-posts li a:hover h4 {
	color: var(--primary-color);
}

.subscribe-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
}

.subscribe-form input {
	padding: 12px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
}

/* Contact Page Styles */
.contact-info {
	padding: 80px 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
}

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

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

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

.contact-form-section {
	background-color: var(--gray-color);
	padding: 80px 0;
}

.form-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.form-content {
	background-color: var(--light-color);
	border-radius: 8px;
	padding: 40px;
	box-shadow: var(--box-shadow);
}

.form-image img {
	width: 100%;
	border-radius: 8px;
}

.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 30px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group.full-width {
	grid-column: 1 / -1;
}

.form-group.checkbox {
	grid-column: 1 / -1;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.form-group label {
	margin-bottom: 8px;
	font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	font-family: inherit;
}

.form-group textarea {
	resize: vertical;
}

.contact-form button {
	grid-column: 1 / -1;
	justify-self: start;
}

.map-section {
	padding: 80px 0;
}

.map-section h2 {
	text-align: center;
	margin-bottom: 40px;
}

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

.map-placeholder {
	background-color: #e9e9e9;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--secondary-color);
}

.map-content {
	text-align: center;
}

.map-content svg {
	margin-bottom: 15px;
	color: var(--primary-color);
}

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

.faq-section h2 {
	text-align: center;
	margin-bottom: 40px;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 2000;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background-color: var(--light-color);
	padding: 40px;
	border-radius: 8px;
	max-width: 500px;
	width: 90%;
	text-align: center;
	position: relative;
}

.close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 1.5rem;
	cursor: pointer;
}

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

.modal h2 {
	margin-bottom: 15px;
}

.modal p {
	margin-bottom: 25px;
}

/* Individual Blog Post Styles */
.blog-post {
	padding: 80px 0;
}

.post-header {
	margin-bottom: 40px;
	text-align: center;
}

.post-header h1 {
	margin-bottom: 15px;
}

.post-meta {
	display: flex;
	justify-content: center;
	gap: 20px;
	color: #666;
	font-size: 0.9rem;
}

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

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

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

.post-content p {
	margin-bottom: 20px;
}

.post-content h2 {
	margin-top: 40px;
	margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
	margin-left: 20px;
	margin-bottom: 20px;
}

.post-content ul li,
.post-content ol li {
	margin-bottom: 10px;
}

.post-footer {
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid var(--border-color);
}

.post-tags {
	margin-bottom: 30px;
}

.post-tags span {
	font-weight: 600;
	margin-right: 10px;
}

.tag {
	display: inline-block;
	background-color: var(--gray-color);
	padding: 5px 10px;
	border-radius: 4px;
	margin-right: 10px;
	font-size: 0.9rem;
}

.share-buttons {
	margin-bottom: 30px;
}

.share-buttons h3 {
	margin-bottom: 15px;
}

.share-icons {
	display: flex;
	gap: 15px;
}

.share-icons a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--gray-color);
	color: var(--secondary-color);
	border-radius: 50%;
	transition: var(--transition);
}

.share-icons a:hover {
	background-color: var(--primary-color);
	color: var(--light-color);
}

.related-posts {
	margin-top: 60px;
}

.related-posts h3 {
	margin-bottom: 30px;
	text-align: center;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.hero {
		padding: 100px 0;
	}

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

	.hero h2 {
		font-size: 1.8rem;
	}

	.about-grid,
	.services-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.blog-layout {
		grid-template-columns: 1fr;
	}

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

	.form-image {
		display: none;
	}
}

@media (max-width: 768px) {
	header .container {
		flex-direction: column;
	}

	.logo {
		margin-bottom: 15px;
	}

	nav ul {
		flex-wrap: wrap;
		justify-content: center;
	}

	nav ul li {
		margin: 5px 15px;
	}

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

	.hero h2 {
		font-size: 1.5rem;
	}

	.category-card {
		grid-template-columns: 1fr;
	}

	.category-image {
		height: 200px;
	}

	.blog-post-card.featured {
		grid-template-columns: 1fr;
	}

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

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

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

	.legal-links {
		justify-content: center;
	}
}

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

	h2 {
		font-size: 1.5rem;
	}

	.hero {
		padding: 80px 0;
	}

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

	.hero h2 {
		font-size: 1.2rem;
	}

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

	.footer-content {
		grid-template-columns: 1fr;
	}

	.cookie-buttons {
		flex-direction: column;
	}
}
