.section-title {
    background: linear-gradient(to right, #3b5998, #5a76aa);
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin: 40px 0 16px;
    position: relative;
    width: 100%; /* ✅ ensure full width */
    box-sizing: border-box; /* ✅ include padding in width */
  }
  
  .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60%;
    background: white;
    border-radius: 2px;
  }
  
  .section-content {
    background-color: #f9fafe;
    border: 1px solid #e1e6f0;
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    line-height: 1.7;
    color: #333;
  }
  
  