/* Base Styles */
:root {
  --primary: #2c6e90;
  --primary-dark: #1e5a76;
  --secondary: #ffa500;
  --secondary-dark: #e59400;
  --accent: #f26c4f;
  --text-dark: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --medium-bg: #e9ecef;
  --border: #dee2e6;
  --success: #28a745;
  --error: #dc3545;
  --warning: #ffc107;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 5px;
  --border-radius-lg: 10px;
  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  font-size: 62.5%; /* 10px for easier rem calculations */
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 1.6rem;
}

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

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

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

ul {
  list-style-type: none;
}

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

section {
  padding: 8rem 0;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

.btn-tertiary {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border);
}

.btn-tertiary:hover {
  background-color: var(--light-bg);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

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

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

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

nav ul {
  display: flex;
}

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

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

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

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

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  background-image: url('images/1.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: var(--header-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
}

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

.hero-content p {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Parallax Effect */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Services Section */
.services {
  background-color: var(--light-bg);
  text-align: center;
}

.services h2 {
  margin-bottom: 4rem;
}

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

.service-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 15px var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow);
}

.service-card .icon {
  margin: 0 auto 2rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-bg);
  border-radius: 50%;
  color: var(--primary);
}

.service-card h3 {
  margin-bottom: 1.5rem;
}

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

/* Timeline Section */
.timeline-section {
  background-color: var(--white);
  padding: 8rem 0;
  text-align: center;
}

.timeline-section h2 {
  margin-bottom: 4rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background-color: var(--primary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 5rem;
  text-align: left;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

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

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border: 4px solid var(--primary);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
  top: 0;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
  top: 0;
}

.timeline-content {
  padding: 2rem;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 3px 10px var(--shadow);
  position: relative;
}

.timeline-content h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.timeline-content p {
  margin-bottom: 0;
}

/* Featured Destinations */
.featured-destinations {
  background-color: var(--medium-bg);
  text-align: center;
}

.featured-destinations h2 {
  margin-bottom: 4rem;
}

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

.destination-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  height: 400px;
}

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

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  text-align: left;
}

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

.destination-info p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

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

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

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.testimonial {
  background-color: var(--light-bg);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  max-width: 500px;
  box-shadow: 0 5px 15px var(--shadow);
  text-align: left;
}

.testimonial .quote {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

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

.client h4 {
  margin-bottom: 0.5rem;
}

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

/* Blog Preview */
.blog-preview {
  background-color: var(--light-bg);
  text-align: center;
}

.blog-preview h2 {
  margin-bottom: 4rem;
}

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

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

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow);
}

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

.blog-content {
  padding: 2rem;
  text-align: left;
}

.blog-content h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

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

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

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

.read-more:hover::after {
  margin-left: 1rem;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: var(--white);
  padding: 6rem 0 3rem;
}

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

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

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--white);
}

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-contact i {
  margin-right: 1rem;
}

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

.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%;
  color: var(--white);
  transition: var(--transition);
}

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

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

.copyright p {
  margin-bottom: 0;
}

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

.legal-links a {
  color: rgba(255, 255, 255, 0.8);
}

.legal-links a:hover {
  color: var(--white);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(44, 62, 80, 0.95);
  color: var(--white);
  padding: 2rem;
  z-index: 1001;
  box-shadow: 0 -5px 15px var(--shadow);
  display: none;
}

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

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

.cookie-buttons {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookie-more {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.cookie-more a {
  color: var(--secondary);
}

.cookie-more a:hover {
  text-decoration: underline;
}

/* Page Header */
.page-header {
  height: 40vh;
  min-height: 300px;
  background-image: url('images/3.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: var(--header-height);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.page-header .container {
  position: relative;
  z-index: 1;
}

/* Blog Posts */
.blog-posts {
  background-color: var(--white);
  padding: 8rem 0;
}

.blog-posts .blog-grid {
  grid-template-columns: 1fr;
  gap: 5rem;
}

.blog-posts .blog-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  box-shadow: 0 5px 15px var(--shadow);
}

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

.blog-posts .blog-image img {
  height: 100%;
  object-fit: cover;
}

.blog-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-lighter);
  font-size: 1.4rem;
}

.blog-posts .blog-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.blog-posts .blog-content h2 a {
  color: var(--text-dark);
}

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

.blog-posts .blog-content p {
  margin-bottom: 2rem;
}

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

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
}

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

.newsletter p {
  margin-bottom: 3rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.6rem;
}

.privacy-note {
  font-size: 1.4rem;
  opacity: 0.8;
  margin-bottom: 0;
}

.privacy-note a {
  color: var(--white);
  text-decoration: underline;
}

/* Blog Post */
.blog-post {
  background-color: var(--white);
}

.post-header {
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  margin-top: var(--header-height);
  position: relative;
}

.post-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.post-header .container {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}

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

.post-header .post-meta {
  color: var(--white);
}

.post-header h1 {
  color: var(--white);
  max-width: 800px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.post-intro {
  font-size: 2rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 3rem;
}

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

.image-caption {
  font-size: 1.4rem;
  color: var(--text-lighter);
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
}

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

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

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

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

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

.feature-list {
  padding-left: 0;
}

.feature-list li {
  padding-left: 2.5rem;
  position: relative;
  list-style-type: none;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.conclusion {
  margin-top: 4rem;
  padding: 3rem;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary);
}

.author-box {
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
}

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

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

.author-info p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 1.5rem;
}

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

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

.post-nav-links a {
  font-weight: 600;
}

.post-nav-links span {
  transition: var(--transition);
}

.prev-post:hover span {
  margin-right: 0.5rem;
}

.next-post:hover span, .back-to-blog:hover span {
  margin-left: 0.5rem;
}

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

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

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

.related-post {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow);
}

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

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

.related-post h4 a {
  color: var(--text-dark);
}

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

/* Our Story */
.our-story {
  background-color: var(--white);
  padding: 8rem 0;
}

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

.story-text h2 {
  margin-bottom: 3rem;
}

.story-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px var(--shadow);
}

/* Mission & Values */
.mission-values {
  background-color: var(--light-bg);
  text-align: center;
}

.mission-values h2 {
  margin-bottom: 4rem;
}

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

.value-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 15px var(--shadow);
  transition: var(--transition);
}

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

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

.value-card h3 {
  margin-bottom: 1.5rem;
}

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

/* Team Section */
.team-section {
  background-color: var(--white);
  text-align: center;
}

.team-section h2 {
  margin-bottom: 1.5rem;
}

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

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

.team-card {
  text-align: left;
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.team-card h3 {
  margin-bottom: 0.5rem;
}

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

.team-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

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

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

/* Approach Section */
.approach-section {
  background-color: var(--light-bg);
  text-align: center;
}

.approach-section h2 {
  margin-bottom: 4rem;
}

.approach-content {
  max-width: 900px;
  margin: 0 auto;
}

.approach-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  text-align: left;
}

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

.approach-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--primary);
  box-shadow: 0 5px 15px var(--shadow);
}

.approach-text h3 {
  margin-bottom: 1.5rem;
}

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

/* Certifications */
.certifications {
  background-color: var(--white);
  text-align: center;
}

.certifications h2 {
  margin-bottom: 4rem;
}

.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

.certification-item {
  text-align: center;
}

.certification-item img {
  height: 80px;
  width: auto;
  margin: 0 auto 1.5rem;
  opacity: 0.8;
  transition: var(--transition);
}

.certification-item:hover img {
  opacity: 1;
}

.certification-item p {
  font-weight: 600;
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  background-image: url('images/2.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  color: var(--white);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-content p {
  margin-bottom: 3rem;
  font-size: 1.8rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--white);
  padding: 8rem 0;
}

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

.contact-info h2, .contact-form h2 {
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 3rem;
  color: var(--text-light);
}

.info-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-bg);
  border-radius: 50%;
  color: var(--primary);
}

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

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

.info-content .note {
  font-size: 1.4rem;
  color: var(--text-lighter);
  font-style: italic;
  margin-bottom: 1rem;
}

.social-connect {
  margin-top: 4rem;
}

.social-connect h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-form form {
  background-color: var(--light-bg);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
}

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

.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(--border);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

/* Map Section */
.map-section {
  background-color: var(--light-bg);
  text-align: center;
}

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

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

/* FAQ Section */
.faq-section {
  background-color: var(--white);
  text-align: center;
}

.faq-section h2 {
  margin-bottom: 4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  text-align: left;
}

.faq-item {
  background-color: var(--light-bg);
  padding: 2.5rem;
  border-radius: var(--border-radius);
}

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

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

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

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

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

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

.modal-icon {
  color: var(--success);
  margin-bottom: 2rem;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  html {
    font-size: 58%;
  }
  
  .hero-content h1 {
    font-size: 4.8rem;
  }
  
  .hero-content p {
    font-size: 2rem;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    left: 0 !important;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item .timeline-dot {
    left: 21px !important;
    top: 0;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .story-text {
    order: 2;
  }
  
  .story-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 56%;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px var(--shadow);
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }
  
  nav.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  nav ul {
    flex-direction: column;
    gap: 2rem;
  }
  
  nav ul li {
    margin-left: 0;
  }
  
  .hero-content h1 {
    font-size: 4.2rem;
  }
  
  .blog-posts .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-posts .blog-image {
    height: 250px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .approach-item {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 54%;
  }
  
  .hero-content h1 {
    font-size: 3.6rem;
  }
  
  .hero-content p {
    font-size: 1.8rem;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .post-nav-links {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}
