/* Base styles for blog pages */
.blog-header {
    background-color: #f8f4f0;
    padding: 6rem 0 4rem;
    text-align: center;
  }
  
  .blog-header h1 {
    font-family: 'Forum', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #362617;
  }
  
  .blog-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #6c584c;
  }
  
  /* Featured post styling */
  .featured-post {
    padding: 4rem 0;
    background-color: #fff;
  }
  
  .featured-post-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  
  .featured-post-image {
    flex: 1;
    max-width: 100%;
  }
  
  .featured-post-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .featured-post-text {
    flex: 1;
    padding: 1rem;
  }
  
  .post-category {
    display: inline-block;
    background-color: #ddbea9;
    color: #362617;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
  }
  
  .featured-post-text h2 {
    font-family: 'Forum', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #362617;
  }
  
  .post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c584c;
    margin-bottom: 1rem;
  }
  
  .post-excerpt {
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  /* Blog grid styling */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .blog-card:hover .blog-image img {
    transform: scale(1.05);
  }
  
  .blog-image .post-category {
    position: absolute;
    top: 12px;
    right: 12px;
  }
  
  .blog-content {
    padding: 1.5rem;
  }
  
  .blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }
  
  .blog-content h3 a {
    color: #362617;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .blog-content h3 a:hover {
    color: #ddbea9;
  }
  
  .read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #cb997e;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .read-more:hover {
    color: #a5a58d;
  }
  
  /* Blog sidebar */
  .blog-sidebar {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .sidebar-section {
    background-color: #f8f4f0;
    padding: 1.5rem;
    border-radius: 8px;
  }
  
  .sidebar-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #362617;
    border-bottom: 2px solid #ddbea9;
    padding-bottom: 0.5rem;
  }
  
  .category-list {
    list-style: none;
    padding: 0;
  }
  
  .category-list li {
    margin-bottom: 0.75rem;
  }
  
  .category-list a {
    color: #6c584c;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .category-list a:hover {
    color: #ddbea9;
  }
  
  .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .tag {
    display: inline-block;
    background-color: #fff;
    color: #6c584c;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .tag:hover {
    background-color: #ddbea9;
    color: #fff;
  }
  
  .cta-section {
    background-color: #6c584c;
    color: #fff;
    text-align: center;
  }
  
  .cta-section h3 {
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .cta-section .button {
    background-color: #ddbea9;
    color: #362617;
    margin-top: 1rem;
  }
  
  .cta-section .button:hover {
    background-color: #fff;
  }
  
  /* Newsletter section */
  .newsletter {
    background-color: #a5a58d;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
  }
  
  .newsletter-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .newsletter h2 {
    font-family: 'Forum', serif;
    margin-bottom: 1rem;
  }
  
  .newsletter p {
    margin-bottom: 2rem;
  }
  
  .newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
  }
  
  .privacy-note {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  /* Blog post page styles */
  .blog-post-page .post-meta {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .blog-post-header {
    background-color: #f8f4f0;
    padding: 6rem 0 2rem;
    text-align: center;
  }
  
  .blog-post-header h1 {
    font-family: 'Forum', serif;
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #362617;
  }
  
  .blog-post {
    padding: 4rem 0;
  }
  
  .blog-post .container {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(250px, 1fr);
    gap: 3rem;
  }
  
  .post-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .post-featured-image {
    margin: -2rem -2rem 2rem;
  }
  
  .post-featured-image img {
    width: 100%;
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  
  .post-introduction {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #6c584c;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f0e9e2;
    padding-bottom: 2rem;
  }
  
  .table-of-contents {
    background-color: #f8f4f0;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
  }
  
  .table-of-contents h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #362617;
  }
  
  .table-of-contents ul {
    padding-left: 1.5rem;
  }
  
  .table-of-contents li {
    margin-bottom: 0.5rem;
  }
  
  .table-of-contents a {
    color: #6c584c;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .table-of-contents a:hover {
    color: #ddbea9;
  }
  
  .post-content section {
    margin-bottom: 3rem;
  }
  
  .post-content h2 {
    font-family: 'Forum', serif;
    font-size: 1.8rem;
    color: #362617;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0e9e2;
  }
  
  .post-content h3 {
    font-size: 1.4rem;
    color: #6c584c;
    margin: 1.5rem 0 1rem;
  }
  
  .post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }
  
  .post-content ul, .post-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
  }
  
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
  }
  
  .comparison-table th, .comparison-table td {
    padding: 0.75rem;
    border: 1px solid #ddbea9;
    text-align: left;
  }
  
  .comparison-table th {
    background-color: #f8f4f0;
    font-weight: 600;
  }
  
  .comparison-table tr:nth-child(even) {
    background-color: #f8f4f0;
  }
  
  .pro-con-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .pros, .cons {
    padding: 1.5rem;
    border-radius: 8px;
  }
  
  .pros {
    background-color: #f0f5e9;
  }
  
  .cons {
    background-color: #f9eeee;
  }
  
  .pros h4, .cons h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .tip-box {
    background-color: #eff1e4;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #a5a58d;
    margin: 2rem 0;
  }
  
  .price-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .price-card {
    background-color: #f8f4f0;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
  }
  
  .price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  
  .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6c584c;
    margin-bottom: 0.5rem;
  }
  
  .service-time {
    color: #a5a58d;
    font-style: italic;
    margin-bottom: 1rem;
  }
  
  .conclusion-note {
    background-color: #f8f4f0;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
  }
  
  .cta-box {
    background-color: #ddbea9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
  }
  
  .cta-box h3 {
    color: #362617;
    margin-bottom: 1rem;
  }
  
  .cta-box .button {
    background-color: #fff;
    color: #6c584c;
    margin: 1rem 0;
  }
  
  .cta-box .button:hover {
    background-color: #362617;
    color: #fff;
  }
  
  .author-bio {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: #f8f4f0;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 3rem 0;
  }
  
  .author-bio img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .author-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .related-posts {
    margin: 3rem 0;
  }
  
  .related-posts h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .related-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.75rem;
  }
  
  .related-post h4 {
    font-size: 1.1rem;
  }
  
  .related-post a {
    text-decoration: none;
    color: #362617;
    transition: color 0.3s ease;
  }
  
  .related-post a:hover {
    color: #ddbea9;
  }
  
  .social-share {
    text-align: center;
    margin: 3rem 0;
  }
  
  .share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f4f0;
    border-radius: 50%;
    color: #6c584c;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .share-buttons a:hover {
    background-color: #ddbea9;
    color: #fff;
  }
  
  .comments-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #f0e9e2;
  }
  
  /* Sidebar styles */
  .post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 100px;
    align-self: start;
  }
  
  .sidebar-links {
    list-style: none;
    padding: 0;
  }
  
  .sidebar-links li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .sidebar-links a {
    text-decoration: none;
    color: #6c584c;
    transition: color 0.3s ease;
  }
  
  .sidebar-links a:hover {
    color: #ddbea9;
  }
  
  .sidebar-recent-posts {
    list-style: none;
    padding: 0;
  }
  
  .sidebar-recent-posts li {
    margin-bottom: 1rem;
  }
  
  .sidebar-recent-posts a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #6c584c;
  }
  
  .sidebar-recent-posts img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .sidebar-recent-posts a:hover span {
    color: #ddbea9;
  }
  
  .instagram-follow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #e1306c;
    color: #fff;
    padding: 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  .instagram-follow:hover {
    opacity: 0.9;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .featured-post-content {
      flex-direction: column;
    }
    
    .blog-post .container {
      grid-template-columns: 1fr;
    }
    
    .post-sidebar {
      margin-top: 3rem;
      position: static;
    }
    
    .pro-con-box,
    .price-comparison {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .blog-header h1 {
      font-size: 2.5rem;
    }
    
    .blog-post-header h1 {
      font-size: 2rem;
    }
    
    .post-content {
      padding: 1.5rem;
    }
    
    .post-featured-image {
      margin: -1.5rem -1.5rem 1.5rem;
    }
    
    .author-bio {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .newsletter-form {
      flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form .button {
      width: 100%;
    }
  }
  
  /* Home page blog and FAQ preview sections */
  .recent-posts {
    background-color: var(--background-alt);
    padding: var(--space-xl) 0;
  }
  
  .blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
  }
  
  .blog-preview-card {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
  }
  
  .blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .blog-preview-image {
    height: 200px;
    overflow: hidden;
  }
  
  .blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
  }
  
  .blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.05);
  }
  
  .blog-preview-title {
    padding: var(--space-sm) var(--space-sm) 0;
    font-size: 1.3rem;
    color: var(--title-color);
  }
  
  .blog-preview-excerpt {
    padding: 0 var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  .blog-preview-cta {
    text-align: center;
    margin-top: var(--space-md);
  }
  
  /* FAQ Preview Section */
  .faq-preview {
    padding: var(--space-xl) 0;
    background-color: white;
  }
  
  .faq-preview-accordion {
    max-width: 800px;
    margin: var(--space-md) auto;
  }
  
  .faq-preview-item {
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  
  .faq-preview-question {
    width: 100%;
    background-color: var(--background-alt);
    border: none;
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--title-color);
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-normal);
  }
  
  .faq-preview-question:hover {
    background-color: var(--primary-light);
  }
  
  .faq-preview-question.active {
    background-color: var(--primary-color);
    color: white;
  }
  
  .faq-preview-icon {
    font-size: 1.5rem;
    font-weight: 300;
  }
  
  .faq-preview-answer {
    background-color: white;
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
  }
  
  .faq-preview-answer p {
    padding: var(--space-sm) 0 var(--space-md);
    line-height: 1.6;
  }
  
  .faq-preview-cta {
    text-align: center;
    margin-top: var(--space-md);
  }
  
  /* Footer Locations */
  .footer-locations {
    margin: var(--space-sm) 0;
  }
  
  .footer-locations h4 {
    color: white;
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
  }
  
  .footer-locations p {
    color: #ddd;
    font-size: 0.9rem;
  }
  
  /* Breadcrumbs for subpages */
  .breadcrumbs {
    background-color: #f8f4f0;
    padding: 1rem 0;
  }
  
  .breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .breadcrumbs-item {
    display: flex;
    align-items: center;
    color: #6c584c;
  }
  
  .breadcrumbs-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #ddbea9;
  }
  
  .breadcrumbs-link {
    color: #6c584c;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .breadcrumbs-link:hover {
    color: #ddbea9;
  }
  
  .breadcrumbs-current {
    color: #ddbea9;
    font-weight: 500;
  }
  
  /* Additional responsive adjustments for header navigation */
  @media (max-width: 991px) {
    .main-nav .menu li a[href="/faq.html"],
    .main-nav .menu li a[href="/blog/index.html"] {
      display: block;
    }
  }
  
  @media (max-width: 768px) {
    .blog-preview-grid {
      grid-template-columns: 1fr;
    }
    
    .faq-preview-question {
      font-size: 1rem;
      padding: 0.75rem 1rem;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 2rem;
      text-align: center;
    }
  }
  
  /* Print styles */
  @media print {
    .blog-preview-section,
    .faq-preview-section,
    .footer-social,
    .back-to-top {
      display: none;
    }
    
    .footer-locations p {
      color: #333;
    }
  }