
/* ---------- Privacy / Blog styles (inspired by UpskillM) ---------- */

.blog-section {
    padding: 4rem 0;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #2a2a2a;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #f04c47;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .blog-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .blog-category {
    display: inline-block;
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .blog-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .blog-card .author {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #f04c47;
    text-decoration: none;
  }
  
  .read-more:hover {
    text-decoration: underline;
  }
  
  .privacy-card {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  }
  
  .privacy-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .privacy-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
  }
  
  .privacy-logo {
    height: 40px;
    width: auto;
  }
  
  .privacy-header-text .section-title {
    text-align: left;
    margin-bottom: 0.5rem;
  }
  
  .privacy-header-text .section-title:after {
    left: 0;
    transform: translateX(0);
  }
  
  .privacy-updated {
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  .privacy-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #374151;
  }
  
  .privacy-body p {
    margin-bottom: 1rem;
  }
  
  .privacy-body ul {
    margin: 0 0 1rem 1.25rem;
  }
  
  .privacy-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 0.75rem 0;
    z-index: 40;
  }
  
  .privacy-nav .container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .privacy-main {
    padding-top: 80px;
  }
  
  @media (max-width: 640px) {
    .privacy-card {
      padding: 1.5rem 1.25rem;
    }
  
    .privacy-header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .privacy-logo-link {
      align-self: center;
    }
  
    .privacy-header-text {
      width: 100%;
    }
  }
  