  /* Modern styling for enhanced sections */
  .content h2 { margin-top: 30px; }
  .content p { margin-bottom: 15px; }
  .content ul { padding-left: 20px; }

  /* ========== MODERN SHARE SECTION ========== */
  .share-section {
    margin-top: 60px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    text-align: center;
  }

  .share-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }

  .share-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
  }

  .share-buttons-modern {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
  }

  .share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -8px rgba(0,0,0,0.2);
  }

  .share-btn i, .share-btn svg {
    width: 20px;
    height: 20px;
  }

  .share-facebook {
    background: #1877f2;
    color: white;
    box-shadow: 0 4px 12px rgba(24,119,242,0.3);
  }
  .share-facebook:hover { background: #166fe0; }

  .share-twitter {
    background: #000000;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .share-twitter:hover { background: #1a1a1a; }

  .share-linkedin {
    background: #0a66c2;
    color: white;
    box-shadow: 0 4px 12px rgba(10,102,194,0.3);
  }
  .share-linkedin:hover { background: #094d94; }

  .share-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
  }
  .share-whatsapp:hover { background: #1da15b; }

  /* ========== MODERN CTA SECTION ========== */
  .cta-wrapper {
    margin-top: 60px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1225 100%);
    overflow: hidden;
    box-shadow: 0 25px 45px -12px rgba(0,0,0,0.4);
  }

  .cta-inner {
    padding: 50px 40px;
    text-align: center;
    background: radial-gradient(circle at 10% 20%, rgba(37,211,102,0.08) 0%, transparent 70%);
  }

  .cta-badge {
    display: inline-block;
    background: rgba(37,211,102,0.15);
    color: #25D366;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }

  .cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #b0c4ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }

  .cta-description {
    color: #b0b8d9;
    max-width: 550px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
  }

  /* ========== MODERN COMMENTS SECTION ========== */
  .comments-section {
    margin-top: 70px;
    padding-top: 20px;
  }

  .comments-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 2px solid #eef2f7;
    padding-bottom: 15px;
  }

  .comments-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2a3a;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .comments-count {
    background: #eef2f7;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
  }

  .comment-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #edf2f7;
    transition: all 0.2s ease;
  }

  .comment-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }

  .comment-author {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
  }

  .comment-date {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-left: 10px;
  }

  .comment-text {
    margin-top: 10px;
    color: #334155;
    line-height: 1.5;
  }

  /* Comment form modern */
  .comment-form-wrapper {
    background: #f8fafc;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
  }

  .comment-form-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0f172a;
  }

  .comment-input, .comment-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-family: inherit;
    transition: all 0.2s;
    margin-bottom: 16px;
    background: white;
  }

  .comment-input:focus, .comment-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
  }

  .comment-submit {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }

  .comment-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37,99,235,0.3);
  }

  .empty-comments {
    text-align: center;
    padding: 50px 20px;
    background: #f8fafc;
    border-radius: 24px;
    color: #64748b;
  }

  @media (max-width: 640px) {
    .cta-inner { padding: 35px 20px; }
    .cta-title { font-size: 1.5rem; }
    .share-btn { padding: 8px 20px; font-size: 0.85rem; }
  }