 .insights-hero {
       background: linear-gradient(135deg, rgba(0, 170, 193, 0.9), rgba(46, 46, 56, 0.8)), url('../images/about-us-banner.jpg') no-repeat center center / cover;
      height: 60vh;
      display: flex;
      align-items: center;
      color: white;
      text-align: center;
    }

    .featured-post {
      padding: 80px 0;
      background: white;
    }

    .featured-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .featured-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .featured-image img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .featured-image:hover img {
      transform: scale(1.05);
    }

    .featured-text h2 {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .featured-meta {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .featured-meta span {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .featured-text p {
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 25px;
      font-size: 1.1rem;
    }

    .blog-grid-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }

    .blog-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

    .blog-image {
      height: 250px;
      overflow: hidden;
      position: relative;
    }

    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .blog-card:hover .blog-image img {
      transform: scale(1.1);
    }

    .blog-category {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--secondary-color);
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .blog-content {
      padding: 30px;
    }

    .blog-title {
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--primary-color);
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .blog-excerpt {
      color: var(--text-light);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .blog-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
      border-top: 1px solid #f0f0f0;
    }

    .blog-author {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .blog-author img {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      object-fit: cover;
    }

    .blog-date {
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .read-more-btn {
      color: var(--secondary-color);
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: all 0.3s ease;
    }

    .read-more-btn:hover {
      gap: 10px;
    }

    .categories-section {
      padding: 80px 0;
      background: white;
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .category-card {
      background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
      color: white;
      padding: 40px 30px;
      border-radius: 20px;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 119, 182, 0.3);
    }

    .category-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      opacity: 0.9;
    }

    .category-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .category-count {
      opacity: 0.8;
      font-size: 0.9rem;
    }

    .newsletter-section {
      padding: 80px 0;
      background: var(--primary-color);
      color: white;
      text-align: center;
    }

    .newsletter-form {
      max-width: 500px;
      margin: 40px auto 0;
      display: flex;
      gap: 15px;
    }

    .newsletter-input {
      flex: 1;
      padding: 15px 20px;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      outline: none;
    }

    .newsletter-btn {
      background: var(--accent-color);
      color: white;
      border: none;
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-btn:hover {
      background: #00a8cc;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .insights-hero {
        height: 50vh;
      }
      
      .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .featured-text h2 {
        font-size: 2rem;
      }
      
      .blog-grid {
        grid-template-columns: 1fr;
      }
      
      .newsletter-form {
        flex-direction: column;
      }
      
      .newsletter-input,
      .newsletter-btn {
        width: 100%;
      }
    }