/* Global Styles & Variables */
:root {
  --primary-color: #2e58ff;
  --primary-dark: #1b42d8;
  --primary-light: #5a7bff;
  --secondary-color: #ff6b35;
  --secondary-dark: #e55a27;
  --secondary-light: #ff8960;
  --dark-color: #1a1a2e;
  --gray-dark: #333345;
  --gray-medium: #5a5a72;
  --gray-light: #9797a7;
  --gray-lightest: #eeeef2;
  --text-color: #222233;
  --light-color: #ffffff;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
  --border-radius: 6px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

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

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

p {
  margin-bottom: 1.5rem;
}

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

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

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

li {
  margin-bottom: 0.5rem;
}

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

button {
  cursor: pointer;
  font-family: var(--font-body);
}

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

section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

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

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

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

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

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

/* Header Styles */
header {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  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: 50px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
}

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

.main-nav li {
  margin: 0 0 0 1.5rem;
}

.main-nav a {
  color: var(--gray-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  color: var(--gray-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 1rem 0;
  }
  
  .main-nav.show {
    display: flex;
  }
  
  .main-nav li {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  
  .main-nav a {
    display: block;
    padding: 0.75rem 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  background-color: #f6f9ff;
  padding: 5rem 0;
}

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

.hero-content {
  flex: 1;
}

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

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--gray-medium);
}

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

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

/* Slider Section */
.slider-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.slider {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.slide-content h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 1.25rem;
  color: var(--gray-dark);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.slider-arrow:hover {
  background-color: white;
  color: var(--primary-color);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

@media (max-width: 768px) {
  .slide img {
    height: 300px;
  }
  
  .slide-content h3 {
    font-size: 1.5rem;
  }
}

/* Services Overview */
.services-overview {
  background-color: #f6f9ff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background-color: #f0f5ff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

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

.service-card p {
  color: var(--gray-medium);
  margin-bottom: 1.5rem;
}

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

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

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

/* Stats Section */
.stats-section {
  background-color: var(--dark-color);
  color: white;
}

.stats-section h2 {
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}

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

.stat-card {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.stat-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  line-height: 1;
}

.stat-label {
  font-size: 1.25rem;
  color: white;
}

/* Recent Blogs Section */
.recent-blogs {
  background-color: var(--light-color);
}

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

.view-all {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.view-all i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.view-all:hover i {
  transform: translateX(5px);
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

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

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

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  display: inline-block;
  color: var(--gray-medium);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

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

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

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

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

.cta-content h2 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

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

.cta-section .btn {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

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

.cta-section .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--gray-lightest);
  padding: 5rem 0 0;
}

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

.footer-about .footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
}

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

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

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

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

footer h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

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

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

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

footer ul a {
  color: var(--gray-light);
  transition: var(--transition);
}

footer ul a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--gray-light);
}

.footer-contact i {
  width: 20px;
  margin-right: 10px;
  color: var(--primary-light);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright p {
  margin-bottom: 0;
  color: var(--gray-light);
  font-size: 0.875rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: var(--gray-light);
  font-size: 0.875rem;
}

.legal-links a:hover {
  color: white;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-about, .footer-links, .footer-services, .footer-contact {
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 9999;
  transition: bottom 0.5s ease;
}

.cookie-consent.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

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

.cookie-buttons button {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
}

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

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

.btn-customize {
  background-color: var(--gray-lightest);
  color: var(--gray-dark);
}

.btn-customize:hover {
  background-color: var(--gray-light);
  color: white;
}

.btn-decline {
  background-color: var(--gray-lightest);
  color: var(--gray-dark);
}

.btn-decline:hover {
  background-color: var(--gray-light);
  color: white;
}

.cookie-content a {
  font-size: 0.875rem;
}

/* Page Banner */
.page-banner {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.page-banner h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-banner p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Services Page Styles */
.services-intro {
  background-color: white;
}

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

.service-detail {
  padding: 5rem 0;
}

.service-detail:nth-child(odd) {
  background-color: #f6f9ff;
}

.service-detail:nth-child(even) {
  background-color: white;
}

.service-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.service-detail.alt .service-content {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-image {
  flex: 1;
}

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

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

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.service-features i {
  color: var(--success-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.service-packages {
  background-color: #f6f9ff;
}

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

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

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

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

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

.package-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.package-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-lightest);
}

.package-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 1.25rem;
  color: var(--gray-medium);
}

.package-features {
  padding: 2rem;
}

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

.package-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.package-features i {
  width: 20px;
  margin-right: 0.75rem;
  text-align: center;
}

.package-features i.fa-check {
  color: var(--success-color);
}

.package-features i.fa-times {
  color: var(--gray-light);
}

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

.custom-package {
  margin-top: 3rem;
  text-align: center;
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.custom-package h3 {
  margin-bottom: 1rem;
}

.custom-package p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: var(--gray-medium);
}

.testimonials {
  background-color: white;
}

.testimonial-slider {
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.testimonial {
  padding: 0 1rem;
}

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

.testimonial-content::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50px;
  width: 30px;
  height: 30px;
  background-color: #f6f9ff;
  transform: rotate(45deg);
  z-index: 1;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  padding-left: 2rem;
}

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

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

.author-info p {
  margin-bottom: 0;
  color: var(--gray-medium);
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .service-content {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  
  .service-detail.alt .service-content {
    flex-direction: column-reverse;
  }
  
  .package-card.featured {
    transform: none;
  }
  
  .package-card.featured:hover {
    transform: translateY(-10px);
  }
}

/* Blog Page Styles */
.blog-intro {
  background-color: white;
}

.blog-categories {
  margin-top: 2rem;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.category-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f6f9ff;
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

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

.blog-grid {
  display: flex;
  gap: 2rem;
  background-color: #f6f9ff;
}

.blog-posts {
  flex: 2;
}

.blog-sidebar {
  flex: 1;
}

.blog-post {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.post-image {
  height: 300px;
  overflow: hidden;
}

.post-image a {
  display: block;
  height: 100%;
}

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

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

.post-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

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

.post-category {
  background-color: #f6f9ff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.post-content h2 {
  margin-bottom: 1rem;
  line-height: 1.4;
}

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

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

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-lightest);
}

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

.post-stats span {
  display: flex;
  align-items: center;
  color: var(--gray-medium);
  font-size: 0.875rem;
}

.post-stats i {
  margin-right: 0.5rem;
}

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

.sidebar-widget h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

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

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

.search-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-lightest);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.search-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 1rem;
  background-color: transparent;
  border: none;
  color: var(--gray-medium);
}

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

.categories-widget li {
  border-bottom: 1px solid var(--gray-lightest);
  padding: 0.75rem 0;
}

.categories-widget li:last-child {
  border-bottom: none;
}

.categories-widget a {
  display: flex;
  justify-content: space-between;
  color: var(--gray-dark);
  transition: var(--transition);
}

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

.categories-widget span {
  color: var(--gray-medium);
  font-size: 0.875rem;
}

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

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

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

.popular-post img {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.popular-post-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: var(--dark-color);
  transition: var(--transition);
}

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

.popular-post-content .post-date {
  font-size: 0.8125rem;
}

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

.newsletter-form input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-lightest);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

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

.tag-cloud a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f6f9ff;
  color: var(--gray-medium);
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  transition: var(--transition);
}

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

@media (max-width: 992px) {
  .blog-grid {
    flex-direction: column;
  }
  
  .post-image {
    height: 250px;
  }
}

/* About Page Styles */
.about-intro {
  background-color: white;
}

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

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
}

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

.mission-vision {
  background-color: #f6f9ff;
}

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

.mission-box, .vision-box, .values-box {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.mission-box:hover, .vision-box:hover, .values-box:hover {
  transform: translateY(-10px);
}

.mission-box .icon, .vision-box .icon, .values-box .icon {
  width: 70px;
  height: 70px;
  background-color: #f0f5ff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

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

.values-box li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.values-box strong {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.team-section {
  background-color: white;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-medium);
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

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

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

.member-image {
  height: 300px;
  overflow: hidden;
}

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

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 1.5rem;
}

.member-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.member-bio {
  color: var(--gray-medium);
  margin-bottom: 1rem;
}

.member-social {
  display: flex;
  gap: 0.75rem;
}

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

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

.approach-section {
  background-color: #f6f9ff;
}

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

.approach-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.approach-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 25px;
  width: 2px;
  height: calc(100% - 30px);
  background-color: var(--primary-light);
}

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

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

.achievements-section {
  background-color: white;
}

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

.achievement-card {
  text-align: center;
  padding: 2rem;
  background-color: #f6f9ff;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

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

.achievement-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

.partners-section {
  background-color: #f6f9ff;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.partner-logo {
  height: 80px;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 992px) {
  .about-grid {
    flex-direction: column;
  }
}

/* Contact Page Styles */
.contact-section {
  background-color: white;
}

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

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

.contact-info > p {
  margin-bottom: 2rem;
  color: var(--gray-medium);
}

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

.info-icon {
  width: 50px;
  height: 50px;
  background-color: #f6f9ff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

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

.info-content p:last-child {
  margin-bottom: 0;
}

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

.social-connect h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.company-info p {
  margin-bottom: 0.5rem;
  color: var(--gray-medium);
  font-size: 0.875rem;
}

.contact-form-container {
  background-color: #f6f9ff;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

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

.contact-form-container > p {
  margin-bottom: 2rem;
  color: var(--gray-medium);
}

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

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

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

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--gray-dark);
}

.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-lightest);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-body);
}

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

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

.checkbox-group input {
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-weight: normal;
  color: var(--gray-medium);
  font-size: 0.875rem;
}

.map-section {
  background-color: #f6f9ff;
}

.map-container {
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-top: 2rem;
}

.faq-section {
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--gray-lightest);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: #f6f9ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.125rem;
  margin-bottom: 0;
}

.faq-toggle {
  font-size: 1.25rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

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

.modal.show {
  display: flex;
}

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

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

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

.thank-you-content i {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.thank-you-content h2 {
  margin-bottom: 1rem;
}

.thank-you-content p {
  margin-bottom: 2rem;
  color: var(--gray-medium);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
}

/* Blog Post Styles */
.blog-post-single {
  background-color: #f6f9ff;
  padding: 5rem 0;
}

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

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.post-excerpt {
  font-size: 1.25rem;
  color: var(--gray-medium);
  margin-bottom: 0;
}

.blog-post-single .post-image {
  height: 500px;
  margin-bottom: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-content-wrapper {
  display: flex;
  gap: 3rem;
}

.blog-post-single .post-content {
  flex: 2;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.post-sidebar {
  flex: 1;
}

.blog-post-single h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.blog-post-single h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.image-caption {
  text-align: center;
  padding: 1rem;
  background-color: #f6f9ff;
  color: var(--gray-medium);
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 0;
}

.post-quote {
  margin: 2.5rem 0;
  padding: 2rem;
  background-color: #f6f9ff;
  border-left: 4px solid var(--primary-color);
  border-radius: var(--border-radius);
}

.post-quote blockquote {
  margin: 0;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gray-dark);
}

.post-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
}

.post-formula {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background-color: #f6f9ff;
  border-radius: var(--border-radius);
  text-align: center;
  font-family: 'Courier New', monospace;
}

.post-cta {
  margin: 3rem 0 1rem;
  padding: 2rem;
  background-color: #f6f9ff;
  border-radius: var(--border-radius);
  text-align: center;
}

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

.post-cta p {
  margin-bottom: 1.5rem;
  color: var(--gray-medium);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
}

.nav-previous, .nav-next {
  max-width: 48%;
}

.nav-previous a, .nav-next a {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.nav-previous a:hover, .nav-next a:hover {
  transform: translateY(-5px);
}

.nav-subtitle {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.nav-previous .nav-subtitle i {
  margin-right: 0.5rem;
}

.nav-next .nav-subtitle i {
  margin-left: 0.5rem;
}

.nav-title {
  color: var(--gray-dark);
  font-weight: 600;
}

.nav-next {
  text-align: right;
}

.nav-next .nav-subtitle {
  justify-content: flex-end;
}

.post-comments {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.post-comments > h3 {
  margin-bottom: 2rem;
}

.comment {
  display: flex;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-lightest);
}

.comment:last-of-type {
  border-bottom: none;
}

.comment-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.comment-meta h4 {
  margin-bottom: 0;
  font-size: 1.125rem;
}

.comment-date {
  color: var(--gray-medium);
  font-size: 0.875rem;
}

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

.comment-actions {
  display: flex;
  gap: 1rem;
}

.reply-btn {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
}

.comment-likes {
  color: var(--gray-medium);
  font-size: 0.875rem;
}

.comment-likes i {
  margin-right: 0.25rem;
}

.comment-form-container {
  margin-top: 3rem;
}

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

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

.author-bio h4 {
  margin-bottom: 0.5rem;
}

.author-bio p {
  color: var(--gray-medium);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.author-social {
  display: flex;
  gap: 0.75rem;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f6f9ff;
  color: var(--primary-color);
  font-size: 0.875rem;
  transition: var(--transition);
}

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

.related-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-post {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.related-post a {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.related-post img {
  width: 80px;
  height: 60px;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.related-post h4 {
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.4;
  color: var(--gray-dark);
  transition: var(--transition);
}

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

.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.share-button {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
}

.share-button i {
  margin-right: 0.75rem;
  width: 20px;
  text-align: center;
}

.share-button.facebook {
  background-color: #3b5998;
}

.share-button.twitter {
  background-color: #1da1f2;
}

.share-button.linkedin {
  background-color: #0077b5;
}

.share-button.email {
  background-color: var(--gray-medium);
}

.share-button:hover {
  opacity: 0.9;
  color: white;
}

@media (max-width: 992px) {
  .post-content-wrapper {
    flex-direction: column;
  }
  
  .blog-post-single .post-image {
    height: 300px;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .post-excerpt {
    font-size: 1.125rem;
  }
}
