/* === Base Styles === */
:root {
  --primary-color: #2c7e86;
  --primary-dark: #1e5a5f;
  --primary-light: #60bbc4;
  --secondary-color: #e67e22;
  --secondary-dark: #b35c11;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-alt: #f8f9fa;
  --border-color: #e1e1e1;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition-speed: 0.3s;
  --container-width: 1200px;
  --border-radius: 8px;
  --shadow: 0 4px 6px var(--shadow-color);
}

/* Dark Theme */
.dark-theme {
  --primary-color: #3a97a0;
  --primary-dark: #2c7e86;
  --primary-light: #7fd0d9;
  --text-color: #f1f1f1;
  --text-light: #b8b8b8;
  --background-color: #1a1a1a;
  --background-alt: #2d2d2d;
  --border-color: #444444;
  --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Blue Theme */
.blue-theme {
  --primary-color: #3498db;
  --primary-dark: #2980b9;
  --primary-light: #5dade2;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #f5f9fc;
  --background-alt: #e8f4fc;
  --border-color: #d0e5f5;
  --shadow-color: rgba(52, 152, 219, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px = 1rem */
}

body {
  font-family: var(--font-main);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  transition: background-color var(--transition-speed), color var(--transition-speed);
}

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

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

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

ul {
  list-style: none;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-color);
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 1.5rem auto 0;
}

/* === Header === */
header {
  background-color: var(--background-color);
  box-shadow: 0 2px 10px var(--shadow-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color var(--transition-speed);
}

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

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

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1.5rem;
  object-fit: cover;
}

.logo-container h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

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

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

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

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

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle span {
  font-size: 1.4rem;
  color: var(--text-light);
}

.theme-btn {
  background: none;
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition-speed);
}

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

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

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

.hero-content h2 {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

/* === Buttons === */
.btn-primary {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  transition: background-color var(--transition-speed);
  border: none;
  cursor: pointer;
}

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

.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  transition: all var(--transition-speed);
}

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

.center-btn {
  text-align: center;
  margin-top: 4rem;
}

/* === Features Section === */
.features {
  padding: 8rem 0;
  background-color: var(--background-alt);
}

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

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

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

.feature-icon {
  margin: 0 auto 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(44, 126, 134, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

/* === Destinations Section === */
.destinations {
  padding: 8rem 0;
}

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

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

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

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

.destination-content {
  padding: 2rem;
}

.destination-content h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

/* === Latest Posts Section === */
.latest-posts {
  padding: 8rem 0;
  background-color: var(--background-alt);
}

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

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

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

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

.post-content {
  padding: 2rem;
}

.post-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.read-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

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

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

/* === Testimonials Section === */
.testimonials {
  padding: 8rem 0;
  text-align: center;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background-color: var(--background-color);
  padding: 4rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  margin: 0 auto;
}

.quote-icon {
  color: var(--primary-light);
  margin-bottom: 2rem;
  opacity: 0.7;
}

.testimonial p {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.testimonial-author h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
}

.testimonial-author p {
  font-size: 1.4rem;
  margin-bottom: 0;
  font-style: normal;
}

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

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

.newsletter-content h3 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

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

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

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

.newsletter-form button {
  padding: 0 2rem;
  background-color: var(--secondary-color);
}

.newsletter-form button:hover {
  background-color: var(--secondary-dark);
}

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

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

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.footer-about h3,
.footer-contact h3,
.footer-links h3,
.footer-legal h3,
.footer-social h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.footer-about p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-contact address {
  font-style: normal;
  color: var(--text-light);
}

.footer-contact svg,
.footer-social svg {
  margin-right: 0.8rem;
  vertical-align: middle;
}

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

.footer-contact svg {
  margin-top: 0.3rem;
}

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

.footer-links a,
.footer-legal a {
  color: var(--text-light);
  transition: color var(--transition-speed);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--primary-color);
}

.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(44, 126, 134, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  transition: all var(--transition-speed);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 1.4rem;
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  z-index: 1001;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.cookie-content {
  text-align: center;
}

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

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

.btn-cookie {
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--transition-speed);
  border: 1px solid var(--border-color);
}

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

.btn-cookie.accept:hover {
  background-color: #219653;
}

.btn-cookie.customize {
  background-color: var(--background-color);
  color: var(--text-color);
}

.btn-cookie.customize:hover {
  background-color: var(--background-alt);
}

.btn-cookie.decline {
  background-color: var(--background-color);
  color: var(--text-color);
}

.btn-cookie.decline:hover {
  background-color: var(--background-alt);
}

.cookie-policy-link {
  font-size: 1.4rem;
  text-decoration: underline;
}

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

.page-header h2 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.8rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* === Blog Page === */
.blog-content {
  padding: 8rem 0;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

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

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

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

.blog-text {
  padding: 3rem 3rem 3rem 0;
}

.blog-category {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: rgba(44, 126, 134, 0.1);
  color: var(--primary-color);
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.blog-text h3 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-meta {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.blog-excerpt {
  color: var(--text-color);
  margin-bottom: 2rem;
}

/* === Blog Post === */
.blog-post {
  padding: 8rem 0;
}

.post-header {
  text-align: center;
  margin-bottom: 4rem;
}

.post-header h2 {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.post-meta {
  color: var(--text-light);
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

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

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

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

.post-content p {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  line-height: 1.8;
}

.post-content h3 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  margin: 4rem 0 2rem;
}

.post-content h4 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  margin: 3rem 0 1.5rem;
}

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

.post-content ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style-type: none;
}

.post-content ul li:before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1.5rem;
  margin-left: -1.5rem;
}

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

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

.image-caption {
  background-color: var(--background-alt);
  padding: 1.5rem;
  font-size: 1.4rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-bottom: 0;
}

.post-tip-box {
  background-color: rgba(44, 126, 134, 0.1);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.post-tip-box h4 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1rem;
}

.post-tip-box p, .post-tip-box ul {
  margin-bottom: 1rem;
}

.post-tip-box ul:last-child {
  margin-bottom: 0;
}

.post-share {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.post-share span {
  margin-right: 1.5rem;
  font-weight: 500;
}

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

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

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

.post-author-bio {
  margin: 6rem 0;
  padding: 3rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.related-posts h3 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 3rem;
  text-align: center;
}

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

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

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

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

.related-post h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  padding: 1.5rem;
  font-weight: 500;
  color: var(--text-color);
}

/* === Services Page === */
.services-intro {
  padding: 6rem 0;
  text-align: center;
}

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

.intro-content p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.services-grid {
  padding: 0 0 8rem;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 6rem;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card:last-child {
  margin-bottom: 0;
}

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

.service-content {
  padding: 4rem 4rem 4rem 0;
}

.service-content h3 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

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

.service-content h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.service-content ul {
  margin-bottom: 3rem;
}

.service-content ul li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.service-content ul li:before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.service-cta {
  margin-top: 3rem;
}

.process {
  padding: 8rem 0;
  background-color: var(--background-alt);
}

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

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.step-content p {
  color: var(--text-light);
}

.services-testimonials {
  background-color: var(--background-color);
}

.cta-section {
  padding: 8rem 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;
  color: white;
  text-align: center;
}

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

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

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

/* === About Page === */
.about-intro {
  padding: 6rem 0;
}

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

.about-intro-text h3 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.about-intro-text p {
  margin-bottom: 2rem;
  font-size: 1.7rem;
}

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

.values {
  padding: 8rem 0;
  background-color: var(--background-alt);
}

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

.value-card {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.value-icon {
  margin: 0 auto 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(44, 126, 134, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.value-card h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.team {
  padding: 8rem 0;
}

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

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

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

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow);
}

.team-member h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

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

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(44, 126, 134, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  transition: all var(--transition-speed);
}

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

.credentials {
  padding: 8rem 0;
  background-color: var(--background-alt);
}

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

.credentials-text p {
  margin-bottom: 2rem;
  font-size: 1.7rem;
}

.credentials-text ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.credentials-text ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style-type: none;
  font-size: 1.6rem;
}

.credentials-text ul li:before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1.5rem;
  margin-left: -1.5rem;
}

.credentials-logos {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.work-with-us {
  padding: 6rem 0;
}

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

.work-content h3 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.work-content p {
  margin-bottom: 2rem;
  font-size: 1.7rem;
}

.work-content ul {
  text-align: left;
  max-width: 500px;
  margin: 0 auto 3rem;
}

.work-content ul li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
  font-size: 1.6rem;
}

.work-content ul li:before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* === Contact Page === */
.contact-section {
  padding: 8rem 0;
}

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

.contact-info h3,
.contact-form-container h3 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.contact-info p {
  margin-bottom: 3rem;
  font-size: 1.7rem;
}

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

.info-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(44, 126, 134, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  flex-shrink: 0;
  padding-top: 1.2rem;
}

.info-content h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

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

.social-connect h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-main);
  font-size: 1.6rem;
  transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

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

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

.contact-form button {
  grid-column: span 2;
  margin-top: 2rem;
}

.map-section {
  padding: 0 0 8rem;
}

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

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

.faq-section {
  padding: 0 0 8rem;
}

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

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

.faq-item h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

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

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

.modal.show {
  display: flex;
  animation: fadeIn 0.3s forwards;
}

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

.modal-content {
  background-color: var(--background-color);
  margin: 0 auto;
  padding: 4rem;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.5s forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

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

.thank-you-message svg {
  color: var(--success-color);
  margin-bottom: 2rem;
  width: 60px;
  height: 60px;
}

.thank-you-message h3 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.thank-you-message p {
  margin-bottom: 2rem;
  font-size: 1.7rem;
}

.thank-you-message button {
  margin-top: 1rem;
}

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

@media (max-width: 992px) {
  html {
    font-size: 56%;
  }
  
  .about-intro-content,
  .credentials-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .service-card {
    grid-template-columns: 1fr;
  }
  
  .service-content {
    padding: 3rem;
  }
  
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 54%;
  }
  
  header .container {
    flex-direction: column;
    padding: 2rem;
  }
  
  .logo-container {
    margin-bottom: 1.5rem;
  }
  
  nav ul {
    gap: 1.5rem;
  }
  
  .theme-toggle {
    margin-top: 1.5rem;
  }
  
  .hero-content h2 {
    font-size: 3.8rem;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-text {
    padding: 3rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width,
  .contact-form button {
    grid-column: span 1;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .post-author-bio {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 52%;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-content h2 {
    font-size: 3.2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-header h2 {
    font-size: 2.8rem;
  }
  
  .post-content h3 {
    font-size: 2.4rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
