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

:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #10b981;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --text-lighter: #9ca3af;
  --bg-white: #ffffff;
  --bg-gray: #f9fafb;
  --bg-gray-dark: #f3f4f6;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --max-width: 1280px;
  --transition: all 0.3s ease;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

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

.main-navigation {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-section img {
  border-radius: 8px;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
  padding: 8px 0;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 40px 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-block;
}

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

.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid white;
  display: inline-block;
}

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

.main-content {
  padding: 60px 0;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

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

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

.intro-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.icon-wrapper {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.intro-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.intro-card p {
  color: var(--text-light);
}

.featured-posts {
  padding: 80px 0;
}

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

.post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.post-image-wrapper {
  position: relative;
  overflow: hidden;
}

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

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

.post-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.post-content {
  padding: 25px;
}

.post-title {
  font-size: 1.375rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 700;
}

.post-excerpt {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.6;
}

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.875rem;
  color: var(--text-lighter);
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

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

.cta-center {
  text-align: center;
  margin-top: 50px;
}

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

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-intro {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.7;
}

.benefits-list {
  list-style: none;
  margin-bottom: 30px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.benefits-list svg {
  color: var(--secondary-color);
  flex-shrink: 0;
}

.benefits-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.testimonials-section {
  padding: 80px 0;
}

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

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.testimonial-text {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-author strong {
  display: block;
  color: var(--text-dark);
}

.testimonial-author span {
  display: block;
  color: var(--text-lighter);
  font-size: 0.875rem;
}

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

.newsletter-box {
  background: white;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-box p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
}

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

.site-footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-size: 1.125rem;
}

.footer-section p {
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #374151;
  color: #9ca3af;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.cookie-text p {
  color: var(--text-light);
  margin-bottom: 10px;
}

.cookie-policy-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

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

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-customize {
  background: var(--bg-gray);
  color: var(--text-dark);
}

.cookie-customize:hover {
  background: var(--bg-gray-dark);
}

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

.cookie-decline:hover {
  background: var(--bg-gray);
}

.customize-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
}

.modal-content h3 {
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.cookie-option {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

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

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 5px;
}

.cookie-option p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-left: 30px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.page-description {
  font-size: 1.25rem;
  opacity: 0.95;
}

.blog-section {
  padding: 60px 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.blog-post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

.blog-post-image {
  position: relative;
  overflow: hidden;
}

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

.post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-post-content {
  padding: 40px;
}

.blog-post-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-excerpt {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-read-more {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

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

.blog-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.widget-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

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

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  transition: var(--transition);
}

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

.category-list span {
  color: var(--text-lighter);
}

.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-post-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
}

.popular-post-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.popular-post-item a {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

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

.popular-date {
  color: var(--text-lighter);
  font-size: 0.875rem;
}

.sidebar-newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-newsletter input {
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
}

.sidebar-newsletter input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.about-intro {
  padding: 80px 0;
}

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

.about-intro-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
}

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

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

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

.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

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

.team-card h3 {
  padding: 20px 25px 10px;
  font-size: 1.375rem;
  color: var(--text-dark);
}

.team-role {
  padding: 0 25px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-bio {
  padding: 0 25px 25px;
  color: var(--text-light);
  line-height: 1.6;
}

.values-section {
  padding: 80px 0;
}

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

.value-card {
  text-align: center;
  padding: 40px 30px;
}

.value-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.375rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

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

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 50px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -35px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-content h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 1.125rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.contact-section {
  padding: 60px 0;
}

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

.contact-details {
  margin-top: 30px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-detail-item h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-detail-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-detail-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.business-hours {
  background: var(--bg-gray);
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
}

.business-hours h3 {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.business-hours ul {
  list-style: none;
}

.business-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.business-hours li:last-child {
  border-bottom: none;
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

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

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
}

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

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.faq-section {
  padding: 80px 0;
}

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

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.success-modal-content {
  background: white;
  padding: 50px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
}

.success-icon {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.success-modal-content h2 {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.success-modal-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.post-article {
  background: white;
}

.post-header {
  padding: 40px 0 20px;
}

.post-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.back-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--primary-dark);
}

.post-title-main {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.post-meta-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-info img {
  border-radius: 50%;
}

.author-name {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
}

.author-info time {
  display: block;
  color: var(--text-lighter);
  font-size: 0.9rem;
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-lighter);
}

.post-featured-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-bottom: 60px;
}

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

.post-content-wrapper {
  padding: 0 0 80px;
}

.post-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.post-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.lead-paragraph {
  font-size: 1.375rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: 500;
}

.post-content h2 {
  font-size: 2rem;
  margin-top: 50px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.post-content h3 {
  font-size: 1.5rem;
  margin-top: 35px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

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

.post-content li {
  margin-bottom: 10px;
}

.post-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.table-of-contents {
  list-style: none;
}

.table-of-contents li {
  margin-bottom: 10px;
}

.table-of-contents a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.table-of-contents a:hover {
  color: var(--primary-color);
}

.related-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-post-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  align-items: center;
  transition: var(--transition);
}

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

.related-post-item img {
  border-radius: 8px;
}

.related-post-item span {
  color: var(--text-dark);
  font-weight: 600;
}

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

.share-btn {
  background: var(--bg-gray);
  color: var(--text-dark);
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

.related-posts-section {
  padding: 80px 0;
  background: var(--bg-gray);
}

.key-points {
  list-style: none;
}

.key-points li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

.key-points li:last-child {
  border-bottom: none;
}

.tools-list {
  list-style: none;
}

.tools-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.05rem;
}

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

@media (max-width: 968px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .benefits-layout,
  .about-intro-layout,
  .contact-layout,
  .blog-layout,
  .post-layout {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 2.25rem;
  }
  
  .post-title-main {
    font-size: 2rem;
  }
  
  .post-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .newsletter-form,
  .form-row {
    flex-direction: column;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}