/* Base Styles */
:root {
  --primary-color: #1e5f94;
  --primary-dark: #12456e;
  --primary-light: #2a77b5;
  --secondary-color: #ff6b35;
  --secondary-dark: #e05626;
  --secondary-light: #ff8a5e;
  --neutral-100: #ffffff;
  --neutral-200: #f5f7fa;
  --neutral-300: #e9ecef;
  --neutral-400: #dee2e6;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-secondary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --transition-default: all 0.3s ease;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --box-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --box-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --container-width: 1200px;
  --container-padding: 1rem;
}

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

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

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--neutral-200);
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style-type: none;
}

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-default);
  border: none;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  line-height: 1.4;
}

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

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

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

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

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

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

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

/* Header */
header {
  background-color: var(--neutral-100);
  box-shadow: var(--box-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--container-padding);
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
}

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

.main-nav a {
  color: var(--neutral-800);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  position: relative;
}

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

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

.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin-bottom: 5px;
  background-color: var(--neutral-800);
  border-radius: 3px;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--neutral-100);
  text-align: center;
  padding: 8rem 0;
}

.hero-content {
  max-width: 800px;
}

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

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

.page-banner h1 {
  color: var(--neutral-100);
  margin-bottom: 0.5rem;
}

.page-banner p {
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* Summary Section */
.summary {
  padding: 2rem 0;
}

.summary-card {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--box-shadow-md);
  margin-bottom: 2rem;
}

.summary-card h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

/* Services Section */
.services {
  padding: 4rem 0;
}

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

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

.service-card {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-default);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

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

.service-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
}

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

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 4rem 0;
  background-color: var(--neutral-100);
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.feature {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  background-color: var(--neutral-200);
  transition: var(--transition-default);
}

.feature:hover {
  transform: scale(1.05);
  background-color: var(--neutral-100);
  box-shadow: var(--box-shadow-md);
}

.feature-icon {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature p {
  margin-bottom: 0;
}

/* Terminology Section */
.terminology {
  padding: 4rem 0;
}

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

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

.term {
  background-color: var(--neutral-100);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-sm);
}

.term h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.term p {
  margin-bottom: 0;
}

/* Recent Posts Section */
.recent-posts {
  padding: 4rem 0;
  background-color: var(--neutral-100);
}

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

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

.post-card {
  background-color: var(--neutral-200);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-default);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

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

.post-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.25rem;
}

.post-card p {
  padding: 0 1.5rem;
  color: var(--neutral-700);
}

.read-more {
  display: inline-block;
  padding: 0 1.5rem 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

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

.blog-cta {
  text-align: center;
  margin-top: 3rem;
}

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

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

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

.testimonial {
  background-color: var(--neutral-100);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-md);
  text-align: center;
}

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

.testimonial-content p::before, .testimonial-content p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--primary-color);
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.testimonial-author p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--neutral-600);
}

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

.prev-btn, .next-btn {
  background-color: var(--neutral-100);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-default);
  color: var(--primary-color);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-color);
  color: var(--neutral-100);
}

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

.cta-section h2 {
  color: var(--neutral-100);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 4rem 0 2rem;
}

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

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

.footer-logo p {
  font-size: 0.875rem;
  color: var(--neutral-400);
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
  color: var(--neutral-100);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

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

.footer-links ul li a {
  color: var(--neutral-400);
}

.footer-links ul li a:hover {
  color: var(--neutral-100);
}

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

.footer-contact p svg {
  margin-right: 0.5rem;
}

.footer-contact p a {
  color: var(--neutral-400);
}

.footer-contact p a:hover {
  color: var(--neutral-100);
}

.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: var(--neutral-700);
  color: var(--neutral-200);
  transition: var(--transition-default);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--neutral-100);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-700);
}

.legal-links {
  margin-bottom: 1rem;
}

.legal-links a {
  color: var(--neutral-400);
  font-size: 0.875rem;
  margin: 0 0.75rem;
}

.legal-links a:hover {
  color: var(--neutral-100);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--neutral-100);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 1001;
  display: none;
}

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

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

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

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

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

.service-item {
  display: flex;
  margin-bottom: 4rem;
  gap: 2rem;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  min-width: 300px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}

.service-description {
  flex: 2;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-description ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-description ul li {
  margin-bottom: 0.5rem;
}

.specialized-services {
  padding: 4rem 0;
  background-color: var(--neutral-100);
}

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

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

.specialized-card {
  background-color: var(--neutral-200);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-default);
}

.specialized-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

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

.specialized-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
}

.specialized-card .service-price {
  padding: 0 1.5rem;
  margin-bottom: 0.5rem;
}

.specialized-card p {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.specialized-card .btn {
  margin: 0 1.5rem 1.5rem;
}

.service-process {
  padding: 4rem 0;
}

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

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

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

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

.step-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

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

.faq {
  padding: 4rem 0;
  background-color: var(--neutral-100);
}

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

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

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--neutral-200);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.toggle-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.faq-answer p {
  padding: 1.5rem 0;
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

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

/* Blog Page Specific Styles */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-card {
  display: flex;
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-default);
}

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

.blog-image {
  flex: 1;
  min-width: 300px;
}

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

.blog-content {
  flex: 2;
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--neutral-600);
}

.blog-card h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.blog-card h2 a {
  color: var(--neutral-900);
}

.blog-card h2 a:hover {
  color: var(--primary-color);
}

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

/* Blog Single Post Styles */
.blog-single-header {
  background-color: var(--primary-color);
  color: var(--neutral-100);
  padding: 4rem 0;
  text-align: center;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.blog-single-header h1 {
  color: var(--neutral-100);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-single {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.blog-content {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--box-shadow-sm);
}

.featured-image {
  margin: -2rem -2rem 2rem;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  overflow: hidden;
}

.blog-content h2 {
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.blog-content h3 {
  color: var(--primary-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

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

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

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

.blog-content li {
  margin-bottom: 0.5rem;
}

.blog-image {
  margin: 2.5rem 0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.blog-image img {
  width: 100%;
}

.blog-image figcaption {
  text-align: center;
  padding: 1rem;
  background-color: var(--neutral-200);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--neutral-700);
}

.info-box, .quote-box, .cta-box {
  margin: 2.5rem 0;
  padding: 2rem;
  border-radius: var(--border-radius-md);
}

.info-box {
  background-color: var(--neutral-200);
  border-left: 4px solid var(--primary-color);
}

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

.info-box p, .info-box ul {
  margin-bottom: 0;
}

.quote-box {
  background-color: var(--neutral-200);
  text-align: center;
}

.quote-box blockquote {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1rem;
}

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

.cta-box {
  background-color: var(--primary-light);
  color: var(--neutral-100);
  text-align: center;
}

.cta-box h3 {
  color: var(--neutral-100);
  margin-bottom: 1rem;
}

.cta-box p {
  margin-bottom: 1.5rem;
}

.cta-box .btn {
  margin: 0 0.5rem;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

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

.sidebar-widget h3 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--neutral-300);
  color: var(--primary-color);
}

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

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

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

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

.recent-post {
  display: flex;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--neutral-300);
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  margin-right: 1rem;
}

.recent-post h4 {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.recent-post .post-date {
  font-size: 0.75rem;
  color: var(--neutral-600);
}

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

.tag-cloud a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--neutral-200);
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  color: var(--neutral-700);
}

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

.related-posts {
  padding: 4rem 0;
  background-color: var(--neutral-200);
}

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

.comments {
  padding: 4rem 0;
}

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

.comment-form {
  max-width: 800px;
  margin: 0 auto 4rem;
  background-color: var(--neutral-100);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-sm);
}

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

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

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

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--neutral-400);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-secondary);
  font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.checkbox-group input {
  width: auto;
  margin-right: 0.5rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.form-submit {
  text-align: right;
}

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

.comment {
  background-color: var(--neutral-100);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-sm);
  margin-bottom: 1.5rem;
}

.comment-author {
  font-weight: 700;
  color: var(--primary-color);
}

.comment-date {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin-bottom: 1rem;
}

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

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

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

.contact-info {
  background-color: var(--primary-color);
  color: var(--neutral-100);
  padding: 2rem;
  border-radius: var(--border-radius-md);
}

.contact-info h2 {
  color: var(--neutral-100);
  margin-bottom: 2rem;
}

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

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

.info-content h3 {
  color: var(--neutral-100);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

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

.info-content a {
  color: var(--neutral-100);
}

.info-content a:hover {
  color: var(--neutral-300);
  text-decoration: underline;
}

.social-contact {
  margin-top: 2.5rem;
}

.social-contact h3 {
  color: var(--neutral-100);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.contact-info .social-icons a {
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-info .social-icons a:hover {
  background-color: var(--neutral-100);
  color: var(--primary-color);
}

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

.contact-form-container h2 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

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

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

.map-section {
  margin-top: 4rem;
}

.map-container {
  height: 450px;
  width: 100%;
}

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

.popup-content {
  background-color: var(--neutral-100);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  position: relative;
  max-width: 500px;
  width: 90%;
}

.close-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--neutral-600);
}

.close-popup:hover {
  color: var(--neutral-900);
}

.popup-content svg {
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.popup-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

.about-story {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}

.about-text {
  flex: 2;
}

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

.mission-values {
  padding: 4rem 0;
  background-color: var(--neutral-100);
}

.mission, .values {
  margin-bottom: 3rem;
}

.mission h2, .values h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.mission p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
  font-style: italic;
}

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

.value-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--neutral-200);
  border-radius: var(--border-radius-md);
  transition: var(--transition-default);
}

.value-item:hover {
  transform: scale(1.05);
  background-color: var(--neutral-100);
  box-shadow: var(--box-shadow-md);
}

.value-icon {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-icon svg {
  width: 40px;
  height: 40px;
}

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

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

.team-section {
  padding: 4rem 0;
}

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

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

.team-member {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-default);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

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

.team-member h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.team-member p {
  padding: 0 1.5rem;
  margin-bottom: 0.75rem;
}

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

.social-links {
  display: flex;
  gap: 0.75rem;
  padding: 0 1.5rem 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--neutral-200);
  color: var(--neutral-700);
}

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

.credentials {
  padding: 4rem 0;
  background-color: var(--neutral-100);
}

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

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

.credential {
  text-align: center;
  padding: 2rem;
  background-color: var(--neutral-200);
  border-radius: var(--border-radius-md);
  transition: var(--transition-default);
}

.credential:hover {
  transform: scale(1.05);
  background-color: var(--neutral-100);
  box-shadow: var(--box-shadow-md);
}

.credential-icon {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.credential-icon svg {
  width: 40px;
  height: 40px;
}

.credential h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.credential p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
  
  .blog-single {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    position: static;
    margin-top: 3rem;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
  
  .service-item, .service-item.reverse, .about-story {
    flex-direction: column;
  }
  
  .service-image, .about-image {
    min-width: 100%;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--neutral-100);
    box-shadow: var(--box-shadow-md);
    padding: 1rem 0;
    z-index: 1000;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .main-nav li {
    margin: 0;
    text-align: center;
  }
  
  .main-nav a {
    display: block;
    padding: 1rem 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .blog-card {
    flex-direction: column;
  }
  
  .blog-image {
    min-width: 100%;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}
