/* CSS Custom Properties */
:root {
  /* Colors - Lighting theme */
  --primary-color: 45 100% 60%; /* #FFD700 - Golden yellow */
  --primary-dark: 45 100% 50%; /* #FFCC00 */
  --secondary-color: 220 15% 25%; /* #3A4354 - Dark blue-gray */
  --accent-color: 35 100% 65%; /* #FFA500 - Orange accent */
  
  /* Neutral colors */
  --background: 210 11% 98%; /* #F5F7FA */
  --surface: 0 0% 100%; /* #FFFFFF */
  --text-primary: 220 20% 15%; /* #1F2937 */
  --text-secondary: 220 10% 45%; /* #6B7280 */
  --text-muted: 220 5% 65%; /* #9CA3AF */
  --border: 220 10% 90%; /* #E5E7EB */
  --border-light: 220 5% 95%; /* #F3F4F6 */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(45 100% 60%) 0%, hsl(35 100% 65%) 100%);
  --gradient-dark: linear-gradient(135deg, hsl(220 15% 25%) 0%, hsl(220 20% 15%) 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 4rem 0;
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
  color: hsl(var(--text-secondary));
}

/* Container and layout */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn-primary {
  background: var(--gradient-primary);
  color: hsl(var(--text-primary));
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: hsl(var(--secondary-color));
  color: hsl(var(--surface));
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: hsl(var(--secondary-color) / 0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: hsl(var(--text-primary));
  padding: 0.875rem 2rem;
  border: 2px solid hsl(var(--primary-color));
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition-normal);
}

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

.btn-full {
  width: 100%;
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: hsl(var(--surface) / 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
  transition: var(--transition-normal);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(var(--text-primary));
}

.logo {
  width: 40px;
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-menu a {
  color: hsl(var(--text-secondary));
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

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

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-normal);
}

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

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

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: hsl(var(--text-primary));
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-dark);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: hsl(var(--surface));
  max-width: 600px;
}

.hero-content h1 {
  color: hsl(var(--surface));
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: hsl(var(--surface) / 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

/* Sections */
section {
  padding: var(--section-padding);
}

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

.section-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  opacity: 0.8;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  background-color: hsl(var(--surface));
}

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

.service-card {
  background-color: hsl(var(--surface));
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid hsl(var(--border));
}

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

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.service-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(60%) sepia(100%) saturate(2000%) hue-rotate(0deg);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: hsl(var(--text-primary));
}

.service-card p {
  margin-bottom: 1.5rem;
  color: hsl(var(--text-secondary));
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  padding: 0.25rem 0;
  color: hsl(var(--text-secondary));
  position: relative;
  padding-left: 1.5rem;
}

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

/* About Section */
.about {
  background-color: hsl(var(--background));
}

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

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary-color));
  line-height: 1;
}

.stat-label {
  display: block;
  color: hsl(var(--text-secondary));
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

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

/* Reviews Section */
.reviews {
  background-color: hsl(var(--surface));
}

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

.review-card {
  background-color: hsl(var(--background));
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

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

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(60%) sepia(100%) saturate(2000%) hue-rotate(0deg);
}

.review-author {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.review-author strong {
  display: block;
  color: hsl(var(--text-primary));
}

.review-author span {
  color: hsl(var(--text-muted));
  font-size: 0.875rem;
}

/* Blog Section */
.blog-preview {
  background-color: hsl(var(--background));
}

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

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

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

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

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

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

.blog-content {
  padding: 1.5rem;
}

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

.blog-content h3 a {
  color: hsl(var(--text-primary));
  transition: var(--transition-fast);
}

.blog-content h3 a:hover {
  color: hsl(var(--primary-color));
}

.blog-date {
  color: hsl(var(--text-muted));
  font-size: 0.875rem;
}

.blog-cta {
  text-align: center;
}

/* Newsletter Section */
.newsletter {
  background: var(--gradient-primary);
  color: hsl(var(--text-primary));
}

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

.newsletter-text h2 {
  color: hsl(var(--text-primary));
  margin-bottom: 1rem;
}

.newsletter-text p {
  color: hsl(var(--text-primary) / 0.8);
}

.newsletter-form {
  max-width: 400px;
}

.form-group {
  display: flex;
  gap: 0.5rem;
}

.form-group input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-md);
  font-size: 1rem;
}

.form-note {
  font-size: 0.875rem;
  color: hsl(var(--text-primary) / 0.7);
  margin-top: 0.5rem;
}

/* Contact Section */
.contact {
  background-color: hsl(var(--surface));
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
  filter: brightness(0) saturate(100%) invert(60%) sepia(100%) saturate(2000%) hue-rotate(0deg);
}

.contact-item h3 {
  color: hsl(var(--text-primary));
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.contact-item p {
  color: hsl(var(--text-secondary));
  margin: 0;
}

.contact-item a {
  color: hsl(var(--primary-color));
  transition: var(--transition-fast);
}

.contact-item a:hover {
  color: hsl(var(--primary-dark));
}

/* Forms */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.form-group label {
  font-weight: 500;
  color: hsl(var(--text-primary));
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary-color));
  box-shadow: 0 0 0 3px hsl(var(--primary-color) / 0.1);
}

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

/* Footer */
.footer {
  background-color: hsl(var(--secondary-color));
  color: hsl(var(--surface));
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: hsl(var(--surface));
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section p {
  color: hsl(var(--surface) / 0.8);
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: hsl(var(--surface) / 0.8);
  transition: var(--transition-fast);
}

.footer-section ul li a:hover {
  color: hsl(var(--primary-color));
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  filter: brightness(0) saturate(100%) invert(100%);
}

.footer-logo span {
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(var(--surface));
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: hsl(var(--surface) / 0.8);
  transition: var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--surface) / 0.2);
  text-align: center;
}

.footer-bottom p {
  color: hsl(var(--surface) / 0.6);
  margin: 0;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background-color: hsl(var(--secondary-color));
  color: hsl(var(--surface));
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(100%);
  transition: var(--transition-normal);
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: hsl(var(--surface));
  padding: 2rem;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: 1.5rem;
  color: hsl(var(--text-primary));
}

.cookie-option {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid hsl(var(--border));
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 500;
  color: hsl(var(--text-primary));
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  margin-top: 0.25rem;
}

.cookie-option p {
  margin-top: 0.5rem;
  margin-left: 1.5rem;
  font-size: 0.875rem;
  color: hsl(var(--text-secondary));
}

/* Thank You Page */
.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

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

.thank-you-icon {
  margin-bottom: 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  filter: brightness(0) saturate(100%) invert(60%) sepia(100%) saturate(2000%) hue-rotate(0deg);
}

.thank-you-message {
  margin-bottom: 2rem;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.thank-you-info {
  background-color: hsl(var(--surface));
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.thank-you-info h3 {
  margin-bottom: 1rem;
  color: hsl(var(--text-primary));
}

.thank-you-info ul {
  list-style: none;
  padding: 0;
}

.thank-you-info ul li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: hsl(var(--text-secondary));
}

.thank-you-info ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: hsl(var(--primary-color));
  font-weight: bold;
}

/* Legal Pages */
.legal-page {
  padding: 6rem 0 4rem;
}

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

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.last-updated {
  color: hsl(var(--text-muted));
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal-content section {
  margin-bottom: 2rem;
  padding: 0;
}

.legal-content h2 {
  color: hsl(var(--text-primary));
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.legal-content h3 {
  color: hsl(var(--text-primary));
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  color: hsl(var(--text-secondary));
}

.contact-info {
  background-color: hsl(var(--background));
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.contact-info a {
  color: hsl(var(--primary-color));
}

.contact-info a:hover {
  color: hsl(var(--primary-dark));
}

/* Cookie Table */
.cookie-table {
  margin: 2rem 0;
}

.cookie-table h4 {
  margin-bottom: 1rem;
  color: hsl(var(--text-primary));
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.cookie-table th,
.cookie-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid hsl(var(--border));
}

.cookie-table th {
  background-color: hsl(var(--background));
  font-weight: 600;
  color: hsl(var(--text-primary));
}

.cookie-table td {
  color: hsl(var(--text-secondary));
}

/* Blog Page */
.blog-page {
  padding: 6rem 0 4rem;
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-header h1 {
  margin-bottom: 1rem;
}

.blog-page .blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.blog-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.blog-card.featured .blog-image {
  height: 300px;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-category {
  background-color: hsl(var(--primary-color) / 0.1);
  color: hsl(var(--primary-color));
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.blog-author {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
  font-size: 0.875rem;
  color: hsl(var(--text-muted));
}

.read-more {
  color: hsl(var(--primary-color));
  font-weight: 500;
  transition: var(--transition-fast);
}

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

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background-color: hsl(var(--surface));
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid hsl(var(--border));
}

.sidebar-widget h3 {
  margin-bottom: 1rem;
  color: hsl(var(--text-primary));
  font-size: 1.125rem;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid hsl(var(--border-light));
}

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

.category-list li a {
  color: hsl(var(--text-secondary));
  transition: var(--transition-fast);
}

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

.category-list li span {
  color: hsl(var(--text-muted));
  font-size: 0.875rem;
}

.sidebar-newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-newsletter input {
  padding: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

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

.popular-posts li {
  padding: 1rem 0;
  border-bottom: 1px solid hsl(var(--border-light));
}

.popular-posts li:last-child {
  border-bottom: none;
}

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

.post-title {
  color: hsl(var(--text-primary));
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.3;
  transition: var(--transition-fast);
}

.post-date {
  color: hsl(var(--text-muted));
  font-size: 0.75rem;
}

.popular-posts a:hover .post-title {
  color: hsl(var(--primary-color));
}

/* Article Page */
.article-page {
  padding: 6rem 0 4rem;
}

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

.breadcrumb {
  color: hsl(var(--text-muted));
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: hsl(var(--primary-color));
  transition: var(--transition-fast);
}

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

.article-header {
  margin-bottom: 3rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

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

.article-body {
  line-height: 1.8;
  font-size: 1.125rem;
}

.article-intro {
  font-size: 1.25rem;
  font-weight: 500;
  color: hsl(var(--text-primary));
  margin-bottom: 2rem;
  line-height: 1.6;
}

.article-body h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: hsl(var(--text-primary));
}

.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--text-primary));
}

.article-body ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  color: hsl(var(--text-secondary));
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tag {
  background-color: hsl(var(--background));
  color: hsl(var(--text-secondary));
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  border: 1px solid hsl(var(--border));
}

.article-share h4 {
  margin-bottom: 0.75rem;
  color: hsl(var(--text-primary));
}

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

.share-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-fast);
  border: 1px solid hsl(var(--border));
}

.share-btn.facebook {
  background-color: #1877F2;
  color: white;
  border-color: #1877F2;
}

.share-btn.twitter {
  background-color: #1DA1F2;
  color: white;
  border-color: #1DA1F2;
}

.share-btn.linkedin {
  background-color: #0A66C2;
  color: white;
  border-color: #0A66C2;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Article Sidebar */
.article-page .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.author-bio {
  background-color: hsl(var(--surface));
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid hsl(var(--border));
}

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

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-details h4 {
  margin-bottom: 0.5rem;
  color: hsl(var(--text-primary));
}

.author-details p {
  font-size: 0.875rem;
  color: hsl(var(--text-secondary));
  margin: 0;
}

.related-articles {
  background-color: hsl(var(--surface));
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid hsl(var(--border));
}

.related-articles ul {
  list-style: none;
  padding: 0;
}

.related-articles li {
  padding: 0.5rem 0;
  border-bottom: 1px solid hsl(var(--border-light));
}

.related-articles li:last-child {
  border-bottom: none;
}

.related-articles a {
  color: hsl(var(--text-secondary));
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.related-articles a:hover {
  color: hsl(var(--primary-color));
}

.cta-box {
  background: var(--gradient-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  color: hsl(var(--text-primary));
}

.cta-box h3 {
  color: hsl(var(--text-primary));
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: hsl(var(--text-primary) / 0.8);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content,
  .newsletter-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .article-page .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-page .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card.featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background-color: hsl(var(--surface));
    flex-direction: column;
    padding: 2rem 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    transition: var(--transition-normal);
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .blog-sidebar {
    order: -1;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .share-buttons {
    flex-direction: column;
  }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-color-scheme: dark) {
  /* Dark mode styles would go here if needed */
}

/* Print styles */
@media print {
  .header,
  .footer,
  .cookie-notice,
  .cookie-modal,
  .share-buttons {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .container {
    max-width: none;
    margin: 0;
    padding: 0;
  }
}
