/* Base Styles and Variables */
:root {
  --primary-color: #4a89dc;
  --secondary-color: #44b9d6;
  --accent-color: #f3ae4b;
  --dark-color: #2c3e50;
  --light-color: #f8f9fa;
  --text-color: #333;
  --text-color-light: #f8f9fa;
  --border-color: #e1e1e1;
  --success-color: #28a745;
  --error-color: #dc3545;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --container-width: 1200px;
}

/* Dark Mode Variables */
.dark-mode {
  --primary-color: #5c9ce6;
  --secondary-color: #55c8e6;
  --accent-color: #f5b75c;
  --dark-color: #1a2533;
  --light-color: #2c3e50;
  --text-color: #e1e1e1;
  --text-color-light: #f8f9fa;
  --border-color: #4a4a4a;
  --success-color: #34c759;
  --error-color: #ff3b30;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  background-color: #1a2533;
  color: var(--text-color);
}

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

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

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

ul {
  list-style: none;
}

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

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

button {
  cursor: pointer;
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
  transition: var(--transition);
}

.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4, .dark-mode h5, .dark-mode h6 {
  color: var(--text-color-light);
}

p {
  margin-bottom: 1.5rem;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: #3a7bd5;
  color: white;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.center-btn {
  text-align: center;
  margin: 2rem 0;
}

/* Header & Navigation */
header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.dark-mode header {
  background-color: var(--dark-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.logo-container h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

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

nav ul {
  display: flex;
}

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

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

.dark-mode nav ul li a {
  color: var(--text-color-light);
}

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

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

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

#theme-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.dark-mode #theme-toggle {
  color: var(--text-color-light);
}

/* 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;
  color: white;
  text-align: center;
  padding: 8rem 0;
  margin-bottom: 3rem;
}

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured Destinations Section */
.featured-destinations {
  padding: 3rem 0;
}

.featured-destinations h2, 
.latest-posts h2, 
.beginner-mistakes h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
}

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

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

.dark-mode .destination-card {
  background-color: var(--dark-color);
}

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

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

.destination-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.3rem;
}

.destination-card p {
  padding: 0 1.5rem 1rem;
  color: var(--text-color);
}

.dark-mode .destination-card p {
  color: var(--text-color-light);
}

.destination-card .btn-secondary {
  margin: 0 1.5rem 1.5rem;
}

/* Latest Posts Section */
.latest-posts {
  padding: 3rem 0;
  background-color: #f9f9f9;
  transition: var(--transition);
}

.dark-mode .latest-posts {
  background-color: #233140;
}

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

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

.dark-mode .post-card {
  background-color: var(--dark-color);
}

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

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

.post-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.3rem;
}

.post-card p {
  padding: 0 1.5rem 1rem;
  color: var(--text-color);
}

.dark-mode .post-card p {
  color: var(--text-color-light);
}

.post-card .btn-secondary {
  margin: 0 1.5rem 1.5rem;
}

/* Beginner Mistakes Section */
.beginner-mistakes {
  padding: 3rem 0;
  background-color: white;
  transition: var(--transition);
}

.dark-mode .beginner-mistakes {
  background-color: var(--dark-color);
}

.mistakes-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.mistake-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background-color: #f9f9f9;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.dark-mode .mistake-item {
  background-color: #233140;
}

.mistake-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.mistake-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.mistake-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Newsletter Section */
.newsletter {
  padding: 3rem 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.newsletter h2, .newsletter p {
  color: white;
}

.newsletter p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.newsletter-form .btn-primary {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  background-color: var(--dark-color);
}

.newsletter-form .btn-primary:hover {
  background-color: #1a2533;
}

/* Footer Styles */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-logo h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  color: #b3b3b3;
  font-size: 0.9rem;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-links ul li a {
  color: #b3b3b3;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
}

.footer-contact address {
  font-style: normal;
  color: #b3b3b3;
  font-size: 0.9rem;
}

.footer-contact address p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.footer-contact address p svg {
  margin-right: 0.5rem;
}

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

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

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

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

.footer-bottom p {
  color: #b3b3b3;
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

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

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

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

.cookie-link {
  color: #b3b3b3;
  text-decoration: underline;
  margin-left: 1rem;
  font-size: 0.9rem;
}

.cookie-link:hover {
  color: white;
}

/* Blog Page Styles */
.page-banner {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

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

.page-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

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

.blog-posts .post-card {
  display: flex;
  flex-direction: column;
}

.post-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.dark-mode .post-meta {
  color: #b3b3b3;
}

.post-category {
  background-color: #f0f0f0;
  color: var(--dark-color);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.dark-mode .post-category {
  background-color: #2c3e50;
  color: #e1e1e1;
}

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

.post-content .btn-secondary {
  margin-top: auto;
  align-self: flex-start;
}

/* Destinations Page Styles */
.destination-filters {
  margin-bottom: 2rem;
}

.filter-controls {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.dark-mode .filter-controls {
  background-color: var(--dark-color);
}

.filter-controls h3 {
  margin-bottom: 1rem;
}

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

.filter-btn {
  padding: 0.5rem 1rem;
  background-color: #f0f0f0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.dark-mode .filter-btn {
  background-color: #2c3e50;
  color: #e1e1e1;
}

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

.destinations-grid {
  padding: 2rem 0 4rem;
}

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

.destinations-grid .destination-card {
  position: relative;
  height: 350px;
}

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

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem 1.5rem;
  color: white;
  transition: var(--transition);
  transform: translateY(65%);
}

.destination-card:hover .card-overlay {
  transform: translateY(0);
}

.card-overlay h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.card-overlay p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.destination-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.destination-features span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

/* About Page Styles */
.about-story {
  padding: 3rem 0;
}

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

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

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

.about-mission {
  padding: 3rem 0;
  background-color: #f9f9f9;
}

.dark-mode .about-mission {
  background-color: #233140;
}

.about-mission h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.mission-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.dark-mode .mission-card {
  background-color: var(--dark-color);
}

.mission-card:hover {
  transform: translateY(-10px);
}

.mission-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

.mission-card p {
  margin-bottom: 0;
}

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

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

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

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

.dark-mode .team-card {
  background-color: var(--dark-color);
}

.team-card:hover {
  transform: translateY(-10px);
}

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

.team-card h3 {
  margin: 1.5rem 1.5rem 0.3rem;
}

.team-card p {
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}

.team-card p:last-child {
  padding-bottom: 1.5rem;
}

.testimonials {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.dark-mode .testimonials {
  background-color: #233140;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.dark-mode .testimonial-card {
  background-color: var(--dark-color);
}

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

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color);
  position: absolute;
}

.testimonial-content p::before {
  left: -10px;
  top: -10px;
}

.testimonial-content p::after {
  right: -10px;
  bottom: -30px;
}

.testimonial-author h4 {
  margin-bottom: 0.2rem;
}

.testimonial-author p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #6c757d;
}

.dark-mode .testimonial-author p {
  color: #b3b3b3;
}

/* Contact Page Styles */
.contact-section {
  padding: 3rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.dark-mode .contact-info {
  background-color: var(--dark-color);
}

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

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.info-text h4 {
  margin-bottom: 0.3rem;
}

.info-text p {
  margin-bottom: 0.3rem;
}

.social-links {
  margin-top: 2rem;
}

.contact-form-container {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.dark-mode .contact-form-container {
  background-color: var(--dark-color);
}

.contact-form-container h3 {
  margin-bottom: 1.5rem;
}

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

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  transition: var(--transition);
}

.dark-mode .contact-form input,
.dark-mode .contact-form textarea {
  background-color: #2c3e50;
  color: white;
  border-color: #4a4a4a;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.contact-form .btn-primary {
  width: 100%;
}

.map-section {
  padding: 2rem 0 4rem;
}

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

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

.location-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalAppear 0.3s ease-out;
}

.dark-mode .modal-content {
  background-color: var(--dark-color);
}

@keyframes modalAppear {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.thank-you-icon {
  color: var(--success-color);
  margin-bottom: 1rem;
}

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

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

/* Blog Post Styles */
.blog-post {
  padding: 3rem 0;
}

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

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

.post-header .post-meta {
  justify-content: center;
}

.post-featured-image {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-featured-image img {
  width: 100%;
  height: auto;
}

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

.post-content h2 {
  margin: 2.5rem 0 1.5rem;
}

.post-content h3 {
  margin: 2rem 0 1rem;
}

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

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

.post-content ul {
  list-style-type: disc;
}

.post-content ol {
  list-style-type: decimal;
}

.post-image {
  margin: 2rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-note {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: 2rem 0;
}

.dark-mode .post-note {
  background-color: #233140;
  border-left-color: var(--primary-color);
}

.author-bio {
  display: flex;
  gap: 1.5rem;
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
}

.dark-mode .author-bio {
  background-color: #233140;
}

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

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

.author-info p {
  margin-bottom: 0;
}

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

.post-navigation-links {
  display: flex;
  justify-content: space-between;
}

.related-posts {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.dark-mode .related-posts {
  background-color: #233140;
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .container {
    max-width: 95%;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo-container {
    margin-bottom: 1rem;
  }
  
  nav ul {
    margin-bottom: 1rem;
  }
  
  nav ul li {
    margin-left: 1rem;
  }
  
  .hero h2 {
    font-size: 2.3rem;
  }
  
  .destination-grid, .post-grid, .mistakes-content {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form .btn-primary {
    border-radius: var(--border-radius);
  }
  
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .post-navigation-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 5rem 0;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-link {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }
}
