/* Typography and Layout */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Roboto', sans-serif;
    background-color: #f7f7f5;
    color: #1a1a1a;
    line-height: 1.6;
  }
  
  a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  a:hover {
    color: #1a1a1a;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #2e2e2e;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Header */
  header {
    background-color: #e8e6da;
    padding: 1rem 2rem;
    border-bottom: 1px solid #dcdcdc;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2e2e2e;
  }
  
  /* Navigation */
  nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 0;
  }
  
  nav a {
    font-weight: 500;
    padding: 0.5rem;
  }
  
  .nav-active {
    border-bottom: 2px solid #556b2f;
  }
  
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2e2e2e;
    cursor: pointer;
  }
  
  /* Button */
  .btn {
    background-color: #556b2f;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
    display: inline-block;
  }
  
  .btn:hover {
    background-color: #708238;
    color: white;
  }
  
/* About Section */
.about {
    padding: 4rem 0;
    background-color: #ffffff;
  }
  
  .about-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
  }
  
  /* Image container */
  .about-img {
    flex: 1 1 250px;
    max-width: 600px;
  }
  
  .about-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  /* Text container */
  .about-text {
    flex: 2 1 300px;
    max-width: 600px;
  }
  
  .about-text h2 {
    margin-top: 0;
    font-size: 2rem;
  }
  
  /* Blog Section */
  .blog, .blog-content {
    padding: 4rem 0;
    background-color: #f7f7f5;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .blog-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .blog-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .blog-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .blog-card .blog-content {
    padding: 1.5rem;
    background-color: #ffffff;
  }
  
  .blog-title {
    font-size: 1.25rem;
    margin: 0.5rem 0;
  }
  
  .blog-date {
    color: #666;
    font-size: 0.9rem;
  }
  
  .blog-excerpt {
    margin-top: 0.75rem;
    flex-grow: 1;
  }
  
  .category-tag {
    display: inline-block;
    background-color: #e8e6da;
    color: #556b2f;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .blog-card .btn {
    margin-top: 1rem;
    align-self: flex-start;
  }
  
  /* Page Header */
  .page-header {
    background-color: #e8e6da;
    padding: 3rem 0;
    text-align: center;
  }
  
  .page-header h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }
  
  .page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #333;
  }
  
  /* Pagination */
  .pagination {
    display: flex;
    justify-content: center;
    margin: 3rem 0 1rem;
  }
  
  .pagination a {
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 4px;
    background-color: #e8e6da;
    color: #556b2f;
    transition: background-color 0.2s ease;
  }
  
  .pagination a:hover {
    background-color: #d0cebf;
  }
  
  .pagination a.active {
    background-color: #556b2f;
    color: white;
  }
  
  /* Blog Post Specific Styles */
  .blog-post-header {
    background-color: #e8e6da;
    padding: 3rem 0 2rem;
  }
  
  .blog-post-header h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }
  
  .post-meta {
    margin-bottom: 1rem;
    color: #666;
  }
  
  .post-meta .divider {
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #666;
    border-radius: 50%;
    margin: 0 0.5rem;
    vertical-align: middle;
  }
  
  .featured-image {
    margin: 2rem 0 0;
  }
  
  .featured-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .blog-post-content {
    padding: 3rem 0;
    background-color: #ffffff;
  }
  
  .blog-post-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
  }
  
  .blog-post-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
  
  .blog-post-content p {
    margin-bottom: a1.5rem;
  }
  
  .blog-post-content ul, 
  .blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .blog-post-content li {
    margin-bottom: 0.5rem;
  }
  
  /* Author Bio */
  .author-bio {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #f7f7f5;
    border-radius: 8px;
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  
  .author-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .author-info h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  
  .author-info p {
    margin-bottom: 0;
  }
  
  /* Footer */
  footer {
    background-color: #e8e6da;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #333;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f7f7f5;
    border-radius: 50%;
    color: #556b2f;
    transition: background-color 0.2s ease;
  }
  
  .social-links a:hover {
    background-color: #d0cebf;
  }
  
  .copyright {
    margin-top: 1rem;
  }
  
  /* Code blocks */
  pre, code {
    background-color: #f0f0f0;
    padding: 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #2e4600;
    overflow-x: auto;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      display: none;
      position: absolute;
      top: 60px;
      right: 20px;
      background-color: #e8e6da;
      padding: 1rem;
      border-radius: 6px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      z-index: 100;
    }
  
    .mobile-menu-btn {
      display: block;
    }
  
    .about-content {
      flex-direction: column;
      text-align: center;
    }
  
    .blog-grid {
      grid-template-columns: 1fr;
    }
  
    .author-bio {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .blog-post-header h1 {
      font-size: 1.8rem;
    }
    
    .blog-post-content h2 {
      font-size: 1.5rem;
    }
    
    .blog-post-content h3 {
      font-size: 1.25rem;
    }
  }