/* Base Styles */
:root {
  --primary-color: #3a7563;
  --primary-dark: #2c5a4c;
  --primary-light: #4c8c77;
  --secondary-color: #d6a769;
  --secondary-dark: #c49755;
  --secondary-light: #e4bb83;
  --dark-color: #333333;
  --dark-medium: #555555;
  --light-color: #ffffff;
  --light-medium: #f8f8f8;
  --light-gray: #e9e9e9;
  --medium-gray: #cccccc;
  --text-color: #404040;
  --beige-light: #f5f2ed;
  --beige-medium: #ebe6dd;
  --slate-blue: #5d7b8a;
  --slate-blue-dark: #476978;
  --border-radius: 6px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --section-spacing: 5rem;
  --component-spacing: 2rem;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

li {
  margin-bottom: 0.5rem;
}

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

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background-color: var(--primary-color);
  color: var(--light-color);
  font-weight: 600;
  border-radius: var(--border-radius);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.4;
  font-size: 1rem;
}

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

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

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

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

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

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

/* Header Styles */
header {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 1rem;
}

.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.nav-links li {
  margin: 0 0 0 1.75rem;
}

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

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

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

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

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

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background-color: var(--beige-light);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

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

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

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

.feature-card {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

/* Quote Block */
.quote-block {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 4rem 0;
  text-align: center;
}

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

.quote-title {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.quote-block blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-block cite {
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  display: block;
  margin-top: 1rem;
}

/* Recent Blog Section */
.recent-blog {
  padding: var(--section-spacing) 0;
  background-color: var(--light-medium);
}

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

.blog-posts-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.blog-card {
  background: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
  position: relative;
  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);
}

.new-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--secondary-color);
  color: var(--light-color);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  z-index: 1;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.blog-content p {
  color: var(--dark-medium);
  margin-bottom: 1rem;
}

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

.read-more:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

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

.blog-cta {
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  padding: var(--section-spacing) 0;
  background-color: var(--beige-light);
}

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

.testimonials-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  /* Hide scrollbar but allow scrolling */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.testimonials-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.testimonial {
  flex: 0 0 auto;
  width: calc(50% - 1rem);
  min-width: 300px;
}

.testimonial-content {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

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

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

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

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

.author-details p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--dark-medium);
  font-style: normal;
}

/* CTA Section */
.cta-section {
  padding: var(--section-spacing) 0;
  background-color: var(--slate-blue);
  color: var(--light-color);
  text-align: center;
}

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

.cta-section h2 {
  color: var(--light-color);
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-section .btn {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--dark-color);
  font-weight: 700;
}

.cta-section .btn:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

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

.footer-logo p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

.footer-column {
  flex: 1;
  min-width: 160px;
}

.footer-column h4 {
  color: var(--light-color);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

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

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

.footer-column a {
  color: var(--light-medium);
  opacity: 0.9;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--secondary-color);
  opacity: 1;
  text-decoration: none;
}

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

.contact-info svg {
  margin-top: 0.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

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

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

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

.cookie-content p {
  margin-bottom: 1.5rem;
  max-width: 80%;
}

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

.btn-cookie {
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

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

.btn-cookie.customize {
  background-color: transparent;
  border: 1px solid var(--light-color);
  color: var(--light-color);
}

.btn-cookie.customize:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-cookie.decline {
  background-color: transparent;
  color: var(--light-color);
  text-decoration: underline;
}

.btn-cookie.decline:hover {
  text-decoration: none;
}

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

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

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

/* About Page Styles */
.about-hero {
  background-color: var(--beige-light);
  padding: 4rem 0;
  text-align: center;
}

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

.about-hero h1 {
  margin-bottom: 1.5rem;
}

.about-hero p {
  font-size: 1.125rem;
}

.about-story {
  padding: var(--section-spacing) 0;
}

.about-columns {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-image {
  flex: 1;
}

.about-content {
  flex: 1;
}

.about-values {
  padding: var(--section-spacing) 0;
  background-color: var(--light-medium);
}

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

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

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

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

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

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

.value-card p {
  margin-bottom: 0;
}

.team-section {
  padding: var(--section-spacing) 0;
}

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

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

.team-member {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

.team-member p {
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-medium);
}

.team-member p:last-of-type {
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

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

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

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

.milestones {
  padding: var(--section-spacing) 0;
  background-color: var(--beige-light);
}

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

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

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

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

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

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: 2;
  border: 4px solid var(--beige-light);
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 1.5rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.timeline-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: var(--primary-color);
}

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

.about-quote {
  background-color: var(--slate-blue);
}

.about-quote .quote-title {
  color: var(--light-color);
  opacity: 0.9;
}

/* Blog Page Styles */
.blog-hero {
  background-color: var(--beige-light);
  padding: 4rem 0;
  text-align: center;
}

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

.blog-hero h1 {
  margin-bottom: 1.5rem;
}

.blog-hero p {
  font-size: 1.125rem;
}

.blog-content {
  padding: var(--section-spacing) 0;
}

.blog-layout {
  display: flex;
  gap: 3rem;
}

.blog-main {
  flex: 3;
  min-width: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}

.blog-sidebar {
  flex: 1;
  min-width: 280px;
}

.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-date, .blog-category {
  font-size: 0.875rem;
  color: var(--dark-medium);
}

.blog-category {
  background-color: var(--beige-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.sidebar-widget {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--beige-light);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--light-gray);
}

.category-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: var(--dark-color);
}

.category-list a:hover {
  color: var(--primary-color);
}

.category-list span {
  color: var(--dark-medium);
  font-size: 0.875rem;
}

.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.popular-post {
  display: flex;
  gap: 1rem;
}

.popular-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.popular-post h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.popular-post span {
  font-size: 0.8125rem;
  color: var(--dark-medium);
}

.subscribe-form {
  margin-top: 1rem;
}

.subscribe-form input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.subscribe-form .btn {
  width: 100%;
}

.quote-widget {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.quote-widget h3 {
  color: var(--secondary-color);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.quote-widget blockquote {
  font-style: italic;
  margin-bottom: 1rem;
}

.quote-widget cite {
  display: block;
  font-style: normal;
  opacity: 0.8;
  font-size: 0.9375rem;
  text-align: right;
}

/* Services Page Styles */
.services-hero {
  background-color: var(--beige-light);
  padding: 4rem 0;
  text-align: center;
}

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

.services-hero h1 {
  margin-bottom: 1.5rem;
}

.services-hero p {
  font-size: 1.125rem;
}

.services-overview {
  padding: var(--section-spacing) 0;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

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

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

.pricing {
  padding: var(--section-spacing) 0;
  background-color: var(--beige-light);
}

.pricing h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  transform: scale(1.05);
  z-index: 1;
  border: 2px solid var(--primary-color);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--light-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.pricing-header {
  padding: 2rem;
  text-align: center;
  background-color: var(--beige-light);
}

.pricing-header h3 {
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--dark-color);
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.period {
  margin-top: 0.5rem;
  font-size: 1rem;
  opacity: 0.7;
}

.pricing-features {
  padding: 2rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

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

.pricing-cta {
  padding: 0 2rem 2rem;
  text-align: center;
}

.pricing-cta .btn {
  width: 100%;
}

.services-process {
  padding: var(--section-spacing) 0;
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.process-step {
  flex: 1;
  min-width: 220px;
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
}

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

.process-step h3 {
  margin-bottom: 1rem;
}

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

.testimonials-section {
  padding: var(--section-spacing) 0;
  background-color: var(--beige-light);
}

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

.services-testimonials {
  justify-content: center;
}

.services-testimonials .testimonial {
  width: calc(33.33% - 1.35rem);
}

.faq-section {
  padding: var(--section-spacing) 0;
}

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

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

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

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

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

.services-quote {
  background-color: var(--slate-blue);
}

.services-quote .quote-title {
  color: var(--light-color);
  opacity: 0.9;
}

/* Contact Page Styles */
.contact-hero {
  background-color: var(--beige-light);
  padding: 4rem 0;
  text-align: center;
}

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

.contact-hero h1 {
  margin-bottom: 1.5rem;
}

.contact-hero p {
  font-size: 1.125rem;
}

.contact-content {
  padding: var(--section-spacing) 0;
}

.contact-layout {
  display: flex;
  gap: 3rem;
}

.contact-form-section {
  flex: 3;
}

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

.contact-form {
  background-color: var(--light-color);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

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

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

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

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

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

.form-submit {
  margin-top: 2rem;
}

.form-submit .btn {
  min-width: 150px;
}

.contact-info-section {
  flex: 2;
}

.contact-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
}

.contact-card h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--beige-light);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-details li:last-child {
  margin-bottom: 0;
}

.contact-details svg {
  flex-shrink: 0;
  margin-right: 1rem;
  margin-top: 0.25rem;
  color: var(--primary-color);
}

.contact-details strong {
  display: block;
  margin-bottom: 0.5rem;
}

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

.business-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business-hours li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

.business-hours li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

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

.contact-social .social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--beige-light);
  color: var(--primary-color);
  transition: var(--transition);
}

.contact-social .social-icon:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-3px);
}

.map-section {
  padding: 0 0 var(--section-spacing);
}

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

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

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-quote {
  background-color: var(--slate-blue);
}

.contact-quote .quote-title {
  color: var(--light-color);
  opacity: 0.9;
}

.contact-faq {
  background-color: var(--beige-light);
}

.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.thank-you-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: 90%;
  max-width: 500px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transform: translateY(-50px);
  transition: all 0.3s ease;
}

.thank-you-modal.show .modal-content {
  transform: translateY(0);
}

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

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

.thank-you-icon {
  width: 70px;
  height: 70px;
  background-color: var(--beige-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.thank-you-modal h3 {
  margin-bottom: 1rem;
}

.thank-you-modal p {
  margin-bottom: 1.5rem;
}

/* Blog Post Page Styles */
.blog-post-page .blog-post {
  padding: var(--section-spacing) 0;
}

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

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.post-date, .post-category {
  font-size: 0.9375rem;
  color: var(--dark-medium);
}

.post-category {
  background-color: var(--beige-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.post-header h1 {
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-author {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--beige-light);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
}

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

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

.author-name {
  font-weight: 600;
  display: block;
}

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

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

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

.post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
}

.post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

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

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

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}

.post-tags .tag {
  background-color: var(--beige-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--dark-color);
  transition: var(--transition);
}

.post-tags .tag:hover {
  background-color: var(--primary-light);
  color: var(--light-color);
}

.post-share {
  margin: 3rem 0;
  text-align: center;
}

.post-share h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.share-buttons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--beige-light);
  color: var(--dark-color);
  border-radius: 50%;
  transition: var(--transition);
}

.share-buttons a:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.share-buttons a:nth-child(1):hover {
  background-color: #1877f2; /* Facebook blue */
  color: white;
}

.share-buttons a:nth-child(2):hover {
  background-color: #1da1f2; /* Twitter blue */
  color: white;
}

.share-buttons a:nth-child(3):hover {
  background-color: #0a66c2; /* LinkedIn blue */
  color: white;
}

.share-buttons a:nth-child(4):hover {
  background-color: var(--primary-color);
  color: white;
}

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

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

.post-nav span {
  display: block;
  font-size: 0.875rem;
  color: var(--dark-medium);
  margin-bottom: 0.5rem;
}

.post-nav a {
  font-weight: 600;
  font-size: 1.125rem;
}

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

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

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

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

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.related-card h4 {
  padding: 1.25rem;
  margin: 0;
  font-size: 1.125rem;
}

/* Media Queries */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 4rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .services-grid,
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .blog-layout {
    flex-direction: column;
  }

  .blog-sidebar {
    order: -1;
  }

  .services-testimonials .testimonial {
    width: calc(50% - 1rem);
  }

  .contact-layout {
    flex-direction: column;
  }

  .timeline-content {
    width: 80%;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 40px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 40px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 3rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .about-columns {
    flex-direction: column;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    max-width: 100%;
    width: 100%;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

  .services-testimonials .testimonial {
    width: 100%;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .post-nav {
    flex-direction: column;
    gap: 1.5rem;
  }

  .post-nav-prev,
  .post-nav-next {
    max-width: 100%;
  }

  .process-steps {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
  }

  .cookie-content p {
    max-width: 100%;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  :root {
    --section-spacing: 2.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .features-grid,
  .values-grid,
  .team-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .timeline-content {
    width: calc(100% - 40px);
  }

  .post-header h1 {
    font-size: 1.75rem;
  }

  .post-content {
    font-size: 1rem;
  }

  .share-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}
