/* Base Styles and Variables */
:root {
  --primary-color: #4a7c59;
  --primary-dark: #3a6348;
  --primary-light: #8fb299;
  --secondary-color: #f4b942;
  --text-color: #333333;
  --text-light: #666666;
  --bg-color: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #eaeaea;
  --border-color: #dddddd;
  --success-color: #5cb85c;
  --error-color: #d9534f;
  --warning-color: #f0ad4e;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 5px;
  --container-width: 1200px;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Merriweather', serif;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

.btn:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.8rem;
}

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

.btn-secondary:hover {
  background-color: #e0a93e;
}

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

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

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

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

.logo img {
  height: 5rem;
  width: auto;
}

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

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

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

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

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

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

/* Welcome Text Section */
.welcome-text {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem 0;
  text-align: center;
}

.welcome-text p {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
}

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

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

.hero-content {
  flex: 1;
}

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

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

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

/* Article Overview List */
.article-overview {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 3rem;
}

.article-overview li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.article-overview li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--primary-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1rem;
}

/* Features Section */
.features {
  padding: 8rem 0;
  text-align: center;
}

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

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

.feature-card {
  padding: 3rem 2rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

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

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

/* Recent Work Section */
.recent-work {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

.recent-work h2 {
  text-align: center;
  margin-bottom: 5rem;
}

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

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

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

.work-item img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  transition: var(--transition);
}

.work-item:hover img {
  transform: scale(1.05);
}

.work-item h3 {
  padding: 2rem 2rem 0.5rem;
  margin-bottom: 1rem;
}

.work-item p {
  padding: 0 2rem 2rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.center-button {
  text-align: center;
  margin-top: 5rem;
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
}

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

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

.testimonial {
  flex: 0 0 calc(50% - 1.5rem);
  max-width: calc(50% - 1.5rem);
}

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

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

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

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

.testimonial-author h4 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

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

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

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

.cta p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* Footer */
footer {
  padding: 6rem 0 2rem;
  background-color: #2a2a2a;
  color: white;
}

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

.footer-logo {
  flex: 0 0 25%;
}

.footer-logo img {
  height: 5rem;
  margin-bottom: 2rem;
}

.footer-logo p {
  color: #c5c5c5;
  font-size: 1.5rem;
}

.footer-links {
  flex: 0 0 20%;
}

.footer-links h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

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

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

.footer-links ul li a {
  color: #c5c5c5;
  transition: var(--transition);
  font-size: 1.5rem;
}

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

.footer-contact {
  flex: 0 0 30%;
}

.footer-contact h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  color: #c5c5c5;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-contact p svg {
  margin-right: 1rem;
  flex-shrink: 0;
}

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

.social-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

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

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

.footer-bottom p {
  color: #c5c5c5;
  font-size: 1.4rem;
  margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(42, 42, 42, 0.95);
  color: white;
  padding: 2rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-content {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-content p {
  margin-bottom: 2rem;
  text-align: center;
  max-width: 80rem;
}

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

.btn-cookie {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

#acceptAllCookies {
  background-color: var(--primary-color);
  color: white;
}

#acceptAllCookies:hover {
  background-color: var(--primary-dark);
}

#customizeCookies {
  background-color: white;
  color: var(--text-color);
}

#customizeCookies:hover {
  background-color: var(--bg-dark);
}

#rejectCookies {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

#rejectCookies:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.cookie-content a:hover {
  color: white;
}

/* Page Banner Section */
.page-banner {
  padding: 6rem 0;
  background-color: var(--bg-light);
  text-align: center;
}

.page-banner h1 {
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

.page-banner .article-overview {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

/* Services Page Specific Styles */
.services-overview {
  padding: 8rem 0;
}

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

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

.service-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.service-card img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
}

.service-card h3 {
  padding: 2rem 2rem 1rem;
}

.service-card p {
  padding: 0 2rem;
  color: var(--text-light);
}

.service-card ul {
  padding: 0 2rem 2rem 4rem;
  margin-bottom: 0;
}

.service-card ul li {
  margin-bottom: 0.8rem;
  color: var(--text-color);
}

/* Process Section */
.process {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

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

.process-steps {
  max-width: 80rem;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

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

.step-content {
  flex: 1;
}

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

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

/* Materials Section */
.materials {
  padding: 8rem 0;
}

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

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

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

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

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

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

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

/* Pricing Section */
.pricing {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

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

.pricing > p {
  text-align: center;
  max-width: 70rem;
  margin: 0 auto 5rem;
  font-size: 1.8rem;
}

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

.pricing-factor {
  padding: 3rem 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

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

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

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

.pricing-cta {
  text-align: center;
  max-width: 70rem;
  margin: 0 auto;
}

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

/* FAQ Section */
.faq {
  padding: 8rem 0;
}

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

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

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

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

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

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

.blog-content .container {
  display: flex;
  gap: 5rem;
}

.blog-posts {
  flex: 1;
}

.blog-post {
  margin-bottom: 5rem;
  display: flex;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-image {
  flex: 0 0 35%;
}

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

.post-content {
  flex: 1;
  padding: 3rem;
}

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

.post-date, .post-category, .post-author {
  margin-right: 2rem;
  color: var(--text-light);
  font-size: 1.4rem;
}

.post-category {
  color: var(--primary-color);
}

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

.post-content h2 a {
  color: var(--text-color);
  transition: var(--transition);
}

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

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

.post-tags {
  margin-bottom: 2rem;
}

.post-tags span {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: var(--primary-light);
  color: white;
  border-radius: 2rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

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

.read-more svg {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.read-more:hover svg {
  transform: translateX(5px);
}

/* Blog Sidebar */
.blog-sidebar {
  flex: 0 0 30%;
}

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

.sidebar-widget h3 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

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

.categories ul li {
  margin-bottom: 1.5rem;
}

.categories ul li a {
  display: flex;
  justify-content: space-between;
  color: var(--text-color);
  transition: var(--transition);
}

.categories ul li a:hover {
  color: var(--primary-color);
}

.popular-posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popular-posts ul li {
  margin-bottom: 2rem;
}

.popular-posts ul li:last-child {
  margin-bottom: 0;
}

.popular-posts ul li a {
  display: flex;
  color: var(--text-color);
}

.popular-posts ul li a img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-right: 1.5rem;
}

.popular-posts ul li a h4 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  transition: var(--transition);
}

.popular-posts ul li a:hover h4 {
  color: var(--primary-color);
}

.popular-posts ul li a span {
  color: var(--text-light);
  font-size: 1.4rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag-cloud a {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: white;
  color: var(--text-color);
  border-radius: 2rem;
  font-size: 1.4rem;
  transition: var(--transition);
}

.tag-cloud a:hover {
  background-color: var(--primary-color);
  color: white;
}

.newsletter p {
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
}

.newsletter-form input {
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.newsletter-form .btn {
  align-self: flex-start;
}

/* Blog Post Page Specific Styles */
.blog-post-content {
  padding: 8rem 0;
}

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

.post-header h1 {
  margin-bottom: 2rem;
}

.post-featured-image {
  max-width: 80rem;
  margin: 0 auto 5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.post-body {
  max-width: 80rem;
  margin: 0 auto 5rem;
}

.post-body h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

.post-body h3 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

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

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

.post-body li {
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

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

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

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

.quote-block {
  margin: 3rem 0;
  padding: 3rem;
  background-color: var(--bg-light);
  border-left: 5px solid var(--primary-color);
  border-radius: var(--border-radius);
}

.quote-block p {
  font-style: italic;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.quote-block cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
}

.post-tags {
  margin: 4rem 0;
}

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

.post-share h3 {
  margin: 0 2rem 0 0;
  font-size: 1.8rem;
}

.social-share-buttons {
  display: flex;
}

.social-share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--bg-light);
  border-radius: 50%;
  margin-right: 1.5rem;
  color: var(--text-color);
  transition: var(--transition);
}

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

.post-author-bio {
  display: flex;
  padding: 3rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  margin-bottom: 5rem;
}

.post-author-bio img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  margin-right: 3rem;
}

.post-author-bio h3 {
  margin-bottom: 1rem;
}

.post-author-bio p {
  margin-bottom: 0;
}

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

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

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

.related-post {
  text-align: center;
}

.related-post img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.related-post h4 {
  margin-bottom: 1rem;
  transition: var(--transition);
}

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

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

.post-navigation {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 3rem;
}

.prev-post, .next-post {
  flex: 0 0 48%;
}

.prev-post a, .next-post a {
  display: flex;
  flex-direction: column;
  color: var(--text-color);
}

.prev-post a {
  align-items: flex-start;
}

.next-post a {
  align-items: flex-end;
  text-align: right;
}

.prev-post a svg, .next-post a svg {
  margin-bottom: 1rem;
  transition: var(--transition);
}

.prev-post a:hover svg {
  transform: translateX(-5px);
}

.next-post a:hover svg {
  transform: translateX(5px);
}

.post-navigation span {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.post-navigation h4 {
  margin-bottom: 0;
  transition: var(--transition);
}

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

/* About Page Specific Styles */
.about-story {
  padding: 8rem 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 3rem;
  color: var(--primary-dark);
}

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

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

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

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

.mission h2 {
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

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

.values h2 {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--primary-dark);
}

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

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

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

.value-icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  margin-bottom: 2rem;
}

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

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

.team {
  padding: 8rem 0;
}

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

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

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

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

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

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

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

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

.social-links {
  display: flex;
  justify-content: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--bg-light);
  border-radius: 50%;
  margin: 0 0.5rem;
  color: var(--text-color);
  transition: var(--transition);
}

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

.our-approach {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

.our-approach h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.approach-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

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

.approach-text {
  flex: 1;
}

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

.approach-text ul {
  margin-bottom: 2rem;
}

.approach-text li {
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.sustainability-commitment {
  padding: 8rem 0;
}

.sustainability-commitment h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.sustainability-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.sustainability-text {
  flex: 1;
}

.sustainability-text > p {
  margin-bottom: 3rem;
  font-size: 1.7rem;
}

.sustainability-pillars {
  margin-bottom: 3rem;
}

.sustainability-pillar {
  display: flex;
  margin-bottom: 2.5rem;
}

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

.sustainability-pillar h3 {
  margin-bottom: 0.5rem;
}

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

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

/* Contact Page Specific Styles */
.contact-content {
  padding: 8rem 0;
}

.contact-info-form {
  display: flex;
  gap: 5rem;
}

.contact-info {
  flex: 1;
}

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

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

.contact-details {
  margin-bottom: 4rem;
}

.contact-detail {
  display: flex;
  margin-bottom: 2.5rem;
}

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

.contact-detail h3 {
  margin-bottom: 0.5rem;
}

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

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

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

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(74, 124, 89, 0.2);
}

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

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

.checkbox-group label {
  margin-bottom: 0;
  font-size: 1.4rem;
}

.map-section {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

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

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

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  max-width: 50rem;
  width: 90%;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.thank-you-message h2 {
  margin-bottom: 1.5rem;
  color: var(--success-color);
}

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

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

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  html {
    font-size: 58%;
  }
  
  .hero .container,
  .about-content,
  .approach-content,
  .sustainability-content {
    flex-direction: column;
  }
  
  .hero-image,
  .about-image,
  .approach-image,
  .sustainability-image {
    order: -1;
  }
  
  .testimonial {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .contact-info-form {
    flex-direction: column;
  }
  
  .footer-content {
    flex-wrap: wrap;
  }
  
  .footer-logo {
    flex: 0 0 100%;
    margin-bottom: 4rem;
  }
  
  .footer-links, .footer-contact {
    flex: 0 0 30%;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 2rem;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 1.5rem;
  }
  
  .blog-content .container {
    flex-direction: column;
  }
  
  .blog-post {
    flex-direction: column;
  }
  
  .post-image {
    flex: 0 0 100%;
    height: 25rem;
  }
  
  .footer-links, .footer-contact {
    flex: 0 0 100%;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 576px) {
  html {
    font-size: 50%;
  }
  
  h1 {
    font-size: 3.2rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  nav ul {
    flex-wrap: wrap;
  }
  
  nav ul li {
    margin: 0.5rem 1rem;
  }
  
  .post-meta {
    flex-direction: column;
  }
  
  .post-date, .post-category {
    margin-bottom: 0.5rem;
  }
  
  .post-author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .post-author-bio img {
    margin: 0 auto 2rem;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 3rem;
  }
  
  .prev-post, .next-post {
    flex: 0 0 100%;
  }
  
  .next-post a {
    align-items: flex-start;
    text-align: left;
  }
}
