/* Global Styles */
:root {
  --primary-color: #2a6f97;
  --primary-dark: #1a4971;
  --primary-light: #4e95c4;
  --secondary-color: #f4a261;
  --secondary-dark: #e76f51;
  --accent-color: #2a9d8f;
  --background-light: #f8f9fa;
  --background-dark: #212529;
  --text-dark: #343a40;
  --text-light: #f8f9fa;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --success-color: #2a9d8f;
  --error-color: #e63946;
  --warning-color: #ffb703;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-large: 0 10px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --border-radius: 5px;
  --container-width: 1200px;
  --section-spacing: 5rem;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

button, .btn-primary, .btn-secondary {
  cursor: pointer;
  font-family: inherit;
  font-size: 1.6rem;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-weight: 600;
  display: inline-block;
  text-align: center;
  border: none;
  outline: none;
}

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

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

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

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

section {
  padding: 8rem 0;
}

/* Header and Navigation */
header {
  background-color: var(--background-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

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

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

.logo img {
  height: 4rem;
  width: auto;
  margin-right: 1rem;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin-left: 3rem;
}

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

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

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

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 3rem;
  height: 2.1rem;
  cursor: pointer;
}

.mobile-menu-btn span {
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Sections */
.hero, .blog-hero, .about-hero, .contact-hero, .blog-post-hero {
  height: 70vh;
  min-height: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  margin-top: 8rem;
  overflow: hidden;
}

.hero {
  background-image: url('images/1.jpg');
}

.blog-hero {
  background-image: url('images/7.jpg');
  height: 50vh;
  min-height: 40rem;
}

.about-hero {
  background-image: url('images/28.jpg');
  height: 50vh;
  min-height: 40rem;
}

.contact-hero {
  background-image: url('images/29.jpg');
  height: 40vh;
  min-height: 30rem;
}

.blog-post-hero {
  height: auto;
  min-height: auto;
  background-color: var(--primary-color);
  padding: 6rem 0 3rem;
  margin-top: 8rem;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .container, .blog-hero .container, .about-hero .container, .contact-hero .container, .blog-post-hero .container {
  position: relative;
  z-index: 2;
}

.hero h1, .blog-hero h1, .about-hero h1, .contact-hero h1 {
  font-size: 5.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p, .blog-hero p, .about-hero p, .contact-hero p {
  font-size: 2.2rem;
  max-width: 70rem;
  margin: 0 auto 3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-post-hero h1 {
  font-size: 4.2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.blog-post-hero .subtitle {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.85);
}

.blog-post-content .post-meta {
  justify-content: flex-start;
  color: var(--text-muted);
}

/* Features Section */
.features {
  background-color: var(--background-light);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.feature-box {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.feature-box .icon {
  height: 7rem;
  width: 7rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
}

.feature-box .icon svg {
  height: 4rem;
  width: 4rem;
}

.feature-box h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/* Destination Highlight Section */
.destination-highlight {
  background-color: var(--gray-100);
}

.destination-highlight .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.text-content h2 {
  margin-bottom: 2rem;
}

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

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

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

/* Things You Didn't Know Section */
.things-you-didnt-know {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 8rem 0;
}

.things-you-didnt-know h2 {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 5rem;
}

.facts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.fact-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.fact-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.fact-card .number {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  display: block;
}

.fact-card h3 {
  color: var(--text-light);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/* Daily Inspiration Section */
.daily-inspiration {
  background-color: var(--background-light);
}

.daily-inspiration h2 {
  text-align: center;
  margin-bottom: 5rem;
}

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

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

.inspiration-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inspiration-text h3 {
  font-size: 2.8rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.inspiration-text .author {
  font-size: 1.8rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.inspiration-text .reflection {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}

/* Latest Posts Section */
.latest-posts {
  background-color: var(--gray-100);
}

.latest-posts h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

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

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

.post-image {
  height: 25rem;
  overflow: hidden;
}

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

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

.post-content {
  padding: 2.5rem;
}

.post-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.post-content .excerpt {
  margin-bottom: 2rem;
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-right: 2rem;
}

.read-more:after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.read-more:hover:after {
  right: -5px;
}

.view-all {
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--background-light);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 5rem;
}

.testimonial-slide {
  max-width: 80rem;
  margin: 0 auto;
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 4rem;
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial-slide .quote {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  color: var(--primary-color);
}

.testimonial-slide .quote svg {
  width: 100%;
  height: 100%;
}

.testimonial-slide p {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 3rem;
}

.client {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 2rem;
}

.client-info h4 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.client-info p {
  font-size: 1.6rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 6rem 0 2rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 4rem;
  width: auto;
  margin-right: 1rem;
}

.footer-logo h3 {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.footer-column p {
  font-size: 1.6rem;
  color: var(--gray-400);
}

.reg-number {
  font-size: 1.4rem;
  color: var(--gray-500);
}

.footer-column h4 {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-column ul li a {
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--text-light);
}

.footer-column address {
  font-style: normal;
  color: var(--gray-400);
}

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

.footer-column address svg {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transition: var(--transition);
}

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

.social-links svg {
  width: 2rem;
  height: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 2rem;
}

.copyright {
  font-size: 1.4rem;
  color: var(--gray-500);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 1.4rem;
  color: var(--gray-400);
}

.footer-links a:hover {
  color: var(--text-light);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 2rem;
  z-index: 9999;
  display: flex;
  justify-content: center;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 120rem;
  text-align: center;
}

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

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.btn-accept {
  background-color: var(--success-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-customize {
  background-color: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid white;
}

.btn-decline {
  background-color: transparent;
  color: var(--gray-400);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--gray-600);
}

.cookie-policy-link {
  font-size: 1.4rem;
  color: var(--gray-400);
}

.cookie-policy-link a {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Blog Page Styles */
.blog-content {
  padding-top: 5rem;
}

.blog-content .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
}

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

.blog-post {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.blog-post .post-image {
  height: 100%;
}

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

.post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.post-meta .date, .post-meta .category {
  font-size: 1.4rem;
  color: var(--text-muted);
}

.blog-post h2 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}

.read-more-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

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

.blog-sidebar {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
}

.blog-sidebar h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.sidebar-style {
  display: block;
}

.sidebar-style .inspiration-image {
  margin-bottom: 2rem;
}

.sidebar-style h4 {
  font-size: 2rem;
}

.sidebar-facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-fact {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.sidebar-fact span {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  flex-shrink: 0;
  line-height: 1;
}

.sidebar-fact p {
  margin-bottom: 0;
  font-size: 1.5rem;
}

/* Blog Post Page Styles */
.post-main-image {
  margin-bottom: 4rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-text {
  font-size: 1.8rem;
  line-height: 1.7;
  max-width: 80rem;
  margin: 0 auto 5rem;
}

.post-text .intro {
  font-size: 2rem;
  color: var(--gray-700);
  font-weight: 500;
  margin-bottom: 3rem;
}

.post-text h2 {
  font-size: 3rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.post-text h3 {
  font-size: 2.4rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.post-text ul, .post-text ol {
  margin-bottom: 3rem;
}

.post-text li {
  margin-bottom: 1rem;
}

.post-text .image-with-caption {
  margin: 4rem 0;
}

.post-text .caption {
  font-size: 1.5rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

.post-text .conclusion {
  font-size: 2rem;
  color: var(--gray-700);
  font-weight: 500;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-300);
}

.author-box {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 5rem;
  padding: 3rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
}

.author-box img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.author-info p {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  padding: 2rem 0;
}

.post-nav-previous, .post-nav-next {
  max-width: 45%;
}

.post-nav-next {
  text-align: right;
}

.nav-label {
  display: block;
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.nav-title {
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.related-posts {
  margin-bottom: 5rem;
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 3rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

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

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

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

.related-post h4 {
  font-size: 1.8rem;
  padding: 1.5rem;
  margin-bottom: 0;
}

.related-post .read-more {
  display: block;
  text-align: right;
  padding: 0 1.5rem 1.5rem;
}

/* About Page Styles */
.about-mission {
  background-color: white;
}

.about-mission .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mission-content h2 {
  margin-bottom: 2.5rem;
}

.mission-content p {
  font-size: 1.8rem;
}

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

.about-history {
  background-color: var(--gray-100);
}

.about-history h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.timeline {
  position: relative;
  max-width: 120rem;
  margin: 0 auto;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 6rem;
  width: 45%;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:before {
  content: '';
  position: absolute;
  top: 1rem;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.timeline-item:nth-child(odd):before {
  right: -10%;
}

.timeline-item:nth-child(even):before {
  left: -10%;
}

.year {
  position: absolute;
  top: 0;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.timeline-item:nth-child(odd) .year {
  right: -20%;
}

.timeline-item:nth-child(even) .year {
  left: -20%;
}

.timeline-item .content {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.timeline-item .content h3 {
  margin-bottom: 1rem;
}

.team-section {
  background-color: white;
}

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

.team-intro {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 5rem;
  font-size: 1.8rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 4rem;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
}

.team-member h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

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

.team-member .social-links {
  justify-content: center;
  margin-top: 1.5rem;
}

.values-section {
  background-color: var(--gray-100);
}

.values-section h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.value-item {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.value-item .icon {
  width: 5rem;
  height: 5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.value-item h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.recognition-section {
  background-color: white;
}

.recognition-section h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.recognition-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.awards h3, .partnerships h3 {
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
}

.awards ul, .partnerships ul {
  font-size: 1.8rem;
}

.awards li, .partnerships li {
  margin-bottom: 1.5rem;
}

.cta-section {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
}

.cta-section p {
  font-size: 2rem;
  max-width: 70rem;
  margin: 0 auto 3rem;
}

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

.cta-section .btn-primary:hover {
  background-color: var(--gray-200);
}

/* Contact Page Styles */
.contact-content {
  background-color: white;
}

.contact-intro {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 5rem;
}

.contact-intro h2 {
  margin-bottom: 2.5rem;
}

.contact-intro p {
  font-size: 1.8rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.contact-form-container {
  background-color: var(--gray-100);
  padding: 3rem;
  border-radius: var(--border-radius);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

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

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

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

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 0.4rem;
  width: auto;
}

.newsletter-checkbox {
  margin-top: 1rem;
}

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

.info-card {
  background-color: var(--gray-100);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.info-card .icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.info-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.info-card address {
  font-style: normal;
  margin-bottom: 1.5rem;
}

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

.info-card .note {
  font-size: 1.4rem;
  color: var(--text-muted);
}

.social-links-horizontal {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.map-section {
  background-color: var(--gray-100);
}

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

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

.faq-section {
  background-color: white;
}

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

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

.faq-item {
  background-color: var(--gray-100);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.faq-item h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.faq-item p {
  margin-bottom: 0;
}

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  padding: 4rem;
  border-radius: var(--border-radius);
  max-width: 50rem;
  width: 90%;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  color: var(--success-color);
}

.modal-icon svg {
  width: 100%;
  height: 100%;
}

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

.modal-content p {
  margin-bottom: 3rem;
}

/* Media Queries */
@media (max-width: 1200px) {
  html {
    font-size: 58%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 56%;
  }
  
  .destination-highlight .container, 
  .inspiration-content,
  .about-mission .container,
  .recognition-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .timeline:before {
    left: 3rem;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 6rem;
  }
  
  .timeline-item:nth-child(even) {
    margin-left: 0;
  }
  
  .timeline-item:before {
    left: 0;
  }
  
  .timeline-item:nth-child(odd):before,
  .timeline-item:nth-child(even):before {
    left: 2rem;
  }
  
  .timeline-item:nth-child(odd) .year,
  .timeline-item:nth-child(even) .year {
    left: 0;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  }
  
  .blog-content .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 54%;
  }
  
  header .container {
    padding: 1.5rem;
  }
  
  nav {
    position: fixed;
    top: 8rem;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--background-light);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  nav.active {
    height: auto;
    padding: 2rem 0;
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
    padding: 0 2rem;
  }
  
  nav li {
    margin: 1rem 0;
    width: 100%;
    text-align: center;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .features .container {
    grid-template-columns: 1fr;
  }
  
  .hero h1, .blog-hero h1, .about-hero h1, .contact-hero h1 {
    font-size: 3.8rem;
  }
  
  .hero p, .blog-hero p, .about-hero p, .contact-hero p {
    font-size: 1.8rem;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .blog-post .post-image {
    height: 25rem;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 52%;
  }
  
  .hero, .blog-hero, .about-hero, .contact-hero {
    min-height: 40rem;
  }
  
  .hero h1, .blog-hero h1, .about-hero h1, .contact-hero h1 {
    font-size: 3.2rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 2rem;
  }
  
  .post-nav-previous, .post-nav-next {
    max-width: 100%;
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
