/* Base Styles */
:root {
  --primary-color: #2f80ed;
  --primary-dark: #1a65c9;
  --secondary-color: #34d399;
  --secondary-dark: #10b981;
  --tertiary-color: #f59e0b;
  --text-dark: #333333;
  --text-medium: #4b5563;
  --text-light: #6b7280;
  --background-light: #f9fafb;
  --background-white: #ffffff;
  --border-color: #e5e7eb;
  --error-color: #ef4444;
  --success-color: #10b981;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

section {
  padding: 5rem 0;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

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

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

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

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

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

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

/* Header and Navigation */
header {
  background-color: var(--background-white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

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

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

nav ul {
  display: flex;
  gap: 2rem;
}

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

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

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

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

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

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 8rem 0;
}

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

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

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

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

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  background-color: var(--background-light);
}

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

.feature-icon {
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

/* Destinations Section */
.destinations h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

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

.destination-info {
  padding: 1.5rem;
}

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

.destination-info p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

/* Calculator Section */
.calculator {
  background-color: var(--background-white);
  text-align: center;
}

.calculator h2 {
  margin-bottom: 0.5rem;
}

.calculator p {
  margin-bottom: 2rem;
  color: var(--text-medium);
}

.calculator-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--background-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.calculator-form {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
  background-color: var(--background-white);
}

.calculator-result {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.calculator-result h3 {
  color: white;
  margin-bottom: 1rem;
}

#cost-display {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.note {
  font-size: 0.875rem;
  opacity: 0.8;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

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

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

/* Terminology Section */
.terminology h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.terminology > .container > p {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-medium);
}

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

.term-card {
  background-color: var(--background-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.term-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

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

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

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

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.testimonial {
  flex: 1;
  min-width: 300px;
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  position: relative;
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 0;
}

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

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

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

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

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

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

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

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

/* Footer */
footer {
  background-color: #1f2937;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-about .footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.footer-contact address {
  font-style: normal;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-contact a {
  color: white;
}

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

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

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

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

.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: 1rem;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: white;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--background-white);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

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

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

.cookie-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.cookie-more-info {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.page-header h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.page-header p {
  margin-bottom: 0;
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Blog Page Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

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

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

.blog-image {
  display: block;
  height: 200px;
  overflow: hidden;
}

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

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

.blog-info {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-info h2 a {
  color: var(--text-dark);
  transition: var(--transition);
}

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

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

.read-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.read-more:hover {
  gap: 0.75rem;
}

/* Newsletter Section */
.newsletter {
  background-color: var(--background-white);
  padding: 4rem 0;
}

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

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

.newsletter p {
  margin-bottom: 2rem;
  color: var(--text-medium);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
}

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

.post-header {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

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

.post-author {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

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

.author-info {
  display: flex;
  flex-direction: column;
}

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

.author-title {
  font-size: 0.875rem;
  color: var(--text-light);
}

.post-featured-image {
  max-width: 1000px;
  margin: 0 auto 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

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

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

.post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
}

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

.post-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

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

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

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

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

.post-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background-color: rgba(47, 128, 237, 0.05);
  font-style: italic;
}

.post-content blockquote p {
  margin-bottom: 0;
}

.image-with-caption {
  margin: 2rem 0;
}

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

.caption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.post-tags span {
  font-weight: 600;
}

.post-tags a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(47, 128, 237, 0.1);
  color: var(--primary-color);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  transition: var(--transition);
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.post-share span {
  font-weight: 600;
}

.post-share a {
  color: var(--text-medium);
  transition: var(--transition);
}

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

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}

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

.nav-previous .btn, .nav-next .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Related Posts */
.related-posts {
  background-color: var(--background-light);
  padding: 4rem 0;
}

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

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

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

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

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

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

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

.related-card h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.125rem;
}

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

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

.related-meta {
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Services Page Styles */
.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  background-color: var(--background-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-card.reversed {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  min-width: 300px;
}

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

.service-content {
  flex: 1;
  min-width: 300px;
  padding: 2.5rem;
}

.service-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.service-features {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.service-features li {
  margin-bottom: 0.5rem;
}

.service-process {
  background-color: var(--background-light);
  text-align: center;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 2rem;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

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

.destinations-overview {
  background-color: var(--background-white);
}

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

.destination-category h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.destination-category ul {
  list-style: none;
}

.destination-category li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.destination-category li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.destinations-note {
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
  color: var(--text-medium);
}

/* About Page Styles */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

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

.mission-values {
  background-color: var(--background-light);
  text-align: center;
}

.mission-statement {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 2rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--radius-md);
}

.mission-statement p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
}

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

.value-card {
  background-color: var(--background-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

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

.value-icon {
  color: var(--primary-color);
  margin: 0 auto 1.5rem;
}

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

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

.approach-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.approach-content {
  flex: 1;
  min-width: 300px;
}

.approach-image {
  flex: 1;
  min-width: 300px;
}

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

.approach-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.approach-content li {
  margin-bottom: 0.5rem;
}

.team-section {
  background-color: var(--background-light);
  text-align: center;
}

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

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

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

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

.team-member h3 {
  margin: 1.5rem 0 0.25rem;
}

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

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

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.member-social a {
  color: var(--text-medium);
  transition: var(--transition);
}

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

.team-note {
  font-style: italic;
  color: var(--text-medium);
}

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

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

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

.credential {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--background-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

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

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

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

.credential-info p {
  margin-bottom: 0;
  color: var(--text-medium);
}

.recognition {
  background-color: var(--background-light);
}

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

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

.award {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--background-white);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

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

.award-year {
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.award-info h3 {
  margin-bottom: 0.25rem;
}

.award-info p {
  margin-bottom: 0;
  color: var(--text-medium);
}

/* Contact Page Styles */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

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

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

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

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

.info-content a {
  color: var(--text-dark);
  transition: var(--transition);
}

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

.note {
  font-size: 0.875rem;
  color: var(--text-light);
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  background-color: var(--background-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form .form-group {
  flex: 1 0 calc(50% - 0.75rem);
  margin-bottom: 0;
}

.contact-form .full-width {
  flex: 1 0 100%;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

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

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

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

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

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

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

.faq-section {
  background-color: var(--background-white);
}

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

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

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

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

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

.modal-content {
  background-color: var(--background-white);
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

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

.modal-body {
  padding: 3rem 2rem;
  text-align: center;
}

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

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

.modal-body p {
  margin-bottom: 2rem;
}

/* Comparison Table for Blog Post */
.comparison-table {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}

.comparison-column {
  flex: 1;
  min-width: 250px;
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.comparison-column h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.comparison-column ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.comparison-column li {
  margin-bottom: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--background-white);
    z-index: 200;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    padding: 2rem;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .calculator-container {
    flex-direction: column;
  }
  
  .service-card, .service-card.reversed {
    flex-direction: column;
  }
  
  .service-image {
    height: 250px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-previous, .nav-next {
    max-width: 100%;
  }
  
  .contact-form .form-group {
    flex: 1 0 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .cookie-actions button {
    width: 100%;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  animation: fadeIn 0.5s ease-in-out;
}
