/* Base Styles */
:root {
  --primary-color: #2a6bc2;
  --secondary-color: #3a86ff;
  --accent-color: #ff6b6b;
  --text-color: #333333;
  --light-text: #666666;
  --bg-color: #ffffff;
  --light-bg: #f8f9fa;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --container-width: 1200px;
}

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

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

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

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin-bottom: 0.5em;
  font-weight: 700;
}

p {
  margin-bottom: 1.2em;
}

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

section {
  padding: 60px 0;
}

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

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

.read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

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

.read-more:hover:after {
  transform: translateX(5px);
}

/* Header Styles */
header {
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.logo a {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

nav ul {
  display: flex;
  gap: 30px;
}

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

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

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

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

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background-color: var(--light-bg);
  padding: 80px 0;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--light-text);
  margin-bottom: 30px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Featured Destinations Section */
.featured {
  padding: 80px 0;
}

.featured h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

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

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

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

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

.destination-card h3 {
  font-size: 1.5rem;
  margin: 20px 20px 10px;
}

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

.destination-card .read-more {
  margin: 0 20px 20px;
  display: inline-block;
}

/* Latest Posts Section */
.latest-posts {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.latest-posts h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

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

.post-card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

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

.post-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.post-content p {
  color: var(--light-text);
  margin-bottom: 20px;
  flex-grow: 1;
}

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

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.testimonial {
  min-width: 400px;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.quote {
  margin-bottom: 20px;
  position: relative;
}

.quote p {
  font-style: italic;
}

.quote:before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -15px;
  z-index: -1;
}

.author {
  display: flex;
  align-items: center;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

/* Footer Styles */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

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

.footer-logo h3 {
  color: white;
  margin-bottom: 10px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.link-column {
  min-width: 160px;
}

.link-column h4 {
  color: white;
  margin-bottom: 20px;
  position: relative;
}

.link-column h4:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.link-column ul li {
  margin-bottom: 12px;
}

.link-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.link-column ul li a:hover {
  color: white;
}

.social-media {
  flex: 1;
  min-width: 200px;
}

.social-media h4 {
  color: white;
  margin-bottom: 20px;
  position: relative;
}

.social-media h4:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

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

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

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

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

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

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

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

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

.cookie-btn.customize {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-btn.reject {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

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

.cookie-policy-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  font-size: 0.9rem;
}

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

/* Blog Page Styles */
.page-header {
  background-color: var(--light-bg);
  padding: 60px 0;
  text-align: center;
}

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

.page-header p {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 800px;
  margin: 0 auto;
}

.blog-posts {
  padding: 80px 0;
}

.post-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background-color: transparent;
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

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

.posts-grid article {
  margin-bottom: 40px;
}

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

.post-category {
  color: var(--primary-color);
  font-weight: 600;
}

.newsletter {
  background-color: var(--light-bg);
  padding: 60px 0;
}

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

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.newsletter p {
  margin-bottom: 30px;
}

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

.newsletter-form input {
  flex-grow: 1;
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.newsletter-form .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.privacy-note {
  font-size: 0.8rem;
  color: var(--light-text);
  margin-top: 15px;
}

/* Destinations Page Styles */
.destinations-header {
  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;
}

.destination-search {
  padding: 40px 0;
  background-color: var(--light-bg);
}

.search-container {
  max-width: 900px;
  margin: 0 auto;
}

.search-bar {
  display: flex;
  margin-bottom: 20px;
}

.search-bar input {
  flex-grow: 1;
  padding: 15px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.search-bar button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 25px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.search-bar button:hover {
  background-color: var(--secondary-color);
}

.filter-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

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

.filter-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: white;
}

.featured-destinations {
  padding: 80px 0;
}

.featured-destinations h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

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

.destination-image {
  position: relative;
}

.destination-region {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.destination-content {
  padding: 20px;
}

.destination-meta {
  display: flex;
  gap: 20px;
  margin: 15px 0;
  color: var(--light-text);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.destination-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.destination-map {
  background-color: var(--light-bg);
  padding: 80px 0;
}

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

.europe-map {
  max-width: 100%;
  height: auto;
  margin: 0 auto 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.map-note {
  max-width: 600px;
  margin: 0 auto;
  color: var(--light-text);
}

.travel-planning {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
}

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

.planning-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.planning-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

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

.planning-content .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* About Page Styles */
.about-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/21.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.about-story {
  padding: 80px 0;
}

.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
}

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

.team-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

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

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--light-text);
  font-size: 1.1rem;
}

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

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

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

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

.team-member h3 {
  margin: 20px 20px 5px;
  font-size: 1.4rem;
}

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

.team-member p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin: 15px 20px 20px;
}

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

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
}

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

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

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

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

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.value-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.value-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Contact Page Styles */
.contact-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/2.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.contact-content {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-icon {
  margin-right: 20px;
  color: var(--primary-color);
}

.info-text h3 {
  margin-bottom: 5px;
}

.social-contact {
  margin-top: 40px;
}

.contact-form-container {
  flex: 1;
}

.contact-form-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-form {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
}

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

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

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
  margin-top: 6px;
}

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

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

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: white;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 30px;
  border-radius: var(--border-radius);
  max-width: 500px;
  position: relative;
}

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

.thank-you-message {
  text-align: center;
}

.thank-you-message svg {
  margin: 0 auto 20px;
}

.thank-you-message h2 {
  margin-bottom: 15px;
}

.thank-you-message p {
  margin-bottom: 25px;
}

.close-btn {
  margin: 0 auto;
}

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

.post-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.post-header h1 {
  font-size: 2.8rem;
  margin: 15px 0;
}

.post-subtitle {
  font-size: 1.2rem;
  color: var(--light-text);
}

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

.post-featured-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
}

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

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

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

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

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

figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--light-text);
  margin-top: 10px;
}

.travel-tip {
  background-color: rgba(58, 134, 255, 0.1);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.travel-tip h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.author-section {
  display: flex;
  align-items: center;
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  margin: 40px 0;
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

.author-bio h3 {
  margin-bottom: 5px;
}

.post-navigation {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  margin: 40px 0;
}

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

.back-to-blog,
.next-post {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.back-to-blog svg {
  margin-right: 8px;
}

.next-post svg {
  margin-left: 8px;
}

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

.related-posts h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

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

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

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

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

.related-post h3 {
  font-size: 1.1rem;
  margin: 15px 15px 10px;
}

.related-post .read-more {
  margin: 0 15px 15px;
  display: inline-block;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-text {
    margin-bottom: 30px;
  }
}

@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-info {
    margin-bottom: 40px;
  }
  
  .post-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow);
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }
  
  nav.active {
    height: auto;
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .post-header h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .destination-grid,
  .destinations-grid,
  .team-grid,
  .values-grid,
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-nav-links {
    flex-direction: column;
    gap: 20px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter-form .btn {
    border-radius: var(--border-radius);
  }
  
  .post-meta {
    flex-direction: column;
    gap: 5px;
  }
}
