  /* CONTACT FORM IN SIDEBAR */
    .sideblock-form h4 {
      margin-bottom: 0.5rem;
    }
    .sideblock-form p {
      font-size: 0.85rem;
      color: #6b7280;
      margin: 0 0 0.75rem;
    }
    .sideblock-form form {
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }
    .sideblock-form input,
    .sideblock-form textarea {
      width: 100%;
      padding: 0.55rem 0.75rem;
      border-radius: 10px;
      border: 1px solid var(--line);
      font-family: inherit;
      font-size: 0.9rem;
      outline: none;
    }
    .sideblock-form textarea {
      min-height: 70px;
      resize: vertical;
    }
    .sideblock-form input:focus,
    .sideblock-form textarea:focus {
      border-color: var(--brand);
      box-shadow: 0 0 0 1px rgba(31,170,106,0.12);
    }
    .sideblock-form button {
      margin-top: 0.25rem;
      border: none;
      border-radius: 999px;
      padding: 0.6rem 0.75rem;
      font-size: 0.9rem;
      font-weight: 600;
      background: #003a70;
      color: #fff;
      cursor: pointer;
      transition: background 0.15s ease, transform 0.1s ease;
    }
    /*.sideblock-form button:hover {*/
    /*  background: #159457;*/
    /*  transform: translateY(-1px);*/
    /*}*/
    
    
            /* PROFESSIONAL SIDEBAR CARD */
        .professional-card {
          padding: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 17px;
    margin: 5px;

        }
        
        .professional-card h4 {
          font-size: 16px;
          font-weight: 600;
          color: #0f172a;
          margin-bottom: 6px;
          text-transform: none;
          letter-spacing: normal;
        }
        
        .professional-card p {
          font-size: 13.5px;
          color: #6b7280;
          margin-bottom: 14px;
          line-height: 1.5;
        }
        
        /* Inputs */
        .professional-card input,
        .professional-card textarea {
          padding: 10px 12px;
          border-radius: 8px;
          border: 1px solid #d1d5db;
          font-size: 14px;
          background: #f9fafb;
        }
        
        .professional-card input:focus,
        .professional-card textarea:focus {
          border-color: #1c74ff;
          background: #ffffff;
          box-shadow: 0 0 0 2px rgba(28,116,255,0.08);
        }
        
        /* Button */
        .professional-card button {
          margin-top: 6px;
          background: #1f2937;
          color: #ffffff;
          border-radius: 999px;
          padding: 10px;
          font-size: 14px;
          font-weight: 600;
          border: none;
          cursor: pointer;
          transition: transform 0.15s ease, box-shadow 0.15s ease;
        }
        
        .professional-card button:hover {
          transform: translateY(-1px);
          box-shadow: 0 6px 18px rgba(28,116,255,0.25);
        }
        
        /* Trust indicators */
        .contact-assurance {
          display: flex;
          flex-direction: column;
          gap: 4px;
          margin-top: 12px;
          font-size: 12.5px;
          color: #1f2937;
        }

    
    

    /* RELATED POSTS */
    .sideblock-related h4 {
      margin-bottom: 0.75rem;
    }
    .related-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .related-item {
      display: flex;
      gap: 0.6rem;
      align-items: flex-start;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(148,163,184,0.25);
    }
    .related-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .related-thumb {
      width: 60px;
      height: 60px;
      flex-shrink: 0;
      border-radius: 8px;
      overflow: hidden;
      background: #e5e7eb;
    }
    .related-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .related-content-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: #111827;
      margin-bottom: 0.2rem;
    }
    .related-content-title a {
      text-decoration: none;
      color: inherit;
    }
    .related-content-title a:hover {
      color: var(--brand);
    }
    .related-date {
      font-size: 0.78rem;
      color: #9ca3af;
    }

    /* UTILITIES */
    .visually-hidden {
      position: absolute !important;
      height: 1px;
      width: 1px;
      overflow: hidden;
      clip: rect(1px, 1px, 1px, 1px);
      white-space: nowrap;
    }
    
    /*related blog-css*/
    
    /* ==============================
           OTHER BLOGS SECTION
        ============================== */
        
        .other-blogs {
          margin-top: 3rem;
        }
        
        .other-blogs-title {
          font-size: 24px;
          font-weight: 600;
          margin-bottom: 1.25rem;
          color: #0f172a;
        }
        
        .other-blogs-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 1.25rem;
        }
        
        .other-blog-card {
          background: #ffffff;
          border: 1px solid #e5e7eb;
          border-radius: 14px;
          overflow: hidden;
          transition: box-shadow .2s ease, transform .2s ease;
        }
        
        .other-blog-card:hover {
          transform: translateY(-3px);
          box-shadow: 0 10px 30px rgba(15,23,42,0.12);
        }
        
        .other-blog-image img {
          width: 100%;
          height: 180px;
          object-fit: cover;
          display: block;
        }
        
        .other-blog-content {
          padding: 14px 16px 16px;
        }
        
        .other-blog-content h3 {
          font-size: 16px;
          font-weight: 600;
          line-height: 1.4;
          margin-bottom: 6px;
          color: #003a70;
        }
        
        .other-blog-meta {
          font-size: 13px;
          color: #6b7280;
          margin-bottom: 4px;
        }
        
        .other-blog-date {
          font-size: 12.5px;
          color: #9ca3af;
        }
        
        /* Responsive */
        @media (max-width: 900px) {
          .other-blogs-grid {
            grid-template-columns: 1fr 1fr;
          }
        }
        
        @media (max-width: 520px) {
          .other-blogs-grid {
            grid-template-columns: 1fr;
          }
        }
