/* Base Styles */
:root {
  --primary-color: #2e4c6d;
  --primary-dark: #1a3a5f;
  --primary-light: #396b9e;
  --secondary-color: #fc8621;
  --secondary-dark: #e67410;
  --secondary-light: #fda14d;
  --text-dark: #2c3e50;
  --text-light: #f9f9f9;
  --text-muted: #7f8c8d;
  --bg-light: #ffffff;
  --bg-gray: #f5f7fa;
  --bg-dark: #2c3e50;
  --border-color: #dde1e5;
  --success-color: #2ecc71;
  --error-color: #e74c3c;
  --warning-color: #f39c12;
  --border-radius: 4px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
  --footer-bg: #1d3557;
}

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

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

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

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

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

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
  font-size: 16px;
}

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

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

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

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

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  background-color: var(--bg-light);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

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

.logo img {
  height: 85px;
  width: 170px;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 10px 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-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);
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.8)), url('images/hero-bg.webp') no-repeat center center/cover;
  color: var(--text-light);
  padding: 100px 0;
  position: relative;
}

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

.multilingual-greeting {
  margin-bottom: 20px;
  font-size: 18px;
  opacity: 0.9;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
}

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

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

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

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

.feature-card h3 {
  padding: 20px 20px 10px;
  font-size: 22px;
  color: var(--primary-color);
}

.feature-card p {
  padding: 0 20px 20px;
  color: var(--text-muted);
}

/* Case Studies Section */
.case-studies {
  padding: 80px 0;
  background-color: var(--bg-gray);
}

.case-studies h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

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

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.case-study-card img {
  width: 40%;
  object-fit: cover;
}

.case-study-content {
  padding: 30px;
  flex: 1;
}

.case-study-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: var(--primary-color);
}

.case-study-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.8)),url('images/upperfooter.webp') no-repeat center center/cover;
  color: var(--text-light);
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: var(--text-light);
  padding: 60px 0 20px;
}

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

.footer-logo {
  width: 100px;
  margin-bottom: 15px;
}

.footer-col h3 {
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-col p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li {
  margin-bottom: 10px;
}

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

.footer-col ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

address p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

address p i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

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

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

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 15px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 15px;
  max-width: 800px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

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

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

.cookie-content a {
  color: var(--secondary-light);
  text-decoration: underline;
  font-size: 14px;
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.8)), url('images/page-header-bg.html') no-repeat center center/cover;
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 40px;
  margin-bottom: 15px;
  font-weight: 700;
}

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

/* About Page */
.about-story {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.about-content h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 32px;
}

.about-content p {
  margin-bottom: 20px;
}

.mission-values {
  padding: 80px 0;
  background-color: var(--bg-gray);
}

.mission-values h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  color: var(--primary-color);
}

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

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

.value-card img {
  width: 200px;
  object-fit: cover;
}

.value-content {
  padding: 30px;
  flex: 1;
}

.value-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 24px;
}

.value-content ul {
  list-style: disc;
  padding-left: 20px;
}

.value-content ul li {
  margin-bottom: 8px;
}

.team {
  padding: 80px 0;
}

.team h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  color: var(--primary-color);
}

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

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

.team-member:hover {
  transform: translateY(-5px);
}

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

.team-member h3 {
  margin-top: 20px;
  font-size: 22px;
  color: var(--primary-color);
}

.team-member .position {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-member p {
  padding: 0 20px 20px;
  color: var(--text-muted);
}

.achievements {
  padding: 80px 0;
  background-color: var(--bg-gray);
}

.achievements h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  color: var(--primary-color);
}

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

.achievement-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.achievement-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
}

.achievement-card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 20px;
}

.achievement-card p {
  color: var(--text-muted);
}

/* Services Page */
.services-overview {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.services-intro h2 {
  color: var(--primary-color);
  font-size: 32px;
  margin-bottom: 20px;
}

.services-intro p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.service-categories {
  padding: 80px 0;
  background-color: var(--bg-gray);
}

.service-category {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

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

.service-category:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.service-category img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 400px;
  object-fit: cover;
}

.service-category-content h2 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 15px;
}

.service-category-content > p {
  margin-bottom: 30px;
  color: var(--text-muted);
}

.service-items {
  display: grid;
  gap: 20px;
}

.service-item h3 {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 10px;
}

.service-item h3 i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.service-item p {
  padding-left: 30px;
  color: var(--text-muted);
}

.process {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.process h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  color: var(--primary-color);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 60px;
  right: 60px;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 15px;
  flex: 1;
}

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

.process-step h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 20px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing {
  padding: 80px 0;
  background-color: var(--bg-gray);
}

.pricing h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.pricing-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-muted);
}

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

.pricing-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--secondary-color);
}

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

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

.pricing-card h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.pricing-card p {
  color: var(--text-muted);
  margin-bottom: 30px;
  min-height: 80px;
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  margin-bottom: 30px;
}

.contact-method i {
  font-size: 24px;
  color: var(--secondary-color);
  margin-right: 20px;
  margin-top: 5px;
}

.contact-method h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-method p {
  color: var(--text-muted);
}

.contact-method a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

.contact-hours {
  font-size: 14px;
  margin-top: 5px;
  font-style: italic;
}

.social-connect h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 15px;
}

.contact-form-container h2 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 30px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 5px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(46, 76, 109, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 14px;
}

.checkbox-group label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.faq {
  padding: 80px 0;
  background-color: var(--bg-gray);
}

.faq h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  color: var(--primary-color);
}

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

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

.faq-item h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 15px;
}

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

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

.modal-content {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

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

.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

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

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

.thank-you-message i {
  font-size: 60px;
  color: var(--success-color);
  margin-bottom: 20px;
}

.thank-you-message h2 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.thank-you-message p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Blog Page */
.blog-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.blog-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.blog-image {
  overflow: hidden;
}

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

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

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  margin-bottom: 15px;
  font-size: 14px;
}

.blog-meta .date {
  color: var(--text-muted);
  margin-right: 15px;
}

.blog-meta .category {
  color: var(--secondary-color);
  font-weight: 600;
}

.blog-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.blog-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsletter {
  padding: 80px 0;
  background-color: var(--bg-gray);
}

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

.newsletter h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.newsletter p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  margin-bottom: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-family: inherit;
  font-size: 16px;
}

.newsletter-form button {
  padding: 12px 24px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.newsletter-privacy {
  font-size: 13px;
  color: var(--text-muted);
}

.newsletter-privacy a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Blog Post Pages */
.blog-post {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.blog-post-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.blog-post-meta .date {
  color: var(--text-muted);
}

.blog-post-meta .category {
  color: var(--secondary-color);
  font-weight: 600;
}

.blog-post-meta .author {
  color: var(--text-dark);
  font-weight: 500;
}

.blog-post-header h1 {
  font-size: 40px;
  color: var(--primary-color);
  line-height: 1.3;
}

.blog-post-featured-image {
  margin-bottom: 40px;
}

.blog-post-featured-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

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

.blog-post-content .lead {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.6;
}

.blog-post-content h2 {
  font-size: 30px;
  color: var(--primary-color);
  margin: 40px 0 20px;
}

.blog-post-content h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin: 30px 0 15px;
}

.blog-post-content h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin: 25px 0 15px;
}

.blog-post-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-post-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.blog-post-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.blog-post-content a:hover {
  color: var(--secondary-color);
}

.blog-quote {
  margin: 40px 0;
  padding: 30px;
  background-color: var(--bg-gray);
  border-left: 5px solid var(--secondary-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.blog-quote blockquote {
  font-size: 20px;
  font-style: italic;
  color: var(--primary-color);
  line-height: 1.6;
}

.formula {
  background-color: var(--bg-gray);
  padding: 20px;
  margin: 20px 0;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 600;
}

.blog-post-author {
  display: flex;
  max-width: 800px;
  margin: 0 auto 40px;
  background-color: var(--bg-gray);
  border-radius: var(--border-radius);
  padding: 30px;
}

.blog-post-author img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 20px;
}

.author-info h3 {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 5px;
}

.author-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.author-title {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 16px;
}

.blog-post-share {
  display: flex;
  align-items: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.blog-post-share p {
  margin-right: 20px;
  font-weight: 600;
}

.social-share-icons {
  display: flex;
  gap: 15px;
}

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

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

.blog-post-navigation {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto 60px;
}

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

.prev-post a,
.next-post a {
  display: flex;
  flex-direction: column;
}

.nav-label {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.post-title {
  color: var(--text-muted);
  transition: var(--transition);
}

.prev-post a:hover .post-title,
.next-post a:hover .post-title {
  color: var(--primary-color);
}

.related-posts {
  max-width: 800px;
  margin: 0 auto;
}

.related-posts h2 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

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

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

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

.related-post h3 {
  padding: 20px;
  font-size: 18px;
}

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

.related-post h3 a:hover {
  color: var(--secondary-color);
}

/* Case Study Specific Styles */
.case-study-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  background-color: var(--bg-gray);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
}

.case-study-info h3 {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.case-study-info p {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.case-study-info p small {
  font-size: 12px;
  font-weight: normal;
  font-style: italic;
}

.challenge-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
  background-color: var(--bg-gray);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.challenge,
.solution {
  padding: 20px;
}

.challenge {
  background-color: rgba(231, 76, 60, 0.1);
}

.solution {
  background-color: rgba(46, 204, 113, 0.1);
}

.challenge h3,
.solution h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.challenge h3 {
  color: #c0392b;
}

.solution h3 {
  color: #27ae60;
}

/* Policy Pages */
.policy-content {
  padding: 60px 0;
}

.policy-introduction {
  max-width: 800px;
  margin: 0 auto 40px;
}

.policy-introduction p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.policy-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

.policy-section h2 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.policy-section h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin: 25px 0 15px;
}

.policy-section p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.policy-section ul,
.policy-section ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-section li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.policy-section strong {
  color: var(--primary-color);
}

.policy-section address {
  margin-top: 20px;
  font-style: normal;
}

.policy-section address p {
  margin-bottom: 5px;
}

.refund-steps {
  background-color: var(--bg-gray);
  padding: 20px;
  border-radius: var(--border-radius);
  margin: 20px 0;
}

.refund-steps h3 {
  margin-top: 0;
}

.refund-steps ol {
  padding-left: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .process-steps::before {
    left: 40px;
    right: 40px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .service-category,
  .service-category:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-steps {
    flex-direction: column;
    gap: 30px;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    display: flex;
    align-items: center;
    text-align: left;
  }

  .step-number {
    margin: 0 20px 0 0;
  }

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

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

  .challenge-solution {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    height: auto;
    padding: 15px 0;
  }

  nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .feature-grid,
  .case-study-grid,
  .values-grid,
  .pricing-grid,
  .related-posts-grid {
    grid-template-columns: 1fr;
  }

  .case-study-card {
    flex-direction: column;
  }

  .case-study-card img {
    width: 100%;
    height: 200px;
  }

  .value-card {
    flex-direction: column;
  }

  .value-card img {
    width: 100%;
    height: 200px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-image img {
    height: 200px;
  }

  .blog-post-meta {
    flex-direction: column;
    gap: 5px;
  }

  .blog-post-header h1 {
    font-size: 28px;
  }

  .blog-post-author {
    flex-direction: column;
    text-align: center;
  }

  .blog-post-author img {
    margin: 0 auto 20px;
  }

  .blog-post-navigation {
    flex-direction: column;
    gap: 20px;
  }

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

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

  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 576px) {
  .hero h1 {
    font-size: 26px;
  }

  .section-title {
    font-size: 24px;
  }

  .blog-post-header h1 {
    font-size: 24px;
  }

  .blog-post-content h2 {
    font-size: 22px;
  }

  .blog-post-content h3 {
    font-size: 20px;
  }

  .blog-quote blockquote {
    font-size: 18px;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-btn {
    width: 100%;
  }
}
