/* Base Styles and Variables */
:root {
  --primary-color: #2a6fdb;
  --primary-dark: #1a5dc8;
  --secondary-color: #34c3ae;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-alt: #f8f9fa;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --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-max-width: 1200px;
  --header-height: 80px;
  --footer-background: #1a1a1a;
  --dark-mode-background: #121212;
  --dark-mode-text: #f0f0f0;
  --dark-mode-border: #2d2d2d;
  --dark-mode-card: #1e1e1e;
}

/* Dark Mode Colors */
body.dark-mode {
  --text-color: var(--dark-mode-text);
  --text-light: #a0a0a0;
  --background-color: var(--dark-mode-background);
  --background-alt: #191919;
  --border-color: var(--dark-mode-border);
  --footer-background: #000000;
}

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

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

.btn-secondary:hover {
  background-color: #2ba999;
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

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

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

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

nav a.active::after, nav a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.theme-toggle {
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.theme-toggle:hover {
  background-color: var(--background-alt);
}

.theme-toggle svg {
  color: var(--text-color);
  transition: var(--transition);
}

/* 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: 120px 0;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
}

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

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--background-color);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.feature-card {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

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

.feature-card .icon {
  background-color: rgba(42, 111, 219, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-card .icon svg {
  color: var(--primary-color);
}

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

.feature-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Destinations Section */
.destinations {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.destinations h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

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

.destination-info {
  padding: 20px;
}

.destination-info h3 {
  margin-bottom: 10px;
}

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

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

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

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

.testimonial {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 30px;
  position: relative;
  border: 1px solid var(--border-color);
}

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

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

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

.client p {
  color: var(--text-light);
  font-style: normal;
  margin-bottom: 0;
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background-color: var(--background-alt);
  text-align: center;
}

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

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

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

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

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

/* User Letter Section */
.user-letter {
  padding: 80px 0;
  background-color: var(--background-color);
}

.letter-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  position: relative;
}

.letter-content::before {
  content: """;
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(42, 111, 219, 0.1);
  font-family: Georgia, serif;
}

.letter-content h2 {
  margin-bottom: 20px;
  text-align: center;
}

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

/* Footer */
footer {
  background-color: var(--footer-background);
  color: 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: 50px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: #a0a0a0;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.footer-links a {
  color: #a0a0a0;
  transition: var(--transition);
}

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

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

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

.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);
  border-radius: 50%;
  transition: var(--transition);
}

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

.social-icons svg {
  color: white;
}

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

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

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

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-content p {
  flex: 1;
  margin: 10px 20px 10px 0;
  font-size: 0.9rem;
}

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

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

#accept-cookies {
  background-color: var(--primary-color);
  color: white;
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
}

#customize-cookies, #decline-cookies {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

#customize-cookies:hover, #decline-cookies:hover {
  background-color: rgba(42, 111, 219, 0.1);
}

.cookie-content a {
  margin-top: 10px;
  font-size: 0.8rem;
  text-decoration: underline;
}

/* Page Header */
.page-header {
  background-color: var(--background-alt);
  padding: 60px 0;
  text-align: center;
}

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

.page-header p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Posts Grid */
.blog-posts {
  padding: 80px 0;
  background-color: var(--background-color);
}

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

.post-card {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.post-image {
  display: block;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.post-date, .post-category {
  color: var(--text-light);
}

.post-card h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.post-card h2 a {
  color: var(--text-color);
  transition: var(--transition);
}

.post-card h2 a:hover {
  color: var(--primary-color);
}

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

.read-more {
  margin-top: auto;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
}

.read-more svg {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

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

/* Blog Post Single */
.blog-post {
  padding: 80px 0;
  background-color: var(--background-color);
}

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

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

.post-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

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

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0;
}

.author-role {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.post-featured-image {
  margin-bottom: 40px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

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

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

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

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

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

.post-image {
  margin: 30px 0;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

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

.post-cta {
  margin-top: 40px;
  padding: 30px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid var(--border-color);
}

.post-cta h3 {
  margin-bottom: 15px;
}

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

.post-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tag {
  background-color: var(--background-alt);
  color: var(--text-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--border-color);
}

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

.post-share span {
  color: var(--text-light);
}

.social-share {
  display: flex;
  gap: 10px;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--background-alt);
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

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

.social-share a:hover svg {
  color: white;
}

.social-share svg {
  color: var(--text-color);
  transition: var(--transition);
}

/* Related Posts */
.related-posts {
  padding: 60px 0;
  background-color: var(--background-alt);
}

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

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

.related-card {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
}

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

.related-image {
  display: block;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.related-content {
  padding: 20px;
}

.related-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.related-content h3 a {
  color: var(--text-color);
  transition: var(--transition);
}

.related-content h3 a:hover {
  color: var(--primary-color);
}

.related-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Contact Page */
.contact-info {
  padding: 80px 0;
  background-color: var(--background-color);
}

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

.contact-card {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
}

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

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

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

.contact-card p {
  color: var(--text-light);
  margin-bottom: 10px;
}

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

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.contact-form-section > .container > p {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-light);
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background-color: var(--background-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 0;
}

.form-group.full-width {
  grid-column: span 2;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(42, 111, 219, 0.2);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 0.95rem;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: var(--transition);
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--primary-color);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

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

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

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

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

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

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

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

.faq-item {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  padding: 25px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

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

.modal-content {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  padding: 40px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.close-modal:hover {
  color: var(--text-color);
}

.modal-icon {
  margin-bottom: 20px;
  color: var(--success-color);
}

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

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

.btn-modal {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 500;
  transition: var(--transition);
}

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

/* About Page */
.about-story {
  padding: 80px 0;
  background-color: var(--background-color);
}

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

.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.about-text h2 {
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 20px;
}

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

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

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

.value-card {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
}

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

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

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

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

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

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

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-light);
}

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

.team-member {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  text-align: center;
}

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

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

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

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

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

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0 20px;
}

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

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

.social-links a:hover svg {
  color: white;
}

.social-links svg {
  color: var(--text-color);
  transition: var(--transition);
}

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

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

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

.achievement-card {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

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

.achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.achievement-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

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

.partners h2 {
  text-align: center;
  margin-bottom: 15px;
}

.partners > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-light);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  align-items: center;
}

.partner-logo {
  text-align: center;
  transition: var(--transition);
}

.partner-logo:hover {
  transform: scale(1.05);
}

.partner-logo svg {
  color: var(--text-color);
  margin-bottom: 15px;
}

.partner-logo p {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0;
}

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

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

.cta p {
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  nav ul {
    gap: 20px;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .post-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    margin: 0 auto;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: center;
  }
  
  .cookie-content p {
    text-align: center;
    margin-right: 0;
  }
  
  .cookie-buttons {
    margin-top: 15px;
    justify-content: center;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
    padding: 25px;
  }
  
  .form-group.full-width {
    grid-column: 1;
  }
  
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .post-share {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  header .container {
    padding: 15px 0;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
  
  .feature-grid, .destination-grid, .testimonial-slider, .post-grid, .related-grid, .contact-grid, .values-grid, .team-grid, .achievement-grid, .partner-logos {
    grid-template-columns: 1fr;
  }
  
  .post-author {
    flex-direction: column;
    text-align: center;
  }
  
  .author-img {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .author-info {
    text-align: center;
  }
}
