/* Base Styles */
:root {
  --primary-color: #2e7d32;
  --primary-light: #60ad5e;
  --primary-dark: #005005;
  --secondary-color: #ff6f00;
  --secondary-light: #ffa040;
  --secondary-dark: #c43e00;
  --text-dark: #212121;
  --text-light: #757575;
  --text-white: #ffffff;
  --background-light: #f5f5f5;
  --background-white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --radius: 4px;
  --header-height: 80px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}

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

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

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

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

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

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

/* Header Styles */
header {
  background-color: var(--background-white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
}

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

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

.logo img {
  height: 100%;
  width: auto;
}

nav ul {
  display: flex;
}

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

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

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  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);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  color: var(--text-white);
  margin-top: var(--header-height);
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* Page Banner */
.page-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/2.jpg');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  color: var(--text-white);
  text-align: center;
  margin-top: var(--header-height);
}

.page-banner h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.page-banner p {
  font-size: 18px;
}

/* Summary Section */
.summary {
  padding: 60px 0;
}

.summary-box {
  background-color: var(--background-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  text-align: center;
}

.summary-box h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 28px;
}

.summary-box p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}

/* Services Section */
.services {
  padding: 60px 0;
  background-color: var(--background-white);
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  color: var(--text-dark);
}

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

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

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

.service-card i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
}

/* Destinations Section */
.destinations {
  padding: 60px 0;
}

.destinations h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  color: var(--text-dark);
}

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

.destination-card {
  background-color: var(--background-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.destination-info {
  padding: 20px;
}

.destination-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.destination-info p {
  color: var(--text-light);
  margin-bottom: 20px;
}

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

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  color: var(--text-dark);
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) var(--background-light);
}

.testimonial {
  flex: 0 0 calc(50% - 15px);
  background-color: var(--background-light);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-dark);
  position: relative;
  padding-left: 20px;
}

.testimonial-content p:before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 30px;
  color: var(--primary-light);
  line-height: 1;
}

.client-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.client-info p {
  color: var(--text-light);
  font-size: 14px;
}

/* Fun Fact Section */
.fun-fact {
  padding: 40px 0;
}

.fact-box {
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.fact-box i {
  font-size: 40px;
  margin-bottom: 15px;
}

.fact-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.fact-box p {
  font-size: 16px;
  line-height: 1.7;
}

/* Footer Styles */
footer {
  background-color: #212121;
  color: var(--text-white);
  padding: 60px 0 20px;
}

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

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

.footer-logo p {
  color: #bdbdbd;
  font-size: 14px;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
  color: var(--text-white);
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3:after,
.footer-legal h3:after,
.footer-contact h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links ul li a,
.footer-legal ul li a {
  color: #bdbdbd;
  transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-contact p {
  color: #bdbdbd;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid #424242;
  padding-top: 20px;
  text-align: center;
}

.social-icons {
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #424242;
  color: var(--text-white);
  border-radius: 50%;
  margin: 0 5px;
  transition: var(--transition);
}

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

.footer-bottom p {
  color: #bdbdbd;
  font-size: 14px;
}

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

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

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

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

.cookie-btn.accept:hover {
  background-color: var(--primary-dark);
}

.cookie-btn.customize {
  background-color: var(--background-light);
  color: var(--text-dark);
}

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

.cookie-btn.reject {
  background-color: var(--text-light);
  color: var(--text-white);
}

.cookie-btn.reject:hover {
  background-color: #616161;
}

.cookie-content a {
  color: var(--primary-color);
  text-decoration: underline;
  font-size: 14px;
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

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

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

.blog-image {
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-light);
}

.blog-meta span {
  display: flex;
  align-items: center;
}

.blog-meta span i {
  margin-right: 5px;
}

.blog-content h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
  transition: var(--transition);
}

.blog-card:hover .blog-content h2 {
  color: var(--primary-color);
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Blog Post Styles */
.blog-post-container {
  margin-top: var(--header-height);
  padding: 60px 0;
}

.blog-post-header {
  margin-bottom: 30px;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 500;
}

.back-to-blog i {
  margin-right: 5px;
}

.blog-post-header h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.blog-post-content {
  background-color: var(--background-white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.featured-image {
  margin-bottom: 30px;
}

.featured-image img {
  width: 100%;
  border-radius: var(--radius);
}

.post-summary {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.blog-post-content h2 {
  font-size: 28px;
  margin: 30px 0 20px;
  color: var(--text-dark);
}

.blog-post-content h3 {
  font-size: 22px;
  margin: 25px 0 15px;
  color: var(--text-dark);
}

.blog-post-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.blog-post-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-post-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
  list-style-type: none;
}

.blog-post-content ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.post-image {
  margin: 30px 0;
}

.image-caption {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 10px;
}

.post-conclusion {
  background-color: var(--background-light);
  padding: 25px;
  border-radius: var(--radius);
  margin: 40px 0;
}

.post-tags {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.post-tags span {
  font-weight: 600;
  color: var(--text-dark);
}

.post-tags a {
  background-color: var(--background-light);
  color: var(--text-light);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 14px;
  transition: var(--transition);
}

.post-tags a:hover {
  background-color: var(--primary-light);
  color: var(--text-white);
}

.post-share {
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.post-share span {
  font-weight: 600;
  color: var(--text-dark);
}

.post-share a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: var(--background-light);
  color: var(--text-dark);
  border-radius: 50%;
  transition: var(--transition);
}

.post-share a:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.post-author {
  display: flex;
  gap: 20px;
  background-color: var(--background-light);
  padding: 25px;
  border-radius: var(--radius);
  margin: 40px 0;
}

.author-image {
  flex: 0 0 100px;
}

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

.author-info h3 {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.author-info h4 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.author-info p {
  font-size: 15px;
  color: var(--text-light);
}

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

.related-posts h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

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

.related-post {
  background-color: var(--background-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
}

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

.related-post h4 {
  padding: 15px;
  font-size: 16px;
  color: var(--text-dark);
  transition: var(--transition);
}

.related-post:hover h4 {
  color: var(--primary-color);
}

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

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

.about-content h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
}

.values {
  padding: 60px 0;
  background-color: var(--background-white);
}

.values h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  color: var(--text-dark);
}

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

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

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

.value-card i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-light);
}

.team {
  padding: 60px 0;
}

.team h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  color: var(--text-dark);
}

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

.team-member {
  background-color: var(--background-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
  padding: 20px 20px 5px;
  font-size: 20px;
  color: var(--text-dark);
}

.team-member p {
  padding: 0 20px;
  color: var(--text-light);
  margin-bottom: 10px;
}

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

.team-member .social-icons {
  padding: 0 20px 20px;
  text-align: left;
}

.team-member .social-icons a {
  width: 32px;
  height: 32px;
  font-size: 14px;
}

.achievements {
  padding: 60px 0;
  background-color: var(--background-white);
}

.achievements h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  color: var(--text-dark);
}

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

.achievement {
  display: flex;
  gap: 15px;
  align-items: center;
  background-color: var(--background-light);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.achievement:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
  flex: 0 0 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 20px;
}

.achievement-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.achievement-content p {
  font-size: 14px;
  color: var(--text-light);
}

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

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

.contact-details h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item i {
  flex: 0 0 40px;
  height: 40px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 18px;
}

.contact-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.contact-item p {
  color: var(--text-light);
}

.social-links h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.contact-form-container h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-container input {
  width: auto;
}

.map-section {
  padding: 60px 0;
  background-color: var(--background-white);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: var(--text-dark);
}

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

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

.modal-content {
  background-color: var(--background-white);
  border-radius: var(--radius);
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
}

.modal-body {
  padding: 40px;
  text-align: center;
}

.modal-body i {
  font-size: 60px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.modal-body h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.modal-body p {
  margin-bottom: 25px;
  color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .author-image {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .hero {
    height: 500px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .page-banner {
    height: 200px;
  }

  .page-banner h1 {
    font-size: 32px;
  }

  nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--background-white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
  }

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

  .mobile-menu-btn {
    display: block;
  }

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

  .testimonials-slider {
    flex-direction: column;
  }

  .testimonial {
    flex: none;
  }

  .blog-post-header h1 {
    font-size: 28px;
  }

  .post-summary {
    font-size: 16px;
  }

  .blog-post-content h2 {
    font-size: 24px;
  }

  .blog-post-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .services-grid,
  .values-grid,
  .team-grid,
  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .value-card {
    padding: 20px;
  }

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

  .logo {
    height: 50px;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 30px;
  }

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

  .modal-body {
    padding: 30px 20px;
  }

  .blog-post-content {
    padding: 20px;
  }

  .post-tags,
  .post-share {
    flex-wrap: wrap;
  }
}
