/* Base Styles */
:root {
  --primary-color: #8e44ad;
  --primary-light: #a55ebd;
  --primary-dark: #6c3483;
  --secondary-color: #2ecc71;
  --secondary-light: #52d98a;
  --secondary-dark: #27ae60;
  --text-dark: #2c3e50;
  --text-light: #ecf0f1;
  --text-muted: #7f8c8d;
  --background-light: #ffffff;
  --background-off-white: #f9f9f9;
  --background-light-accent: #f5f0f8;
  --background-dark: #34495e;
  --border-color: #dcdde1;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --error-color: #e74c3c;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --max-width: 1200px;
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-secondary: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

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

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

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

ul {
  list-style: none;
}

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

/* 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-dark);
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-hover);
}

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

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

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1.5rem 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

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

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

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

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

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

nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  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);
}

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

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

/* Hero Section */
.hero {
  padding: 20rem 0 12rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  position: relative;
  text-align: center;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 5.6rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero p {
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

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

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

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

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

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

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

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

/* Services Preview Section */
.services-preview {
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--text-light);
}

.services-preview:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.services-preview .container {
  position: relative;
  z-index: 2;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 5rem;
  color: var(--text-light);
}

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

.service-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
  background-color: rgba(255, 255, 255, 0.2);
}

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

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

.service-card p {
  padding: 0 2rem 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.service-card .btn-secondary {
  margin: 0 2rem 2rem;
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

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

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
  background-color: var(--background-light);
}

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

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  padding: 4rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
}

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

.quote p {
  position: relative;
  padding: 0 2rem;
}

.quote p:before,
.quote p:after {
  content: '"';
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  line-height: 1;
}

.quote p:before {
  left: 0;
  top: -1rem;
}

.quote p:after {
  right: 0;
  bottom: -2rem;
}

.client {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.client img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.client-info p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1.4rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.slider-controls button {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
}

.slider-controls button:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

/* Blog Preview Section */
.blog-preview {
  padding: 8rem 0;
  background-color: var(--background-off-white);
}

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

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

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

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

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

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--text-muted);
}

.date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category {
  background-color: var(--primary-light);
  color: var(--text-light);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

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

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
}

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

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

.center {
  text-align: center;
}

/* CTA Section */
.cta {
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  color: var(--text-light);
}

.cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 2;
}

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

.cta p {
  font-size: 1.8rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

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

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

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

footer h3 {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

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

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

footer ul li a:hover {
  color: var(--text-light);
  padding-left: 0.5rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

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

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

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

.legal-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}

.legal-links a:hover {
  color: var(--text-light);
}

.copyright {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 0;
}

/* Page Banner */
.page-banner {
  padding: 15rem 0 8rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  color: var(--text-light);
}

.page-banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.page-banner p {
  font-size: 1.8rem;
  max-width: 700px;
  margin: 0 auto;
}

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

.services-intro p {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.service-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}

.category-button {
  padding: 1rem 2rem;
  background-color: var(--background-off-white);
  border-radius: 3rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

.category-button:hover, 
.category-button.active {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.service-detail {
  padding: 8rem 0;
  background-color: var(--background-light);
}

.service-detail.alternate {
  background-color: var(--background-off-white);
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.service-content.reverse {
  direction: rtl;
}

.service-content.reverse .service-text {
  direction: ltr;
}

.service-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  width: 100%;
  height: auto;
}

.service-text h2 {
  margin-bottom: 2rem;
}

.service-text h3 {
  margin: 3rem 0 1.5rem;
}

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

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

.service-text ul li:before {
  content: '✓';
  color: var(--success-color);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.pricing {
  padding: 8rem 0;
  background-color: var(--background-light-accent);
  text-align: center;
}

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

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

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

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

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

.pricing-header {
  padding: 3rem;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.pricing-card.featured .pricing-header {
  background-color: var(--primary-dark);
}

.pricing-header h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.price {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.price span {
  font-size: 1.8rem;
  font-weight: 400;
}

.pricing-features {
  padding: 3rem;
}

.pricing-features ul li {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2.5rem;
  text-align: left;
}

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

.pricing-card .btn-secondary,
.pricing-card .btn-primary {
  margin: 0 3rem 3rem;
  width: calc(100% - 6rem);
}

.pricing-note {
  color: var(--text-muted);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

.accordion-item {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.accordion-header {
  width: 100%;
  padding: 2rem;
  background-color: var(--background-light);
  border: none;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-header:hover {
  background-color: var(--background-light-accent);
}

.accordion-header svg {
  transition: var(--transition);
}

.accordion-header[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  background-color: var(--background-light);
}

.accordion-item.active .accordion-content {
  padding: 0 2rem 2rem;
  max-height: 500px;
}

/* Blog Page */
.blog-intro {
  padding: 8rem 0 4rem;
}

.blog-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.tag {
  padding: 0.8rem 2rem;
  background-color: var(--background-off-white);
  border: none;
  border-radius: 3rem;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.4rem;
}

.tag:hover, 
.tag.active {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.search-container {
  margin-top: 3rem;
  max-width: 500px;
  width: 100%;
}

.search-form {
  display: flex;
  align-items: center;
  position: relative;
}

.search-form input {
  width: 100%;
  padding: 1.2rem 2rem;
  border: 1px solid var(--border-color);
  border-radius: 3rem;
  font-size: 1.6rem;
  transition: var(--transition);
}

.search-form input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.2);
}

.search-form button {
  position: absolute;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.search-form button:hover {
  color: var(--primary-color);
}

.blog-grid {
  padding: 4rem 0 8rem;
}

.blog-articles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.pagination a, 
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

.newsletter {
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--text-light);
}

.newsletter:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.newsletter .container {
  position: relative;
  z-index: 2;
}

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

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

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

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

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 1.6rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--text-light);
}

.form-note {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.trending {
  padding: 4rem 0 8rem;
  background-color: var(--background-off-white);
}

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

.trending-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.trending-tag {
  padding: 1rem 2rem;
  background-color: var(--background-light);
  border-radius: 3rem;
  color: var(--primary-color);
  font-weight: 500;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.trending-tag:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-hover);
}

/* Blog Post Page */
.blog-post {
  padding: 15rem 0 8rem;
  background-color: var(--background-light);
}

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

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

.author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.share-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.share-buttons span {
  color: var(--text-muted);
}

.share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--background-off-white);
  color: var(--text-dark);
  transition: var(--transition);
}

.share-buttons a:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
}

.featured-image {
  max-width: 900px;
  margin: 0 auto 4rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

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

.intro-paragraph {
  font-size: 2rem;
  line-height: 1.6;
  color: var(--primary-dark);
  margin-bottom: 3rem;
}

.blog-content h2 {
  margin-top: 4.5rem;
  margin-bottom: 2rem;
}

.blog-content h3 {
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
}

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

.blog-content ul li, 
.blog-content ol li {
  margin-bottom: 1rem;
}

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

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

.blog-callout {
  background-color: var(--background-light-accent);
  border-left: 4px solid var(--primary-color);
  padding: 2.5rem;
  margin: 3rem 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.blog-callout h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blog-callout p {
  margin-bottom: 0;
}

.author-bio {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: var(--background-off-white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  margin-top: 5rem;
}

.author-bio img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  color: var(--text-muted);
}

.author-info h4 {
  margin-bottom: 1rem;
}

.author-info p {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.post-tags {
  max-width: 800px;
  margin: 0 auto 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.post-tags span {
  color: var(--text-muted);
}

.post-tags a {
  padding: 0.5rem 1.5rem;
  background-color: var(--background-off-white);
  border-radius: 3rem;
  color: var(--text-dark);
  font-size: 1.4rem;
  transition: var(--transition);
}

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

.post-navigation {
  max-width: 800px;
  margin: 0 auto 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0;
}

.back-to-blog {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.navigation-links {
  display: flex;
  gap: 3rem;
}

.prev-post, 
.next-post {
  max-width: 200px;
}

.prev-post span, 
.next-post span {
  color: var(--text-muted);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.5rem;
}

.prev-post h4, 
.next-post h4 {
  font-size: 1.6rem;
  margin-bottom: 0;
  transition: var(--transition);
}

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

.related-posts {
  max-width: 1000px;
  margin: 0 auto 6rem;
}

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

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

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

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

.comment-form {
  background-color: var(--background-off-white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  margin-bottom: 4rem;
}

.comment-form h3 {
  margin-bottom: 2rem;
}

.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);
  font-size: 1.6rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.2);
}

.comment-list {
  margin-top: 4rem;
}

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

.comment-avatar img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.comment-header h4 {
  margin-bottom: 0;
}

.comment-date {
  color: var(--text-muted);
  font-size: 1.4rem;
}

.comment p {
  margin-bottom: 1.5rem;
}

.reply-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-weight: 600;
  padding: 0;
  font-size: 1.4rem;
}

.reply-btn:hover {
  text-decoration: underline;
}

.comment.reply {
  margin-left: 6rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

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

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

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

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

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  width: 100%;
  height: auto;
}

.our-approach {
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--text-light);
}

.our-approach:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.our-approach .container {
  position: relative;
  z-index: 2;
}

.our-approach h2 {
  text-align: center;
  margin-bottom: 5rem;
  color: var(--text-light);
}

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

.approach-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  text-align: center;
  transition: var(--transition);
}

.approach-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.approach-card .icon {
  margin: 0 auto 2rem;
  color: var(--text-light);
}

.approach-card h3 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.approach-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

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

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

.values-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.values-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  width: 100%;
  height: auto;
}

.value-item {
  margin-bottom: 3rem;
}

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

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

.our-team {
  padding: 8rem 0;
  background-color: var(--background-off-white);
}

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

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

.team-member {
  text-align: center;
  transition: var(--transition);
}

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

.team-member img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
}

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

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

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

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

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

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

.our-space {
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--text-light);
}

.our-space:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.our-space .container {
  position: relative;
  z-index: 2;
}

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

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

.space-content p {
  margin-bottom: 2rem;
}

.space-content ul {
  list-style-type: disc;
  text-align: left;
  margin-left: 2rem;
  margin-bottom: 3rem;
}

.space-content ul li {
  margin-bottom: 1rem;
}

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

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

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

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

.process-step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 7rem;
  left: 3rem;
  width: 2px;
  height: calc(100% - 3rem);
  background-color: var(--primary-light);
}

.step-number {
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

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

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

.recognition {
  padding: 8rem 0;
  background-color: var(--background-off-white);
}

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

.recognition-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.awards h3,
.certifications h3 {
  margin-bottom: 3rem;
}

.award-list,
.certification-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.award-list li,
.certification-list li {
  display: flex;
  gap: 2rem;
}

.award-icon,
.cert-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--text-light);
  border-radius: 50%;
}

.award-text h4,
.cert-text h4 {
  margin-bottom: 0.5rem;
}

.award-text p,
.cert-text p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.community-impact {
  padding: 8rem 0;
  background-color: var(--background-light);
}

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

.impact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.impact-text h3 {
  margin: 3rem 0 1.5rem;
}

.impact-text ul {
  margin-left: 2rem;
  margin-bottom: 3rem;
  list-style-type: disc;
}

.impact-text ul li {
  margin-bottom: 1rem;
}

.impact-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  width: 100%;
  height: auto;
}

/* Contact Page */
.contact-options {
  padding: 8rem 0;
  background-color: var(--background-light);
}

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

.contact-card {
  background-color: var(--background-off-white);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

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

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

.contact-card p {
  margin-bottom: 0.5rem;
}

.contact-card .small {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-card .social-links {
  margin-bottom: 1.5rem;
}

.contact-form-section {
  padding: 8rem 0;
  background-color: var(--background-off-white);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.form-intro {
  padding: 4rem 4rem 0;
  text-align: center;
}

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

.form-intro p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 0.3rem;
}

.checkbox-text {
  font-size: 1.4rem;
  color: var(--text-muted);
}

.checkbox-text a {
  text-decoration: underline;
}

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

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

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

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

.modal-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--success-color);
  color: var(--text-light);
  border-radius: 50%;
}

.modal h2 {
  margin-bottom: 1.5rem;
}

.modal p {
  margin-bottom: 3rem;
}

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

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

.cookie-content {
  padding: 2.5rem;
}

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

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

.btn-accept {
  background-color: var(--success-color);
  color: var(--text-light);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-accept:hover {
  background-color: #27ae60;
}

.btn-settings,
.btn-decline {
  background-color: var(--background-off-white);
  color: var(--text-dark);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-settings:hover {
  background-color: #e0e0e0;
}

.btn-decline:hover {
  background-color: #f8d7da;
  color: #721c24;
}

.cookie-content a {
  font-size: 1.4rem;
  text-decoration: underline;
}

/* Page Views Counter */
.page-views {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.8rem 1.5rem;
  border-radius: 3rem;
  box-shadow: var(--box-shadow);
  font-size: 1.4rem;
  z-index: 900;
}

.page-views #view-count {
  font-weight: 700;
  color: var(--primary-color);
}

/* Parallax Effect */
.parallax {
  background-attachment: fixed;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  html {
    font-size: 60%;
  }
  
  .about-content,
  .service-content,
  .values-content,
  .impact-content,
  .recognition-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .service-content.reverse {
    direction: ltr;
  }
  
  .values-image,
  .impact-image {
    order: -1;
  }
  
  .service-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 58%;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--background-light);
    padding: 8rem 2rem 2rem;
    transition: var(--transition);
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hamburger {
    display: flex;
    z-index: 1000;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero {
    padding: 15rem 0 8rem;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .services-grid,
  .feature-grid,
  .blog-grid,
  .team-grid,
  .approach-cards,
  .contact-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .blog-articles {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  
  .navigation-links {
    width: 100%;
    justify-content: space-between;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .comment {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .comment-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .comment.reply {
    margin-left: 2rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .parallax {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 55%;
  }
  
  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  
  .process-step:not(:last-child):after {
    display: none;
  }
  
  .award-list li,
  .certification-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .cookie-banner {
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }
  
  .page-views {
    bottom: auto;
    top: 8rem;
    right: 1rem;
  }
}
