body {
    font-family: 'Playfair Display', serif;
    font-size: 1.18em;
    color: #2C2C2C;
    background: #F5F0E6;
    margin: 0;
    padding: 0;
  }
  
  header {
    background: #F5F0E6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 0;
    width: 100%;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px 40px;
    background: #F5F0E6;
    width: 100%;
    box-sizing: border-box;
  }
  
  .profile {
    display: flex;
    align-items: center;
  }
  
  .profile-pic {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    margin-right: 18px;
    object-fit: cover;
    border: 2px solid #7C8B5B;
    background: #fff;
  }
  
  .site-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 700;
    color: #2C2C2C;
    line-height: 1.1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
  }
  
  .nav-links a {
    margin-left: 32px;
    font-size: 1.2em;
    color: #2C2C2C;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
  }
  
  .nav-links a:hover {
    color: #7C8B5B;
  }
  
  .search-icon {
    margin-left: 32px;
    margin-right: 32px;
    font-size: 1.5em;
    color: #2C2C2C;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
  }
  
  .social-icons {
    display: flex;
    align-items: center;
    background: none;
    margin: 0;
    padding: 0;
    height: 100%;
  }
  
  .social-icons a {
    margin-left: 18px;
    font-size: 2em;
    color: #7C8B5B;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .social-icons a:hover {
    color: #2C2C2C;
  }

  .top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px 0 40px;
  }

  .center-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
  }

  .center-profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid #7C8B5B;
    background: #fff;
    margin-bottom: 24px;
  }

  .center-site-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 700;
    color: #2C2C2C;
    text-align: center;
    margin: 0;
  }

  .main-photo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    margin-bottom: 48px;
    padding: 0 5vw;
  }

  .main-photo {
    width: 90vw;
    max-width: 1100px;
    height: 500px;
    border-radius: 24px;
    border: 2px solid #ece7db;
    box-shadow: 0 8px 32px rgba(44,44,44,0.12);
    object-fit: cover;
    background: #fff;
    display: block;
  }

  .about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #2C2C2C;
    margin-top: 24px;
    margin-bottom: 18px;
    text-align: center;
    width: 100%;
    padding-right: 3vw;
    padding-left: 0;
  }

  .about-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    max-width: 1250px;
    margin: 0 auto 48px auto;
    padding: 0 3vw;
  }

  .about-section {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .about-section:first-child {
    padding-top: 200px !important;
  }

  .about-section:last-child {
    flex: 2 1 0;
  }

  .about-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 0.3em;
    text-align: center;
  }

  .about-section p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: #2C2C2C;
    line-height: 1.5;
    margin: 0 0 0.5em 0;
    text-align: justify;
  }

  /* Make the first paragraph left-aligned */
  .about-section p:first-of-type {
    text-align: left;
  }

  @media (max-width: 900px) {
    /* Navigation bar related rules removed for universal desktop style */
    .about-flex {
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }
    .about-section {
      align-items: flex-start;
    }
    .about-section p {
      font-size: 1.1em;
    }
    .contact-flex {
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }
    .contact-photo {
      width: 180px;
      height: 180px;
    }
    .contact-form {
      max-width: 100%;
    }
  }

  .contact-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
    max-width: 1100px;
    margin: 0 auto 48px auto;
    padding: 0 3vw;
  }

  .contact-photo-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 0;
    margin-top: 32px;
  }

  .contact-photo {
    width: 380px;
    height: 380px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(44,44,44,0.08);
  }

  .contact-form {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items:flex-start ;
    gap: 35px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2em;
    max-width: 600px;
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1em;
    padding: 12px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-family: inherit;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
  }

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

  .contact-form label {
    margin-bottom: -0.5em;
    display: block;
  }

  .contact-form-wrapper {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 18px;
    text-align: center;
  }

  .about-section .main-photo,
  .about-section .main-photo-container .main-photo {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(44,44,44,0.08);
    background: #fff;
    display: block;
  }
  .search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20, 20, 20, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
  }
  
  .search-overlay.active {
    display: flex;
  }
  
  .search-box {
    width: 80vw;
    max-width: 600px;
    text-align: center;
    position: relative;
  }
  
  .search-box input[type="text"] {
    width: 100%;
    font-size: 2.2em;
    padding: 20px 20px 10px 20px;
    border: none;
    border-bottom: 4px solid #aaa;
    background: transparent;
    color: #fff;
    outline: none;
    font-weight: bold;
    text-align: left;
  }
  
  .search-box input[type="text"]::placeholder {
    color: #ccc;
    opacity: 1;
    font-weight: bold;
  }
  
  .close-search {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 2.5em;
    color: #ccc;
    cursor: pointer;
    padding: 0 10px;
    line-height: 1;
    transition: color 0.2s;
  }
  
  .close-search:hover {
    color: #fff;
  }

  /* Blog Styles */
  .blog-index {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .blog-index h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .posts-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-preview {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }

  .post-preview:hover {
    transform: translateY(-2px);
  }

  .post-preview h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .post-preview h2 a {
    color: #333;
    text-decoration: none;
  }

  .post-preview h2 a:hover {
    color: #666;
  }

  .post-meta {
    font-size: 1.2rem;
    color: #aaa !important;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .post-excerpt {
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .read-more {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid #333;
    transition: color 0.2s ease;
  }

  .read-more:hover {
    color: #666;
    border-bottom-color: #666;
  }

  /* Blog Post Styles */
  .blog-post {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: normal;
  }

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

  .post-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .post-content {
    line-height: 1.8;
    color: #333;
    font-weight: normal !important;
    text-align: justify;
  }

  .post-content p {
    margin-bottom: 1.5rem;
    font-weight: normal !important;
    text-align: justify;
  }

  .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
  }

  .post-content h2, 
  .post-content h3 {
    font-family: 'Playfair Display', serif;
    margin: 2rem 0 1rem;
  }

  .post-content h2 {
    font-size: 2rem;
  }

  .post-content h3 {
    font-size: 1.5rem;
  }

  .post-content blockquote {
    border-left: 4px solid #333;
    padding-left: 1rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
  }

  .post-content code {
    background: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
  }

  .post-content pre {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
  }

  .post-content pre code {
    background: none;
    padding: 0;
  }

  /* Active nav link */
  .nav-links a.active {
    color: #333;
    font-weight: 500;
  }

  .post-subtitle {
    font-size: 1.3em;
    font-weight: 400;
    color: #444;
    margin-top: 0.5em;
    margin-bottom: 1.5em;
    font-style: italic;
    text-align: center;
  }

  .post-meta-bottom {
    margin-top: 2em;
    padding-top: 1em;
    border-top: 1px solid #eee;
  }

  .category-link {
    color: #2a7ae2;
    text-decoration: none;
    font-weight: bold;
    margin-right: 0.5em;
  }

  .category-link:hover {
    text-decoration: underline;
    color: #174a7c;
  }

  .tag-link {
    color: #e27a2a;
    text-decoration: none;
    font-style: italic;
    margin-right: 0.5em;
  }

  .tag-link:hover {
    text-decoration: underline;
    color: #7c4a17;
  }

  .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-items: stretch;
    margin: 2em auto;
    max-width: 1200px;
    width: 95vw;
    padding-left: 0;
    padding-right: 0;
  }

  .post-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: #224229;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    color: #fff;
    height: 320px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
  }

  .post-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30,30,40,0.45);
    z-index: 0;
  }

  .post-card-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-indent: -9999px;
    background: transparent;
    cursor: pointer;
    border-radius: 20px;
  }

  .post-card .post-content {
    position: relative;
    z-index: 3;
  }

  .post-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .post-content p {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
  }

  .post-card h2 {
    margin: 0 0 0.5em 0;
    font-size: 1.3em;
  }

  .post-card a {
    color: #fff;
    text-decoration: none;
  }

  .post-card a:hover {
    text-decoration: underline;
  }

  @media (max-width: 1000px) {
    .posts-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 600px) {
    /* Remove post-header h1 font-size override */
    /* Remove any post content text-align overrides */
    /* Keep only navigation bar/mobile menu improvements below */
    .header-content {
      flex-wrap: wrap;
      align-items: center;
      min-width: 0;
    }
    .profile-pic {
      width: 36px;
      height: 36px;
      margin-right: 8px;
    }
    .site-title {
      font-size: 1em;
      max-width: 32vw;
    }
    .search-icon {
      font-size: 1.2em;
      margin-left: 12px;
      margin-right: 12px;
    }
    .hamburger {
      cursor: pointer;
      width: 32px;
      height: 32px;
      display: flex !important;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-left: 16px;
      z-index: 1001;
    }
    .hamburger span {
      width: 20px !important;
      height: 3px !important;
      margin: 3px 0 !important;
      background: #222;
      display: block;
      border-radius: 2px;
      transition: all 0.3s;
    }
    .social-icons {
      gap: 8px;
    }
    .social-icons a {
      font-size: 1.2em;
      margin-left: 0;
      margin-right: 0;
    }
    .nav-links {
      display: none !important;
    }
    /* Prevent horizontal scroll */
    body, html {
      overflow-x: hidden;
    }
    .posts-grid {
      grid-template-columns: 1fr;
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      box-sizing: border-box;
    }
    .post-card {
      width: 90vw;
      max-width: 90vw;
      height: 320px;
      min-height: 320px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }
    .header-content {
      padding: 10px 12px;
      background: #F5F0E6;
      width: 100%;
      box-sizing: border-box;
    }
    .profile {
      min-width: 0;
    }
    .site-title {
      font-size: 1.1em;
      line-height: 1.1;
      margin: 0 4px 0 0;
      font-weight: 700;
      white-space: nowrap;
      max-width: 40vw;
    }
    .mobile-menu-header {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      padding: 3em 1.5em 0.5em 1.5em;
    }
    .mobile-menu-title {
      font-size: 2em;
      font-weight: bold;
      letter-spacing: 0.1em;
      text-align: center;
      position: absolute;
      left: 0; right: 0;
      margin: auto;
      width: max-content;
      margin-bottom: 0.8em;
    }
    .mobile-menu-close {
      font-size: 2em;
      cursor: pointer;
      line-height: 1;
      color: #222;
      font-weight: bold;
      padding: 0 0.2em;
      transition: color 0.2s;
      position: absolute;
      right: 1.5em;
      top: -1em;
    }
    .mobile-menu-close:hover {
      color: #7C8B5B;
    }
    .mobile-menu-separator {
      border: none !important;
      border-top: 3px solid #000 !important;
      margin: 0.6em 1.5em 1.2em 1.5em !important;
      width: 80% !important;
      display: block !important;
      background: transparent !important;
    }
    .mobile-menu a {
      font-size: 1.3em;
      margin: 0.4em 0;
      color: #222;
      text-decoration: none;
      display: block;
      text-align: center;
      padding-left: 0;
      transition: color 0.2s;
    }
    .mobile-menu a:hover,
    .mobile-menu a:active,
    .mobile-menu a:focus {
      color: #7C8B5B !important;
      background: #ece7db !important;
    }
    .mobile-menu.open {
      display: flex;
    }
    .main-photo {
      width: 100vw !important;
      max-width: 100vw !important;
      height: 180px !important;
      object-fit: cover;
      border-radius: 16px !important;
      display: block;
      margin: 0 auto;
    }
    .about-section .main-photo,
    .about-section .main-photo-container .main-photo {
      width: 280px !important;
      height: 280px !important;
      border-radius: 50% !important;
      object-fit: cover;
      display: block;
      margin: 0 auto;
      box-shadow: 0 4px 24px rgba(44,44,44,0.08);
      background: #fff;
    }
    .about-section:first-child {
      padding-top: 40px !important;
      margin-top: 0 !important;
    }
    .nav-links {
      display: none !important;
    }
    .hamburger {
      display: flex !important;
    }
    .contact-flex {
      flex-direction: column !important;
      align-items: center !important;
      gap: 32px !important;
    }
    .contact-photo-container {
      justify-content: center !important;
      margin-left: 0 !important;
      margin-top: 0 !important;
      width: 100%;
      display: flex;
    }
    .contact-form-wrapper {
      width: 100% !important;
      max-width: 95vw !important;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .contact-form {
      width: 100% !important;
      max-width: 95vw !important;
      align-items: center;
    }
    .contact-photo {
      width: 140px !important;
      height: 140px !important;
      margin-top: 32px !important;
      border-radius: 20px !important;
    }
    .blog-post, .post-content, .post-content p {
      font-size: 1em;
    }
    .post-content p {
      overflow: visible !important;
      text-overflow: unset !important;
      display: block !important;
      -webkit-line-clamp: unset !important;
      -webkit-box-orient: unset !important;
      white-space: normal !important;
    }
    .post-header h1 {
      font-size: 1.4em;
    }
    .post-subtitle {
      font-size: 0.7em;
    }
    .post-content, .post-content p {
      text-align: left !important;
    }
    .post-meta {
      display: flex;
      flex-direction: column;
      gap: 0em;
      align-items: center;
    }
    .post-meta time,
    .post-meta .post-author {
      display: block;
      white-space: normal;
      font-size: 0.9em;
    }
  }

  /* Hamburger styles */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    margin-left: 16px;
    z-index: 1001;
  }
  .hamburger span {
    height: 4px;
    width: 28px;
    background: #222;
    margin: 4px 0;
    border-radius: 2px;
    display: block;
    transition: all 0.3s;
  }

  /* Mobile menu styles */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #f5f0e6;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
  }
  .mobile-menu a {
    font-size: 1.3em;
    margin: 0.4em 0;
    color: #222;
    text-decoration: none;
    display: block;
    text-align: center;
    padding-left: 0;
    transition: color 0.2s;
  }
  .mobile-social-icons {
    margin-top: 2em;
  }
  .mobile-social-icons a {
    font-size: 2em;
    margin: 0 1em;
    color: #7C8B5B;
  }

  .index-main-photo {
    width: 95vw;
    max-width: 1200px;
    height: 500px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 8px 32px rgba(44,44,44,0.12);
    background: #e6f0fa;
    display: block;
    margin: 0 auto;
  }

  @media (max-width: 600px) {
    .index-main-photo {
      height: 320px !important;
      width: 90vw !important;
      object-fit: cover;
      border-radius: 16px !important;
    }
  }

  @media (max-width: 600px) {
    .post-content, .post-content p {
      text-align: left !important;
    }
  }

  .share-article-section {
    text-align: center;
    margin: 12px 0 0 0;
  }
  .share-article-section h3 {
    letter-spacing: 2px;
    font-weight: bold;
    color: #444343;
    margin-bottom: 20px;
  }
  .share-buttons {
    display: flex;
    justify-content: center;
    gap: 32px;
  }
  .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #18161d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .share-btn:hover {
    background: #e0e0e0;
    color: #0077ff;
  }

  .post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 48px 0 0 0;
  }
  .nav-card {
    flex: 1 1 0;
    background: #18161d;
    color: #fff;
    border-radius: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 40px 32px 32px 32px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 220px;
    position: relative;
    transition: transform 0.15s, box-shadow 0.15s;
    overflow: hidden;
  }
  .nav-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,0.22);
  }
  .nav-label {
    font-size: 0.95em;
    color: #d1d1d1;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .nav-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0;
  }
  .nav-card.prev {
    align-items: flex-start;
    text-align: left;
  }
  .nav-card.next {
    align-items: flex-end;
    text-align: right;
  }
  @media (max-width: 900px) {
    .post-navigation {
      flex-direction: column;
      gap: 24px;
    }
    .nav-card {
      min-height: 120px;
      padding: 24px 16px;
    }
  }

  a > .post-card {
    display: block;
  }
  a.post-card-link {
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
  }
  a.post-card-link:hover {
    text-decoration: none;
  }
  .post-card .post-content,
  .post-card .post-content h2,
  .post-card .post-content p {
    color: #fff;
    position: relative;
    z-index: 1;
  }

  .post-card:hover .post-content h2 {
    text-decoration: underline;
  }
