/* Base Styles */
:root {
	--primary-color: #0e7c7b;
	--secondary-color: #ff8a3d;
	--accent-color: #f9c22e;
	--dark-color: #101b37;
	--light-color: #f7f9fc;
	--text-color: #333;
	--text-light: #777;
	--border-color: #e1e1e1;
	--success-color: #28a745;
	--danger-color: #dc3545;
	--header-font: 'Montserrat', sans-serif;
	--body-font: 'Open Sans', sans-serif;
	--transition: all 0.3s ease;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--header-font);
	margin-bottom: 1rem;
	color: var(--dark-color);
	line-height: 1.3;
}

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

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

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

button,
.btn {
	display: inline-block;
	background-color: var(--primary-color);
	color: white;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: var(--transition);
	font-weight: 600;
	text-align: center;
}

button:hover,
.btn:hover {
	background-color: var(--secondary-color);
	color: white;
}

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

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

.btn-tertiary {
	background-color: transparent;
	color: var(--text-color);
	border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
	background-color: var(--light-color);
	color: var(--text-color);
}

ul {
	list-style: none;
}

/* Layout */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Header */
header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 1000;
}

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

.logo-container img {
	width: 50px;
	height: 50px;
	margin-right: 1rem;
}

.logo-container h1 {
	font-size: 1.5rem;
	margin-bottom: 0;
}

nav ul {
	display: flex;
	align-items: center;
}

nav ul li {
	margin-left: 1.5rem;
}

nav ul li a {
	color: var(--text-color);
	font-weight: 600;
	position: relative;
}

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

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

.language-switcher button {
	background-color: transparent;
	color: var(--text-color);
	border: 1px solid var(--border-color);
	padding: 0.5rem 1rem;
}

.language-switcher button:hover {
	background-color: var(--light-color);
	color: var(--text-color);
}

.menu-toggle {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero Section */
.hero {
	height: 500px;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		url('images/4.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 1rem;
}

.hero-text h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: white;
}

.hero-text p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
}

.page-banner {
	background-color: var(--primary-color);
	color: white;
	padding: 3rem 1rem;
	text-align: center;
}

.page-banner h2 {
	font-size: 2.5rem;
	color: white;
	margin-bottom: 0.5rem;
}

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

/* Featured Posts */
.featured-posts {
	padding: 4rem 2rem;
}

.featured-posts h2,
.about-preview h2,
.testimonials h2,
.related-posts h2,
.values-section h2,
.team-section h2 {
	text-align: center;
	margin-bottom: 2rem;
	font-size: 2rem;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.post-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
}

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

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

.post-content {
	padding: 1.5rem;
}

.post-content h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.post-content p {
	color: var(--text-light);
	margin-bottom: 1rem;
}

.read-more {
	display: inline-block;
	color: var(--primary-color);
	font-weight: 600;
}

.read-more:hover {
	color: var(--secondary-color);
}

.cta-center {
	text-align: center;
	margin-top: 2rem;
}

/* About Preview */
.about-preview {
	padding: 4rem 2rem;
	background-color: var(--dark-color);
	color: white;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.about-preview h2 {
	color: white;
}

.about-text {
	flex: 1;
	padding: 0 2rem;
	min-width: 300px;
}

.about-text p {
	margin-bottom: 1.5rem;
}

.about-image {
	flex: 1;
	min-width: 300px;
	padding: 1rem;
}

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

/* Testimonials */
.testimonials {
	padding: 4rem 2rem;
	background-color: var(--light-color);
}

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

.testimonial {
	background-color: white;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	position: relative;
}

.testimonial p {
	font-style: italic;
	margin-bottom: 1rem;
}

.testimonial:before {
	content: '"';
	font-size: 5rem;
	position: absolute;
	top: -10px;
	left: 10px;
	color: var(--accent-color);
	opacity: 0.2;
}

.testimonial-author {
	text-align: right;
	font-weight: 600;
	color: var(--primary-color);
}

/* Footer */
footer {
	background-color: var(--dark-color);
	color: white;
	padding: 3rem 2rem 1rem;
}

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

.footer-column h3 {
	color: white;
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
}

.footer-column p {
	margin-bottom: 0.8rem;
	opacity: 0.8;
}

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

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

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

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

footer + .social-icons a {
	color: white;
	opacity: 0.8;
	transition: var(--transition);
}

.social-icons a:hover {
	opacity: 1;
	color: var(--accent-color);
}

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

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: white;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	padding: 1rem 2rem;
	z-index: 1000;
	display: none;
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
}

.cookie-content p {
	margin-bottom: 1rem;
}

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

.cookie-policy {
	font-size: 0.9rem;
	opacity: 0.8;
}

/* Blog Page */
.blog-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
	padding: 3rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.blog-posts {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.blog-post {
	display: flex;
	flex-direction: column;
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.blog-post .post-content {
	padding: 2rem;
}

.post-meta {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-light);
	font-size: 0.9rem;
}

.blog-sidebar {
	align-self: start;
	position: sticky;
	top: 100px;
}

.sidebar-widget {
	background-color: white;
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--border-color);
}

.sidebar-widget ul li {
	margin-bottom: 0.5rem;
}

.sidebar-widget ul li a {
	color: var(--text-color);
	transition: var(--transition);
}

.sidebar-widget ul li a:hover {
	color: var(--primary-color);
}

.popular-posts {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.popular-post {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.popular-post img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 4px;
}

.popular-post h4 {
	font-size: 1rem;
	margin-bottom: 0.3rem;
}

.popular-post span {
	font-size: 0.8rem;
	color: var(--text-light);
}

.subscribe-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

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

/* About Page */
.about-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 2rem;
}

.about-intro {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4rem;
	gap: 2rem;
}

.about-content {
	flex: 1;
	min-width: 300px;
}

.about-content h2 {
	margin-bottom: 1.5rem;
}

.about-content p {
	margin-bottom: 1rem;
}

.team-section,
.values-section,
.testimonials-section,
.cta-section {
	margin-bottom: 4rem;
}

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

.team-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: var(--transition);
}

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

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

.team-card h3 {
	margin: 1rem 0 0.5rem;
	font-size: 1.2rem;
}

.team-card p {
	padding: 0 1rem 1.5rem;
	font-size: 0.9rem;
}

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

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

.value-card {
	background-color: white;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: var(--transition);
}

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

.value-card i {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.value-card h3 {
	margin-bottom: 1rem;
}

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

.testimonial-card {
	background-color: white;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	position: relative;
}

.testimonial-card p {
	font-style: italic;
	margin-bottom: 1rem;
}

.testimonial-card:before {
	content: '"';
	font-size: 5rem;
	position: absolute;
	top: -10px;
	left: 10px;
	color: var(--accent-color);
	opacity: 0.2;
}

.cta-section {
	text-align: center;
	background-color: var(--light-color);
	padding: 3rem;
	border-radius: 8px;
}

.cta-section h2 {
	margin-bottom: 1rem;
}

.cta-section p {
	max-width: 600px;
	margin: 0 auto 2rem;
}

.cta-section .subscribe-form {
	max-width: 500px;
	margin: 0 auto;
}

/* Contact Page */
.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 2rem;
}

.contact-info {
	margin-bottom: 3rem;
}

.contact-info h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.contact-info > p {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 2rem;
}

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

.info-card {
	background-color: white;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: var(--transition);
}

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

.info-card i {
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.info-card h3 {
	margin-bottom: 1rem;
}

.info-card p {
	margin-bottom: 0.5rem;
}

.info-card .social-icons {
	justify-content: center;
}

.contact-form-section {
	margin-bottom: 3rem;
}

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

.contact-form {
	max-width: 800px;
	margin: 0 auto;
	background-color: white;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

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

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

.form-group label {
	margin-bottom: 0.5rem;
	font-weight: 600;
}

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

.form-group textarea {
	resize: vertical;
}

.checkbox-group {
	flex-direction: row;
	align-items: flex-start;
	gap: 0.5rem;
	grid-column: 1 / -1;
}

.checkbox-group input {
	margin-top: 0.3rem;
}

.checkbox-group label {
	margin-bottom: 0;
	font-weight: normal;
	font-size: 0.9rem;
}

.form-actions {
	grid-column: 1 / -1;
	text-align: center;
}

.map-section {
	margin-bottom: 3rem;
}

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

.map-container {
	height: 400px;
	border-radius: 8px;
	overflow: hidden;
}

.map-placeholder {
	height: 100%;
	background-color: #e9ecef;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

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

.accordion-item {
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.accordion-header {
	width: 100%;
	text-align: left;
	color: var(--text-color);
	padding: 1.5rem;
	background-color: white;
	border: none;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.accordion-header:after {
	content: '+';
	font-size: 1.5rem;
}

.accordion-header.active:after {
	content: '-';
}

.accordion-content {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background-color: white;
}

.accordion-content p {
	padding-bottom: 1.5rem;
}

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

.modal-content {
	background-color: white;
	padding: 2rem;
	border-radius: 8px;
	max-width: 500px;
	width: 90%;
	text-align: center;
	position: relative;
	margin: 15% auto;
}

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

.modal h2 {
	margin-bottom: 1rem;
}

.modal p {
	margin-bottom: 1.5rem;
}

.modal-close-btn {
	display: inline-block;
}

/* Blog Post Page */
.post-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 2rem;
}

.blog-post-full {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.post-hero-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.post-header {
	padding: 2rem 2rem 0;
}

.post-header h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.post-content {
	padding: 2rem;
}

.post-content p {
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.post-content h2 {
	margin: 2rem 0 1rem;
	font-size: 1.5rem;
}

.post-content ul,
.post-content ol {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.post-content ul li,
.post-content ol li {
	margin-bottom: 0.5rem;
	list-style-type: disc;
}

.post-tip {
	background-color: var(--light-color);
	border-left: 4px solid var(--accent-color);
	padding: 1.5rem;
	margin: 2rem 0;
	border-radius: 0 8px 8px 0;
}

.post-tip h3 {
	margin-bottom: 0.5rem;
	color: var(--accent-color);
}

.post-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin: 2rem 0;
}

.post-gallery figure {
	border-radius: 8px;
	overflow: hidden;
}

.post-gallery figcaption {
	padding: 0.5rem;
	text-align: center;
	font-size: 0.9rem;
	font-style: italic;
	color: var(--text-light);
}

.author-bio {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background-color: var(--light-color);
	padding: 1.5rem;
	border-radius: 8px;
	margin-top: 3rem;
}

.author-bio img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
}

.author-bio h3 {
	margin-bottom: 0.5rem;
}

.post-navigation {
	display: flex;
	justify-content: space-between;
	padding: 2rem;
	border-top: 1px solid var(--border-color);
}

.post-comments {
	padding: 2rem;
	border-top: 1px solid var(--border-color);
}

.post-comments h3 {
	margin-bottom: 1.5rem;
}

.comment-form h4 {
	margin-bottom: 1rem;
}

.comment-form .form-group {
	margin-bottom: 1rem;
}

.post-sidebar {
	align-self: start;
	position: sticky;
	top: 100px;
}

.social-share {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.social-share a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem;
	border-radius: 4px;
	color: white;
	font-weight: 600;
}

.share-facebook {
	background-color: #1877f2;
}

.share-twitter {
	background-color: #1da1f2;
}

.share-pinterest {
	background-color: #bd081c;
}

.related-posts {
	padding: 4rem 2rem;
	background-color: var(--light-color);
	max-width: 1200px;
	margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
	.post-container,
	.blog-container {
		grid-template-columns: 1fr;
	}

	.post-sidebar,
	.blog-sidebar {
		position: static;
	}

	.about-preview {
		flex-direction: column;
	}

	.about-text,
	.about-image {
		padding: 1rem 0;
	}
}

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

	.logo-container img {
		width: 35px;
		height: 35px;
	}

	.logo-container h1 {
		font-size: 1.1rem;
	}

	.menu-toggle {
		display: block;
		width: 35px;
		height: 30px;
		position: absolute;
		top: 1.3rem;
		right: 2rem;
	}
	.menu-toggle i {
		display: block;
		margin-bottom: 5px;
		width: 35px;
		height: 5px;
		background-color: var(--dark-color);
	}

	nav {
		width: 100%;
	}

	nav ul {
		flex-direction: column;
		align-items: flex-start;
		display: none;
		padding: 1rem 0;
	}

	nav ul.show {
		display: flex;
	}

	nav ul li {
		margin: 0.5rem 0;
	}

	.hero-text h2 {
		font-size: 2rem;
	}

	.post-gallery {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 576px) {
	.post-header h1 {
		font-size: 1.5rem;
	}

	.post-meta {
		flex-direction: column;
		gap: 0.5rem;
	}

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

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

	.info-cards,
	.team-grid,
	.values-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}
